Responsive image support?

Permalink Browser Info Environment
I would like my custom block to switch image thumbnails automatically between small, medium and large file manager thumbnails depending on screen size. Now it shows the image in just the same size as uploaded to file manager, although it squeezes them on mobile screens.

How can I make images added to my custom block responsive, like images in core image block and Redactor?

My site uses the Elemental theme.

Type: Discussion
Status: Resolved
AnttiP
View Replies:
ramonleenders replied on at Permalink Reply
ramonleenders
Hi there,

Not sure if I know what's going on with your images with the default Image block and Redactor. Perhaps you can take a look at the HTML that is used for these images? I don't see any difference graphic wise. Can you make screenshots of a page how you want it to be and a page how it is with your custom block? Also, make screenshots of both HTML (hit right-mouse button on the image and select "Inspect element").

Kind regards,

Ramon
AnttiP replied on at Permalink Reply
AnttiP
Here's what I mean:

If I add three appearances of a single 2000px wide image from File Manager to a page:

• 1st time using the Image Block
• 2nd time using the Content Block and adding the image in Redactor
• 3rd time using my own Block Designer block that contains an "image" form type

What happens, is that the first two images appear in 1140px size on @screen-lg size, then switch to 940px size when I resize the screen down to @screen-md, and to 740px when I resize to @screen-sm. The third one stays at 2000px all the time like the original image in file manager.

The Elemental theme, Image Block and Redactor support responsive images as descibed here:https://www.concrete5.org/documentation/developers/5.7/designing-for...

How can I get the image in my Block Designer -made block to swap images at Bootstrap breakpoints also?
ramonleenders replied on at Permalink Reply
ramonleenders
OK, now I get what you mean. This is not (yet) available within Block Designer. You could change the view.php file yourself, or wait for an update to come (it will be on my todo-list now).

If you want to make the edit yourself and you're not familiar with what you have to change in the view.php file, I could help you where needed!

Kind regards,

Ramon
AnttiP replied on at Permalink Reply
AnttiP
Thanks for your reply!

Here's the part of the view.php that contains the image:

<?php  if ($tuotekuva){ ?>
             <div class="ccm-block-testimonial-image">
               <a href="<?php  echo $tuotekuva->getURL(); ?>" data-concrete5-link-lightbox="image">
                      <img src="<?php  echo $tuotekuva->getURL(); ?>" alt="<?php  echo $tuotekuva->getTitle(); ?>" class="img-responsive">
                  </a>
             </div><?php  } ?>


I already modified the original code to make the images open in lightbox, and added the 'registerViewAssets' public funcfion to controller.php to make the lightbox work.

I had a look at the core image block view.php where it has all the code I think I need, but I couldn't figure out how to combine it with the above code...

Ideally it would open the original or @screen-lg size in lightbox and show the correct size for the current breakpoint elsewhere.
ramonleenders replied on at Permalink Reply
ramonleenders
Hi there,

Try this code (untested, but should work):

<?php if ($tuotekuva) {
    $tuotekuva_image = Core::make('html/image', array($tuotekuva));
    $tuotekuva_tag = $tuotekuva_image->getTag();
    $tuotekuva_tag->addClass('ccm-image-block img-responsive');
    $tuotekuva_tag->alt($tuotekuva->getTitle());
    ?>
    <div class="ccm-block-testimonial-image">
        <a href="<?php echo $tuotekuva->getURL(); ?>" data-concrete5-link-lightbox="image">
            <img src="<?php echo $tuotekuva_tag; ?>" alt="<?php echo $tuotekuva->getTitle(); ?>" class="img-responsive">
        </a>
    </div>
<?php } ?>


If you want to change the picture opening in your lightbox, change the "$tuotekuva->getURL()" into "$tuotekuva_tag". The first one is the full URL to the image, so it isn't using breakpoints!

Let me know what this did :)
AnttiP replied on at Permalink Reply 1 Attachment
AnttiP
Thousand thanks!

It almost works, only some glitches... see the screenshot.

The "alt" tag and "img-responsive"class are visible and something else is missing from above the product image...?
ramonleenders replied on at Permalink Reply
ramonleenders
My bad..

Try this:

<?php if ($tuotekuva) {
    $tuotekuva_image = Core::make('html/image', array($tuotekuva));
    $tuotekuva_tag = $tuotekuva_image->getTag();
    $tuotekuva_tag->addClass('ccm-image-block img-responsive');
    $tuotekuva_tag->alt($tuotekuva->getTitle());
    ?>
    <div class="ccm-block-testimonial-image">
        <a href="<?php echo $tuotekuva->getURL(); ?>" data-concrete5-link-lightbox="image">
            <?php echo $tuotekuva_tag; ?>
        </a>
    </div>
<?php } ?>
AnttiP replied on at Permalink Reply 1 Attachment
AnttiP
Now it works, great! I would never have figured this out myself.

Somehow everything looks and works just fine in Chrome and Firefox, but in Safari OS X and Safari iOS product images get stretched horizontally. I don't know if this is caused by my css or what, but in Safari strange pixel values appear at the end of the image tag... You can see this in the attached screenshot.
ramonleenders replied on at Permalink Reply
ramonleenders
No idea to be honest, perhaps you can post that in the forums? Could be a Concrete5 or browser issue... both are Safari I assume? Haven't worked with this before, so I can't really tell. The community may have answers for this!

Kind regards,

Ramon
ramonleenders replied on at Permalink Reply
ramonleenders
"Responsive image" option is now available for the "Image" field type (version 1.3.6)). Check the checkbox within the field type, and it will use the html/image helper of concrete5 as we did above.

Kind regards,

Ramon

concrete5 Environment Information

# concrete5 Version
Core Version - 5.7.5.2
Version Installed - 5.7.5.2
Database Version - 20150731000000

# concrete5 Packages
Block Designer (1.3.2), Core Translation Updater (0.1.1), Easy Image Gallery (1.3), Page Redirect (2.0), Page Selector Attribute (2.0).

# concrete5 Overrides
blocks/tuote/edit.php, blocks/tuote/icon.png, blocks/tuote/add.php, blocks/tuote/config.json, blocks/tuote/view.php, blocks/tuote/form.php, blocks/tuote/controller.php, blocks/tuote/composer.php, blocks/tuote/db.xml, blocks/tuote, blocks/voitelu/edit.php, blocks/voitelu/icon.png, blocks/voitelu/add.php, blocks/voitelu/config.json, blocks/voitelu/view.php, blocks/voitelu/form.php, blocks/voitelu/controller.php, blocks/voitelu/composer.php, blocks/voitelu/db.xml, blocks/voitelu, blocks/rex_voitelu/edit.php, blocks/rex_voitelu/icon.png, blocks/rex_voitelu/add.php, blocks/rex_voitelu/config.json, blocks/rex_voitelu/view.php, blocks/rex_voitelu/form.php, blocks/rex_voitelu/controller.php, blocks/rex_voitelu/composer.php, blocks/rex_voitelu/db.xml, blocks/rex_voitelu, blocks/rex_tuote/edit.php, blocks/rex_tuote/icon.png, blocks/rex_tuote/add.php, blocks/rex_tuote/config.json, blocks/rex_tuote/view.php, blocks/rex_tuote/view_responsive.php, blocks/rex_tuote/form.php, blocks/rex_tuote/controller.php, blocks/rex_tuote/composer.php, blocks/rex_tuote/db.xml, blocks/rex_tuote, languages/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/site/fi_FI.po, languages/site/fi_FI.mo, languages/site, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/it_IT/LC_MESSAGES/messages.mo, languages/it_IT/LC_MESSAGES, languages/it_IT, languages/ja_JP/LC_MESSAGES/messages.mo, languages/ja_JP/LC_MESSAGES, languages/ja_JP, languages/nb_NO/LC_MESSAGES/messages.mo, languages/nb_NO/LC_MESSAGES, languages/nb_NO, languages/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/de_DE/LC_MESSAGES/messages.mo, languages/de_DE/LC_MESSAGES, languages/de_DE, languages/sl_SI/LC_MESSAGES/messages.mo, languages/sl_SI/LC_MESSAGES, languages/sl_SI, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, themes/redox/page_forbidden.php, themes/redox/right_sidebar.php, themes/redox/images/close.png, themes/redox/images/background-slider-royal.png, themes/redox/images/next.png, themes/redox/images/loading.gif, themes/redox/images/prev.png, themes/redox/images/background-slider-night-road.png, themes/redox/images/background-slider-default.png, themes/redox/images/harmaanoise_bg.png, themes/redox/images/headerlogo_bg.png, themes/redox/images/background-slider-blue-sky.png, themes/redox/images/background.png, themes/redox/images, themes/redox/page_theme.php, themes/redox/view.php, themes/redox/left_sidebar.php, themes/redox/css/bootstrap-lightbox.css, themes/redox/css/main.less, themes/redox/css/bootstrap-modified.css, themes/redox/css/build/mixins.less, themes/redox/css/build/header lessinä.less, themes/redox/css/build/breadcrumb.less, themes/redox/css/build/reset.less, themes/redox/css/build/search.less, themes/redox/css/build/fonts/rexlinepro-regular-webfont.eot, themes/redox/css/build/fonts/rexlinepro-regular-webfont.svg, themes/redox/css/build/fonts/rexlinepro-black-webfont.woff, themes/redox/css/build/fonts/rexlinepro-thin-webfont.svg, themes/redox/css/build/fonts/rexlinepro-black-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-thin-webfont.woff, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-regular-webfont.woff, themes/redox/css/build/fonts/rexlinepro-thin-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-light-webfont.eot, themes/redox/css/build/fonts/royal.less, themes/redox/css/build/fonts/night-road.less, themes/redox/css/build/fonts/defaults.less, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.eot, themes/redox/css/build/fonts/rexlinepro-thin-webfont.eot, themes/redox/css/build/fonts/rexlinepro-light-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-light-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-thin-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-black-webfont.svg, themes/redox/css/build/fonts/redox.less, themes/redox/css/build/fonts/blue-sky.less, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.svg, themes/redox/css/build/fonts/rexlinepro-light-webfont.woff, themes/redox/css/build/fonts/rexlinepro-black-webfont.eot, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-regular-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-regular-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-black-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.woff, themes/redox/css/build/fonts, themes/redox/css/build/custom-design-classes/tuote-bio.less, themes/redox/css/build/custom-design-classes/block-sidebar-padded.less, themes/redox/css/build/custom-design-classes/area-content-accent.less, themes/redox/css/build/custom-design-classes/block-sidebar-wrapped.less, themes/redox/css/build/custom-design-classes/testimonial-bio.less, themes/redox/css/build/custom-design-classes/recent-blog-entry.less, themes/redox/css/build/custom-design-classes/blog-entry-list.less, themes/redox/css/build/custom-design-classes, themes/redox/css/build/footer.less, themes/redox/css/build/body.less, themes/redox/css/build/content.less, themes/redox/css/build/miscellaneous-styles.less, themes/redox/css/build/pagination.less, themes/redox/css/build/mobile/navigation.less, themes/redox/css/build/mobile, themes/redox/css/build/header.less, themes/redox/css/build/bootstrap-3.2.0/mixins.less, themes/redox/css/build/bootstrap-3.2.0/list-group.less, themes/redox/css/build/bootstrap-3.2.0/progress-bars.less, themes/redox/css/build/bootstrap-3.2.0/type.less, themes/redox/css/build/bootstrap-3.2.0/wells.less, themes/redox/css/build/bootstrap-3.2.0/tooltip.less, themes/redox/css/build/bootstrap-3.2.0/print.less, themes/redox/css/build/bootstrap-3.2.0/mixins/list-group.less, themes/redox/css/build/bootstrap-3.2.0/mixins/nav-vertical-align.less, themes/redox/css/build/bootstrap-3.2.0/mixins/progress-bar.less, themes/redox/css/build/bootstrap-3.2.0/mixins/vendor-prefixes.less, themes/redox/css/build/bootstrap-3.2.0/mixins/nav-divider.less, themes/redox/css/build/bootstrap-3.2.0/mixins/alerts.less, themes/redox/css/build/bootstrap-3.2.0/mixins/text-overflow.less, themes/redox/css/build/bootstrap-3.2.0/mixins/hide-text.less, themes/redox/css/build/bootstrap-3.2.0/mixins/responsive-visibility.less, themes/redox/css/build/bootstrap-3.2.0/mixins/background-variant.less, themes/redox/css/build/bootstrap-3.2.0/mixins/panels.less, themes/redox/css/build/bootstrap-3.2.0/mixins/reset-filter.less, themes/redox/css/build/bootstrap-3.2.0/mixins/gradients.less, themes/redox/css/build/bootstrap-3.2.0/mixins/size.less, themes/redox/css/build/bootstrap-3.2.0/mixins/forms.less, themes/redox/css/build/bootstrap-3.2.0/mixins/pagination.less, themes/redox/css/build/bootstrap-3.2.0/mixins/grid-framework.less, themes/redox/css/build/bootstrap-3.2.0/mixins/center-block.less, themes/redox/css/build/bootstrap-3.2.0/mixins/clearfix.less, themes/redox/css/build/bootstrap-3.2.0/mixins/grid.less, themes/redox/css/build/bootstrap-3.2.0/mixins/border-radius.less, themes/redox/css/build/bootstrap-3.2.0/mixins/tab-focus.less, themes/redox/css/build/bootstrap-3.2.0/mixins/text-emphasis.less, themes/redox/css/build/bootstrap-3.2.0/mixins/table-row.less, themes/redox/css/build/bootstrap-3.2.0/mixins/image.less, themes/redox/css/build/bootstrap-3.2.0/mixins/buttons.less, themes/redox/css/build/bootstrap-3.2.0/mixins/labels.less, themes/redox/css/build/bootstrap-3.2.0/mixins/opacity.less, themes/redox/css/build/bootstrap-3.2.0/mixins/resize.less, themes/redox/css/build/bootstrap-3.2.0/mixins, themes/redox/css/build/bootstrap-3.2.0/thumbnails.less, themes/redox/css/build/bootstrap-3.2.0/carousel.less, themes/redox/css/build/bootstrap-3.2.0/alerts.less, themes/redox/css/build/bootstrap-3.2.0/jumbotron.less, themes/redox/css/build/bootstrap-3.2.0/media.less, themes/redox/css/build/bootstrap-3.2.0/utilities.less, themes/redox/css/build/bootstrap-3.2.0/component-animations.less, themes/redox/css/build/bootstrap-3.2.0/bootstrap.less, themes/redox/css/build/bootstrap-3.2.0/panels.less, themes/redox/css/build/bootstrap-3.2.0/breadcrumbs.less, themes/redox/css/build/bootstrap-3.2.0/modals.less, themes/redox/css/build/bootstrap-3.2.0/pager.less, themes/redox/css/build/bootstrap-3.2.0/tables.less, themes/redox/css/build/bootstrap-3.2.0/forms.less, themes/redox/css/build/bootstrap-3.2.0/pagination.less, themes/redox/css/build/bootstrap-3.2.0/close.less, themes/redox/css/build/bootstrap-3.2.0/theme.less, themes/redox/css/build/bootstrap-3.2.0/normalize.less, themes/redox/css/build/bootstrap-3.2.0/navs.less, themes/redox/css/build/bootstrap-3.2.0/responsive-embed.less, themes/redox/css/build/bootstrap-3.2.0/glyphicons.less, themes/redox/css/build/bootstrap-3.2.0/popovers.less, themes/redox/css/build/bootstrap-3.2.0/responsive-utilities.less, themes/redox/css/build/bootstrap-3.2.0/code.less, themes/redox/css/build/bootstrap-3.2.0/input-groups.less, themes/redox/css/build/bootstrap-3.2.0/navbar.less, themes/redox/css/build/bootstrap-3.2.0/scaffolding.less, themes/redox/css/build/bootstrap-3.2.0/grid.less, themes/redox/css/build/bootstrap-3.2.0/buttons.less, themes/redox/css/build/bootstrap-3.2.0/labels.less, themes/redox/css/build/bootstrap-3.2.0/button-groups.less, themes/redox/css/build/bootstrap-3.2.0/dropdowns.less, themes/redox/css/build/bootstrap-3.2.0/variables.less, themes/redox/css/build/bootstrap-3.2.0/badges.less, themes/redox/css/build/bootstrap-3.2.0, themes/redox/css/build/buttons.less, themes/redox/css/build/blocks/image-slider.less, themes/redox/css/build/blocks/feature.less, themes/redox/css/build/blocks/tags.less, themes/redox/css/build/blocks/tuote.less, themes/redox/css/build/blocks/date-navigation.less, themes/redox/css/build/blocks/page-title-option-byline.less, themes/redox/css/build/blocks/page-attribute-display.less, themes/redox/css/build/blocks/testimonial.less, themes/redox/css/build/blocks/page-title.less, themes/redox/css/build/blocks/faq.less, themes/redox/css/build/blocks/page-list-option-buttons.less, themes/redox/css/build/blocks/feature-template-hover-description.less, themes/redox/css/build/blocks/image.less, themes/redox/css/build/blocks/next-previous.less, themes/redox/css/build/blocks/topic-list.less, themes/redox/css/build/blocks/page-list.less, themes/redox/css/build/blocks/page-list-template-thumbnail-grid.less, themes/redox/css/build/blocks, themes/redox/css/build, themes/redox/css/styles.xml, themes/redox/css/lightbox.css, themes/redox/css/presets/royal.less, themes/redox/css/presets/night-road.less, themes/redox/css/presets/defaults.less, themes/redox/css/presets/redox.less, themes/redox/css/presets/blue-sky.less, themes/redox/css/presets, themes/redox/css/ekko-lightbox.css, themes/redox/css, themes/redox/etusivu.php, themes/redox/default.php, themes/redox/page_not_found.php, themes/redox/full.php, themes/redox/description.txt, themes/redox/elements/header_top.php, themes/redox/elements/header.php, themes/redox/elements/footer_bottom.php, themes/redox/elements/footer.php, themes/redox/elements, themes/redox/blank.php, themes/redox/thumbnail.png, themes/redox/default_nobreadcrumbs.php, themes/redox/js/lightbox-plus-jquery.js, themes/redox/js/lightbox.js, themes/redox/js/bootstrap-lightbox.js, themes/redox/js/ekko-lightbox.js, themes/redox/js/lightbox-plus-jquery.min.js, themes/redox/js/lightbox.min.map, themes/redox/js/lightbox.min.js, themes/redox/js/lightbox-plus-jquery.min.map, themes/redox/js, themes/redox, blocks/tuote/edit.php, blocks/tuote/icon.png, blocks/tuote/add.php, blocks/tuote/config.json, blocks/tuote/view.php, blocks/tuote/form.php, blocks/tuote/controller.php, blocks/tuote/composer.php, blocks/tuote/db.xml, blocks/tuote, blocks/voitelu/edit.php, blocks/voitelu/icon.png, blocks/voitelu/add.php, blocks/voitelu/config.json, blocks/voitelu/view.php, blocks/voitelu/form.php, blocks/voitelu/controller.php, blocks/voitelu/composer.php, blocks/voitelu/db.xml, blocks/voitelu, blocks/rex_voitelu/edit.php, blocks/rex_voitelu/icon.png, blocks/rex_voitelu/add.php, blocks/rex_voitelu/config.json, blocks/rex_voitelu/view.php, blocks/rex_voitelu/form.php, blocks/rex_voitelu/controller.php, blocks/rex_voitelu/composer.php, blocks/rex_voitelu/db.xml, blocks/rex_voitelu, blocks/rex_tuote/edit.php, blocks/rex_tuote/icon.png, blocks/rex_tuote/add.php, blocks/rex_tuote/config.json, blocks/rex_tuote/view.php, blocks/rex_tuote/view_responsive.php, blocks/rex_tuote/form.php, blocks/rex_tuote/controller.php, blocks/rex_tuote/composer.php, blocks/rex_tuote/db.xml, blocks/rex_tuote, languages/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/site/fi_FI.po, languages/site/fi_FI.mo, languages/site, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/it_IT/LC_MESSAGES/messages.mo, languages/it_IT/LC_MESSAGES, languages/it_IT, languages/ja_JP/LC_MESSAGES/messages.mo, languages/ja_JP/LC_MESSAGES, languages/ja_JP, languages/nb_NO/LC_MESSAGES/messages.mo, languages/nb_NO/LC_MESSAGES, languages/nb_NO, languages/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/de_DE/LC_MESSAGES/messages.mo, languages/de_DE/LC_MESSAGES, languages/de_DE, languages/sl_SI/LC_MESSAGES/messages.mo, languages/sl_SI/LC_MESSAGES, languages/sl_SI, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, themes/redox/page_forbidden.php, themes/redox/right_sidebar.php, themes/redox/images/close.png, themes/redox/images/background-slider-royal.png, themes/redox/images/next.png, themes/redox/images/loading.gif, themes/redox/images/prev.png, themes/redox/images/background-slider-night-road.png, themes/redox/images/background-slider-default.png, themes/redox/images/harmaanoise_bg.png, themes/redox/images/headerlogo_bg.png, themes/redox/images/background-slider-blue-sky.png, themes/redox/images/background.png, themes/redox/images, themes/redox/page_theme.php, themes/redox/view.php, themes/redox/left_sidebar.php, themes/redox/css/bootstrap-lightbox.css, themes/redox/css/main.less, themes/redox/css/bootstrap-modified.css, themes/redox/css/build/mixins.less, themes/redox/css/build/header lessinä.less, themes/redox/css/build/breadcrumb.less, themes/redox/css/build/reset.less, themes/redox/css/build/search.less, themes/redox/css/build/fonts/rexlinepro-regular-webfont.eot, themes/redox/css/build/fonts/rexlinepro-regular-webfont.svg, themes/redox/css/build/fonts/rexlinepro-black-webfont.woff, themes/redox/css/build/fonts/rexlinepro-thin-webfont.svg, themes/redox/css/build/fonts/rexlinepro-black-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-thin-webfont.woff, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-regular-webfont.woff, themes/redox/css/build/fonts/rexlinepro-thin-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-light-webfont.eot, themes/redox/css/build/fonts/royal.less, themes/redox/css/build/fonts/night-road.less, themes/redox/css/build/fonts/defaults.less, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.eot, themes/redox/css/build/fonts/rexlinepro-thin-webfont.eot, themes/redox/css/build/fonts/rexlinepro-light-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-light-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-thin-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-black-webfont.svg, themes/redox/css/build/fonts/redox.less, themes/redox/css/build/fonts/blue-sky.less, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.svg, themes/redox/css/build/fonts/rexlinepro-light-webfont.woff, themes/redox/css/build/fonts/rexlinepro-black-webfont.eot, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-regular-webfont.ttf, themes/redox/css/build/fonts/rexlinepro-regular-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-black-webfont.woff2, themes/redox/css/build/fonts/rexlinepro-extrabold-webfont.woff, themes/redox/css/build/fonts, themes/redox/css/build/custom-design-classes/tuote-bio.less, themes/redox/css/build/custom-design-classes/block-sidebar-padded.less, themes/redox/css/build/custom-design-classes/area-content-accent.less, themes/redox/css/build/custom-design-classes/block-sidebar-wrapped.less, themes/redox/css/build/custom-design-classes/testimonial-bio.less, themes/redox/css/build/custom-design-classes/recent-blog-entry.less, themes/redox/css/build/custom-design-classes/blog-entry-list.less, themes/redox/css/build/custom-design-classes, themes/redox/css/build/footer.less, themes/redox/css/build/body.less, themes/redox/css/build/content.less, themes/redox/css/build/miscellaneous-styles.less, themes/redox/css/build/pagination.less, themes/redox/css/build/mobile/navigation.less, themes/redox/css/build/mobile, themes/redox/css/build/header.less, themes/redox/css/build/bootstrap-3.2.0/mixins.less, themes/redox/css/build/bootstrap-3.2.0/list-group.less, themes/redox/css/build/bootstrap-3.2.0/progress-bars.less, themes/redox/css/build/bootstrap-3.2.0/type.less, themes/redox/css/build/bootstrap-3.2.0/wells.less, themes/redox/css/build/bootstrap-3.2.0/tooltip.less, themes/redox/css/build/bootstrap-3.2.0/print.less, themes/redox/css/build/bootstrap-3.2.0/mixins/list-group.less, themes/redox/css/build/bootstrap-3.2.0/mixins/nav-vertical-align.less, themes/redox/css/build/bootstrap-3.2.0/mixins/progress-bar.less, themes/redox/css/build/bootstrap-3.2.0/mixins/vendor-prefixes.less, themes/redox/css/build/bootstrap-3.2.0/mixins/nav-divider.less, themes/redox/css/build/bootstrap-3.2.0/mixins/alerts.less, themes/redox/css/build/bootstrap-3.2.0/mixins/text-overflow.less, themes/redox/css/build/bootstrap-3.2.0/mixins/hide-text.less, themes/redox/css/build/bootstrap-3.2.0/mixins/responsive-visibility.less, themes/redox/css/build/bootstrap-3.2.0/mixins/background-variant.less, themes/redox/css/build/bootstrap-3.2.0/mixins/panels.less, themes/redox/css/build/bootstrap-3.2.0/mixins/reset-filter.less, themes/redox/css/build/bootstrap-3.2.0/mixins/gradients.less, themes/redox/css/build/bootstrap-3.2.0/mixins/size.less, themes/redox/css/build/bootstrap-3.2.0/mixins/forms.less, themes/redox/css/build/bootstrap-3.2.0/mixins/pagination.less, themes/redox/css/build/bootstrap-3.2.0/mixins/grid-framework.less, themes/redox/css/build/bootstrap-3.2.0/mixins/center-block.less, themes/redox/css/build/bootstrap-3.2.0/mixins/clearfix.less, themes/redox/css/build/bootstrap-3.2.0/mixins/grid.less, themes/redox/css/build/bootstrap-3.2.0/mixins/border-radius.less, themes/redox/css/build/bootstrap-3.2.0/mixins/tab-focus.less, themes/redox/css/build/bootstrap-3.2.0/mixins/text-emphasis.less, themes/redox/css/build/bootstrap-3.2.0/mixins/table-row.less, themes/redox/css/build/bootstrap-3.2.0/mixins/image.less, themes/redox/css/build/bootstrap-3.2.0/mixins/buttons.less, themes/redox/css/build/bootstrap-3.2.0/mixins/labels.less, themes/redox/css/build/bootstrap-3.2.0/mixins/opacity.less, themes/redox/css/build/bootstrap-3.2.0/mixins/resize.less, themes/redox/css/build/bootstrap-3.2.0/mixins, themes/redox/css/build/bootstrap-3.2.0/thumbnails.less, themes/redox/css/build/bootstrap-3.2.0/carousel.less, themes/redox/css/build/bootstrap-3.2.0/alerts.less, themes/redox/css/build/bootstrap-3.2.0/jumbotron.less, themes/redox/css/build/bootstrap-3.2.0/media.less, themes/redox/css/build/bootstrap-3.2.0/utilities.less, themes/redox/css/build/bootstrap-3.2.0/component-animations.less, themes/redox/css/build/bootstrap-3.2.0/bootstrap.less, themes/redox/css/build/bootstrap-3.2.0/panels.less, themes/redox/css/build/bootstrap-3.2.0/breadcrumbs.less, themes/redox/css/build/bootstrap-3.2.0/modals.less, themes/redox/css/build/bootstrap-3.2.0/pager.less, themes/redox/css/build/bootstrap-3.2.0/tables.less, themes/redox/css/build/bootstrap-3.2.0/forms.less, themes/redox/css/build/bootstrap-3.2.0/pagination.less, themes/redox/css/build/bootstrap-3.2.0/close.less, themes/redox/css/build/bootstrap-3.2.0/theme.less, themes/redox/css/build/bootstrap-3.2.0/normalize.less, themes/redox/css/build/bootstrap-3.2.0/navs.less, themes/redox/css/build/bootstrap-3.2.0/responsive-embed.less, themes/redox/css/build/bootstrap-3.2.0/glyphicons.less, themes/redox/css/build/bootstrap-3.2.0/popovers.less, themes/redox/css/build/bootstrap-3.2.0/responsive-utilities.less, themes/redox/css/build/bootstrap-3.2.0/code.less, themes/redox/css/build/bootstrap-3.2.0/input-groups.less, themes/redox/css/build/bootstrap-3.2.0/navbar.less, themes/redox/css/build/bootstrap-3.2.0/scaffolding.less, themes/redox/css/build/bootstrap-3.2.0/grid.less, themes/redox/css/build/bootstrap-3.2.0/buttons.less, themes/redox/css/build/bootstrap-3.2.0/labels.less, themes/redox/css/build/bootstrap-3.2.0/button-groups.less, themes/redox/css/build/bootstrap-3.2.0/dropdowns.less, themes/redox/css/build/bootstrap-3.2.0/variables.less, themes/redox/css/build/bootstrap-3.2.0/badges.less, themes/redox/css/build/bootstrap-3.2.0, themes/redox/css/build/buttons.less, themes/redox/css/build/blocks/image-slider.less, themes/redox/css/build/blocks/feature.less, themes/redox/css/build/blocks/tags.less, themes/redox/css/build/blocks/tuote.less, themes/redox/css/build/blocks/date-navigation.less, themes/redox/css/build/blocks/page-title-option-byline.less, themes/redox/css/build/blocks/page-attribute-display.less, themes/redox/css/build/blocks/testimonial.less, themes/redox/css/build/blocks/page-title.less, themes/redox/css/build/blocks/faq.less, themes/redox/css/build/blocks/page-list-option-buttons.less, themes/redox/css/build/blocks/feature-template-hover-description.less, themes/redox/css/build/blocks/image.less, themes/redox/css/build/blocks/next-previous.less, themes/redox/css/build/blocks/topic-list.less, themes/redox/css/build/blocks/page-list.less, themes/redox/css/build/blocks/page-list-template-thumbnail-grid.less, themes/redox/css/build/blocks, themes/redox/css/build, themes/redox/css/styles.xml, themes/redox/css/lightbox.css, themes/redox/css/presets/royal.less, themes/redox/css/presets/night-road.less, themes/redox/css/presets/defaults.less, themes/redox/css/presets/redox.less, themes/redox/css/presets/blue-sky.less, themes/redox/css/presets, themes/redox/css/ekko-lightbox.css, themes/redox/css, themes/redox/etusivu.php, themes/redox/default.php, themes/redox/page_not_found.php, themes/redox/full.php, themes/redox/description.txt, themes/redox/elements/header_top.php, themes/redox/elements/header.php, themes/redox/elements/footer_bottom.php, themes/redox/elements/footer.php, themes/redox/elements, themes/redox/blank.php, themes/redox/thumbnail.png, themes/redox/default_nobreadcrumbs.php, themes/redox/js/lightbox-plus-jquery.js, themes/redox/js/lightbox.js, themes/redox/js/bootstrap-lightbox.js, themes/redox/js/ekko-lightbox.js, themes/redox/js/lightbox-plus-jquery.min.js, themes/redox/js/lightbox.min.map, themes/redox/js/lightbox.min.js, themes/redox/js/lightbox-plus-jquery.min.map, themes/redox/js, themes/redox

# concrete5 Cache Settings
Block Cache - Off
Overrides Cache - Off
Full Page Caching - Off
Full Page Cache Lifetime - Every 6 hours (default setting).

# Server Software
Apache

# Server API
cgi-fcgi

# PHP Version
5.5.25

# PHP Extensions
bcmath, bz2, calendar, cgi-fcgi, Core, ctype, curl, date, dom, ereg, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, imap, json, ldap, libxml, mbstring, mcrypt, mysql, mysqli, mysqlnd, odbc, openssl, pcntl, pcre, PDO, pdo_mysql, pdo_pgsql, pgsql, Phar, posix, pspell, readline, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, SPL, sqlite3, standard, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib.

# PHP Settings
max_execution_time - 30
log_errors_max_len - 1024
max_file_uploads - 20
max_input_nesting_level - 64
max_input_time - 60
max_input_vars - 1000
memory_limit - 128M
post_max_size - 16M
sql.safe_mode - Off
upload_max_filesize - 16M
ldap.max_links - Unlimited
mysql.max_links - Unlimited
mysql.max_persistent - Unlimited
mysqli.max_links - Unlimited
mysqli.max_persistent - Unlimited
odbc.max_links - Unlimited
odbc.max_persistent - Unlimited
pcre.backtrack_limit - 1000000
pcre.recursion_limit - 100000
pgsql.max_links - Unlimited
pgsql.max_persistent - Unlimited
session.cache_limiter - <i>no value</i>
session.gc_maxlifetime - 1440
soap.wsdl_cache_limit - 5
opcache.max_accelerated_files - 2000
opcache.max_file_size - 0
opcache.max_wasted_percentage - 5

Browser User-Agent String

Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56

Hide Post Content

This will replace the post content with the message: "Content has been removed by an Administrator"

Hide Content

Request Refund

You may not request a refund that is not currently owned by you.