Random Pictures

Permalink Browser Info Environment
Hello,

First of all thank you for this great, very versatile and easy to use theme.

I am trying to make the picture of slide1 change randomly each time the site is visited (or i.e. after a refresh) and this without loosing the parallax effect.
I have been toying with a few ideas on how to achieve this by trying to inject the img tag in the parallax block with random images picked out of an array but with no success.

Any ideas/pointers on the best approach to achieve this would be very greatly appreciated. Thanks in advance for the help.

MontyMeta

Type: Discussion
Status: In Progress
MontyMeta
View Replies:
jordif replied on at Permalink Reply
jordif
Hello,

thanks for the nice words :)

You'll need to tweak the theme a little bit to achieve this. An array is a good idea. You could try this:

1. Remove the background image from the first slide (in case you had assinged a background image to the 1st slide through the dashboard).

2. Edit the following file: /packages/theme_long_story_short/themes/long_story_short/default.php.

3. Find line 58:

// if slide has no background image


4. Just before line 58, paste the following code:

if ($i==1) {
    $img_array = array(
      "https://ununsplash.imgix.net/photo-1433733071959-30cd185d14a8?fit=crop&fm=jpg&h=800&q=75&w=1050",
      "https://ununsplash.imgix.net/photo-1433785124354-92116416b870?fit=crop&fm=jpg&h=700&q=75&w=1050",
      "https://ununsplash.imgix.net/photo-1434394673726-e8232a5903b4?fit=crop&fm=jpg&h=700&q=75&w=1050"
    );
    $random_key = array_rand($img_array);
    $slideData['image'] = $img_array[$random_key];
  }


You'll simply need to populate the array with the URLs of the images you want to use.

Hope this helps you get started!

Regards,

Jordi
MontyMeta replied on at Permalink Reply
MontyMeta
Woooohooow Jordi, a big thank you for providing a working sample so quickly, especially for something which (even if it could become a small feature of the theme) is somewhat outside the scope of your theme support - greatly appreciated :)

To give something back and for those interested, I have added a small modification to avoid having to fill the array manually.
- Create a folder (accessible by the serverside script).
- Set the $img_dir variable (in the script below) to the path of this folder and add your pictures to the folder - that's all there is to it! :)

if ($i==1) {
   $img_dir = './path/to/your/splash_picts/folder';
   $img_array = array_diff(scandir($img_dir), array('..', '.'));
   $random_key = array_rand($img_array);
   $slideData['image'] = $img_dir . '/'. $img_array[$random_key];
  }


Actually, there is a longish delay before the image appears (even with cache on). To help minimise it, I have set the bkg picture of slide1 (via the 'Edit Area Design' option) to a grey picture, this is not ideal but will do until a solution can be found. I have tried to force the image path earlier in the script (in case this would help) but without convincing results - any idea of why this happens?

Thanks a bunch again :)

Best regards

MontyMeta
jordif replied on at Permalink Reply
jordif
Hi!

Yes, you're right. To fix the delay, you could try printing an inline style before closing the if block, so the code would look like this:

if ($i==1) {
   $img_dir = './path/to/your/splash_picts/folder';
   $img_array = array_diff(scandir($img_dir), array('..', '.'));
   $random_key = array_rand($img_array);
   $slideData['image'] = $img_dir . '/'. $img_array[$random_key];
   echo '<style type="text/css">';
   echo 'div.lss-slide:first-of-type { background-image:url('.$slideData['image'].'); background-position:center top;} .ccm-toolbar-visible div.lss-slide:first-of-type {background-position:center -39px;}';
   echo '</style>';
}


Hope this works for you!

Regards,

Jordi
jordif replied on at Permalink Reply
jordif
Hey, thanks a lot for sharing your code :)

Jordi
MontyMeta replied on at Permalink Reply
MontyMeta
[quote]Hey, thanks a lot for sharing your code :) [/quote]
Pleasure, this is the least I could do :)

Thanks to you to for your last tip, this made all the difference. It also gave me some great pointers on where to look for to try to add to it. Once more, very greatly appreciated :)

For those whom like me might decide to apply this rand pict hack, please bear in mind the following:
To ensure that the picture is changed after each visits and/or after each page reset (F5) when not logged in, set the "Full Page Caching" option in your dashboard to either "On. If blocks on the particular page allow it." or "OFF".

To ensure the height of the div bkg (on which the rand picture is applied to) fills the full height of slide1 when reducing the viewer's width, set a bkg picture to slide1 using its "Edit Area Design" option.
File blank.png, which I believe comes with the elemental theme, works a treat.

Apart from these 2, all seems to behave as it should :)

Thanks again for the invaluable help and support Jordi, have a very good weekend.

MontyMeta
ARTRIUM replied on at Permalink Reply
ARTRIUM
Hi. That's a very interesting feature, it works well for us in the first block. Could you maybe point us in the directions how to reuse this feature in other blocks of the site (say block 3)

Many regards.
jordif replied on at Permalink Reply
jordif
Hi,

to use it in another slide, you only need to change the first line:

if ($i==1) {


If you replace number 1 with number 3, then the random background image will be applied to the 3rd slide:

if ($i==3) {



Regards,

Jordi

concrete5 Environment Information

# concrete5 Version
Core Version - 5.7.4.2
Version Installed - 5.7.4.2
Database Version - 20150504000000

# concrete5 Packages
Fruitful (1.2), Long Story Short (1.0).

# concrete5 Overrides
jobs/clear_empty_workflow_progress.php, 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/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/pl_PL/LC_MESSAGES/messages.mo, languages/pl_PL/LC_MESSAGES, languages/pl_PL, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, languages/pt_BR/LC_MESSAGES/messages.mo, languages/pt_BR/LC_MESSAGES, languages/pt_BR, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, 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/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, themes/thm_essential/full.php, themes/thm_essential/css/build/content.less, themes/thm_essential/css/build/custom-design-classes/recent-blog-entry.less, themes/thm_essential/css/build/custom-design-classes/area-content-accent.less, themes/thm_essential/css/build/custom-design-classes/testimonial-bio.less, themes/thm_essential/css/build/custom-design-classes/block-sidebar-padded.less, themes/thm_essential/css/build/custom-design-classes/block-sidebar-wrapped.less, themes/thm_essential/css/build/custom-design-classes/blog-entry-list.less, themes/thm_essential/css/build/custom-design-classes, themes/thm_essential/css/build/mixins.less, themes/thm_essential/css/build/bootstrap-3.2.0/bootstrap.less, themes/thm_essential/css/build/bootstrap-3.2.0/wells.less, themes/thm_essential/css/build/bootstrap-3.2.0/panels.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins.less, themes/thm_essential/css/build/bootstrap-3.2.0/input-groups.less, themes/thm_essential/css/build/bootstrap-3.2.0/responsive-utilities.less, themes/thm_essential/css/build/bootstrap-3.2.0/labels.less, themes/thm_essential/css/build/bootstrap-3.2.0/normalize.less, themes/thm_essential/css/build/bootstrap-3.2.0/carousel.less, themes/thm_essential/css/build/bootstrap-3.2.0/list-group.less, themes/thm_essential/css/build/bootstrap-3.2.0/popovers.less, themes/thm_essential/css/build/bootstrap-3.2.0/progress-bars.less, themes/thm_essential/css/build/bootstrap-3.2.0/glyphicons.less, themes/thm_essential/css/build/bootstrap-3.2.0/variables.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/reset-filter.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/center-block.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/panels.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/background-variant.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/progress-bar.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/labels.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/list-group.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/text-overflow.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/size.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/nav-vertical-align.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/pagination.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/opacity.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/hide-text.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/vendor-prefixes.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/image.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/alerts.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/grid.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/grid-framework.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/text-emphasis.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/gradients.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/tab-focus.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/buttons.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/nav-divider.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/clearfix.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/responsive-visibility.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/resize.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/table-row.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/border-radius.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/forms.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins, themes/thm_essential/css/build/bootstrap-3.2.0/theme.less, themes/thm_essential/css/build/bootstrap-3.2.0/utilities.less, themes/thm_essential/css/build/bootstrap-3.2.0/scaffolding.less, themes/thm_essential/css/build/bootstrap-3.2.0/pagination.less, themes/thm_essential/css/build/bootstrap-3.2.0/code.less, themes/thm_essential/css/build/bootstrap-3.2.0/badges.less, themes/thm_essential/css/build/bootstrap-3.2.0/navbar.less, themes/thm_essential/css/build/bootstrap-3.2.0/tables.less, themes/thm_essential/css/build/bootstrap-3.2.0/media.less, themes/thm_essential/css/build/bootstrap-3.2.0/alerts.less, themes/thm_essential/css/build/bootstrap-3.2.0/grid.less, themes/thm_essential/css/build/bootstrap-3.2.0/component-animations.less, themes/thm_essential/css/build/bootstrap-3.2.0/navs.less, themes/thm_essential/css/build/bootstrap-3.2.0/close.less, themes/thm_essential/css/build/bootstrap-3.2.0/buttons.less, themes/thm_essential/css/build/bootstrap-3.2.0/tooltip.less, themes/thm_essential/css/build/bootstrap-3.2.0/pager.less, themes/thm_essential/css/build/bootstrap-3.2.0/jumbotron.less, themes/thm_essential/css/build/bootstrap-3.2.0/button-groups.less, themes/thm_essential/css/build/bootstrap-3.2.0/print.less, themes/thm_essential/css/build/bootstrap-3.2.0/breadcrumbs.less, themes/thm_essential/css/build/bootstrap-3.2.0/type.less, themes/thm_essential/css/build/bootstrap-3.2.0/modals.less, themes/thm_essential/css/build/bootstrap-3.2.0/responsive-embed.less, themes/thm_essential/css/build/bootstrap-3.2.0/thumbnails.less, themes/thm_essential/css/build/bootstrap-3.2.0/dropdowns.less, themes/thm_essential/css/build/bootstrap-3.2.0/forms.less, themes/thm_essential/css/build/bootstrap-3.2.0, themes/thm_essential/css/build/body.less, themes/thm_essential/css/build/search.less, themes/thm_essential/css/build/footer.less, themes/thm_essential/css/build/pagination.less, themes/thm_essential/css/build/header.less, themes/thm_essential/css/build/breadcrumb.less, themes/thm_essential/css/build/buttons.less, themes/thm_essential/css/build/miscellaneous-styles.less, themes/thm_essential/css/build/captcha.less, themes/thm_essential/css/build/reset.less, themes/thm_essential/css/build/blocks/feature.less, themes/thm_essential/css/build/blocks/page-attribute-display.less, themes/thm_essential/css/build/blocks/page-list.less, themes/thm_essential/css/build/blocks/feature-template-hover-description.less, themes/thm_essential/css/build/blocks/topic-list.less, themes/thm_essential/css/build/blocks/date-navigation.less, themes/thm_essential/css/build/blocks/faq.less, themes/thm_essential/css/build/blocks/image.less, themes/thm_essential/css/build/blocks/image-slider.less, themes/thm_essential/css/build/blocks/tags.less, themes/thm_essential/css/build/blocks/page-title.less, themes/thm_essential/css/build/blocks/testimonial.less, themes/thm_essential/css/build/blocks/page-list-option-buttons.less, themes/thm_essential/css/build/blocks/page-title-option-byline.less, themes/thm_essential/css/build/blocks/page-list-template-thumbnail-grid.less, themes/thm_essential/css/build/blocks/next-previous.less, themes/thm_essential/css/build/blocks, themes/thm_essential/css/build/mobile/navigation.less, themes/thm_essential/css/build/mobile, themes/thm_essential/css/build/fonts/blue-sky.less, themes/thm_essential/css/build/fonts/defaults.less, themes/thm_essential/css/build/fonts/royal.less, themes/thm_essential/css/build/fonts/night-road.less, themes/thm_essential/css/build/fonts, themes/thm_essential/css/build, themes/thm_essential/css/styles.xml, themes/thm_essential/css/presets/blue-sky.less, themes/thm_essential/css/presets/defaults.less, themes/thm_essential/css/presets/royal.less, themes/thm_essential/css/presets/night-road.less, themes/thm_essential/css/presets, themes/thm_essential/css/bootstrap-modified.css, themes/thm_essential/css/main.less, themes/thm_essential/css, themes/thm_essential/thumbnail.png, themes/thm_essential/right_sidebar.php, themes/thm_essential/elements/footer.php, themes/thm_essential/elements/footer_bottom.php, themes/thm_essential/elements/header.php, themes/thm_essential/elements/header_top.php, themes/thm_essential/elements, themes/thm_essential/left_sidebar.php, themes/thm_essential/page_forbidden.php, themes/thm_essential/page_theme.php, themes/thm_essential/page_not_found.php, themes/thm_essential/default.php, themes/thm_essential/blank.php, themes/thm_essential/images/background.png, themes/thm_essential/images/background-slider-night-road.png, themes/thm_essential/images/background-slider-royal.png, themes/thm_essential/images/background-slider-blue-sky.png, themes/thm_essential/images/background-slider-default.png, themes/thm_essential/images, themes/thm_essential/description.txt, themes/thm_essential/view.php, themes/thm_essential, themes/thm_ambition/full.php, themes/thm_ambition/css/normalize.css, themes/thm_ambition/css/style.css, themes/thm_ambition/css/prettyPhoto.css, themes/thm_ambition/css/grid.css, themes/thm_ambition/css, themes/thm_ambition/thumbnail.png, themes/thm_ambition/images/link.png, themes/thm_ambition/images/icon4_h.png, themes/thm_ambition/images/icon5.png, themes/thm_ambition/images/slide_bg.jpg, themes/thm_ambition/images/video_btn.png, themes/thm_ambition/images/back_top_bg.png, themes/thm_ambition/images/slide3_bg.jpg, themes/thm_ambition/images/icon1_h.png, themes/thm_ambition/images/slide1_h1_bg.png, themes/thm_ambition/images/zoom.png, themes/thm_ambition/images/slide1_bg.jpg, themes/thm_ambition/images/icon1.png, themes/thm_ambition/images/slide5_bg.jpg, themes/thm_ambition/images/icon2_h.png, themes/thm_ambition/images/team_soc_icons.png, themes/thm_ambition/images/icon6.png, themes/thm_ambition/images/effect_2.png, themes/thm_ambition/images/team3.jpg, themes/thm_ambition/images/slide7_bg.jpg, themes/thm_ambition/images/tab_img1.jpg, themes/thm_ambition/images/tab_img2.jpg, themes/thm_ambition/images/icon3.png, themes/thm_ambition/images/icon4.png, themes/thm_ambition/images/team2.jpg, themes/thm_ambition/images/bottom_center_bg.png, themes/thm_ambition/images/icon3_h.png, themes/thm_ambition/images/icon5_h.png, themes/thm_ambition/images/video_icon.png, themes/thm_ambition/images/contact_icon.png, themes/thm_ambition/images/logo.png, themes/thm_ambition/images/icon2.png, themes/thm_ambition/images/portfolio/1.jpg, themes/thm_ambition/images/portfolio/5.jpg, themes/thm_ambition/images/portfolio/6.jpg, themes/thm_ambition/images/portfolio/4.jpg, themes/thm_ambition/images/portfolio/3.jpg, themes/thm_ambition/images/portfolio/2.jpg, themes/thm_ambition/images/portfolio, themes/thm_ambition/images/icon6_h.png, themes/thm_ambition/images/team1.jpg, themes/thm_ambition/images/about_img1.jpg, themes/thm_ambition/images, themes/thm_ambition/description.txt, themes/thm_ambition/fonts, themes/thm_ambition/js/carousel/jquery.mousewheel.min.js, themes/thm_ambition/js/carousel/jquery.touchswipe.min.js, themes/thm_ambition/js/carousel/jquery.caroufredsel-6.2.0-packed.js, themes/thm_ambition/js/carousel, themes/thm_ambition/js/js.js, themes/thm_ambition/js/jquery.easing.1.3.js, themes/thm_ambition/js/bootstrap.js, themes/thm_ambition/js/jquery.prettyPhoto.js, themes/thm_ambition/js/waypoints.min.js, themes/thm_ambition/js/jquery.stellar.min.js, themes/thm_ambition/js, themes/thm_ambition, jobs/clear_empty_workflow_progress.php, 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/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/pl_PL/LC_MESSAGES/messages.mo, languages/pl_PL/LC_MESSAGES, languages/pl_PL, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, languages/pt_BR/LC_MESSAGES/messages.mo, languages/pt_BR/LC_MESSAGES, languages/pt_BR, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, 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/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, themes/thm_essential/full.php, themes/thm_essential/css/build/content.less, themes/thm_essential/css/build/custom-design-classes/recent-blog-entry.less, themes/thm_essential/css/build/custom-design-classes/area-content-accent.less, themes/thm_essential/css/build/custom-design-classes/testimonial-bio.less, themes/thm_essential/css/build/custom-design-classes/block-sidebar-padded.less, themes/thm_essential/css/build/custom-design-classes/block-sidebar-wrapped.less, themes/thm_essential/css/build/custom-design-classes/blog-entry-list.less, themes/thm_essential/css/build/custom-design-classes, themes/thm_essential/css/build/mixins.less, themes/thm_essential/css/build/bootstrap-3.2.0/bootstrap.less, themes/thm_essential/css/build/bootstrap-3.2.0/wells.less, themes/thm_essential/css/build/bootstrap-3.2.0/panels.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins.less, themes/thm_essential/css/build/bootstrap-3.2.0/input-groups.less, themes/thm_essential/css/build/bootstrap-3.2.0/responsive-utilities.less, themes/thm_essential/css/build/bootstrap-3.2.0/labels.less, themes/thm_essential/css/build/bootstrap-3.2.0/normalize.less, themes/thm_essential/css/build/bootstrap-3.2.0/carousel.less, themes/thm_essential/css/build/bootstrap-3.2.0/list-group.less, themes/thm_essential/css/build/bootstrap-3.2.0/popovers.less, themes/thm_essential/css/build/bootstrap-3.2.0/progress-bars.less, themes/thm_essential/css/build/bootstrap-3.2.0/glyphicons.less, themes/thm_essential/css/build/bootstrap-3.2.0/variables.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/reset-filter.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/center-block.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/panels.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/background-variant.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/progress-bar.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/labels.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/list-group.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/text-overflow.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/size.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/nav-vertical-align.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/pagination.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/opacity.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/hide-text.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/vendor-prefixes.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/image.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/alerts.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/grid.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/grid-framework.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/text-emphasis.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/gradients.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/tab-focus.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/buttons.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/nav-divider.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/clearfix.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/responsive-visibility.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/resize.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/table-row.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/border-radius.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins/forms.less, themes/thm_essential/css/build/bootstrap-3.2.0/mixins, themes/thm_essential/css/build/bootstrap-3.2.0/theme.less, themes/thm_essential/css/build/bootstrap-3.2.0/utilities.less, themes/thm_essential/css/build/bootstrap-3.2.0/scaffolding.less, themes/thm_essential/css/build/bootstrap-3.2.0/pagination.less, themes/thm_essential/css/build/bootstrap-3.2.0/code.less, themes/thm_essential/css/build/bootstrap-3.2.0/badges.less, themes/thm_essential/css/build/bootstrap-3.2.0/navbar.less, themes/thm_essential/css/build/bootstrap-3.2.0/tables.less, themes/thm_essential/css/build/bootstrap-3.2.0/media.less, themes/thm_essential/css/build/bootstrap-3.2.0/alerts.less, themes/thm_essential/css/build/bootstrap-3.2.0/grid.less, themes/thm_essential/css/build/bootstrap-3.2.0/component-animations.less, themes/thm_essential/css/build/bootstrap-3.2.0/navs.less, themes/thm_essential/css/build/bootstrap-3.2.0/close.less, themes/thm_essential/css/build/bootstrap-3.2.0/buttons.less, themes/thm_essential/css/build/bootstrap-3.2.0/tooltip.less, themes/thm_essential/css/build/bootstrap-3.2.0/pager.less, themes/thm_essential/css/build/bootstrap-3.2.0/jumbotron.less, themes/thm_essential/css/build/bootstrap-3.2.0/button-groups.less, themes/thm_essential/css/build/bootstrap-3.2.0/print.less, themes/thm_essential/css/build/bootstrap-3.2.0/breadcrumbs.less, themes/thm_essential/css/build/bootstrap-3.2.0/type.less, themes/thm_essential/css/build/bootstrap-3.2.0/modals.less, themes/thm_essential/css/build/bootstrap-3.2.0/responsive-embed.less, themes/thm_essential/css/build/bootstrap-3.2.0/thumbnails.less, themes/thm_essential/css/build/bootstrap-3.2.0/dropdowns.less, themes/thm_essential/css/build/bootstrap-3.2.0/forms.less, themes/thm_essential/css/build/bootstrap-3.2.0, themes/thm_essential/css/build/body.less, themes/thm_essential/css/build/search.less, themes/thm_essential/css/build/footer.less, themes/thm_essential/css/build/pagination.less, themes/thm_essential/css/build/header.less, themes/thm_essential/css/build/breadcrumb.less, themes/thm_essential/css/build/buttons.less, themes/thm_essential/css/build/miscellaneous-styles.less, themes/thm_essential/css/build/captcha.less, themes/thm_essential/css/build/reset.less, themes/thm_essential/css/build/blocks/feature.less, themes/thm_essential/css/build/blocks/page-attribute-display.less, themes/thm_essential/css/build/blocks/page-list.less, themes/thm_essential/css/build/blocks/feature-template-hover-description.less, themes/thm_essential/css/build/blocks/topic-list.less, themes/thm_essential/css/build/blocks/date-navigation.less, themes/thm_essential/css/build/blocks/faq.less, themes/thm_essential/css/build/blocks/image.less, themes/thm_essential/css/build/blocks/image-slider.less, themes/thm_essential/css/build/blocks/tags.less, themes/thm_essential/css/build/blocks/page-title.less, themes/thm_essential/css/build/blocks/testimonial.less, themes/thm_essential/css/build/blocks/page-list-option-buttons.less, themes/thm_essential/css/build/blocks/page-title-option-byline.less, themes/thm_essential/css/build/blocks/page-list-template-thumbnail-grid.less, themes/thm_essential/css/build/blocks/next-previous.less, themes/thm_essential/css/build/blocks, themes/thm_essential/css/build/mobile/navigation.less, themes/thm_essential/css/build/mobile, themes/thm_essential/css/build/fonts/blue-sky.less, themes/thm_essential/css/build/fonts/defaults.less, themes/thm_essential/css/build/fonts/royal.less, themes/thm_essential/css/build/fonts/night-road.less, themes/thm_essential/css/build/fonts, themes/thm_essential/css/build, themes/thm_essential/css/styles.xml, themes/thm_essential/css/presets/blue-sky.less, themes/thm_essential/css/presets/defaults.less, themes/thm_essential/css/presets/royal.less, themes/thm_essential/css/presets/night-road.less, themes/thm_essential/css/presets, themes/thm_essential/css/bootstrap-modified.css, themes/thm_essential/css/main.less, themes/thm_essential/css, themes/thm_essential/thumbnail.png, themes/thm_essential/right_sidebar.php, themes/thm_essential/elements/footer.php, themes/thm_essential/elements/footer_bottom.php, themes/thm_essential/elements/header.php, themes/thm_essential/elements/header_top.php, themes/thm_essential/elements, themes/thm_essential/left_sidebar.php, themes/thm_essential/page_forbidden.php, themes/thm_essential/page_theme.php, themes/thm_essential/page_not_found.php, themes/thm_essential/default.php, themes/thm_essential/blank.php, themes/thm_essential/images/background.png, themes/thm_essential/images/background-slider-night-road.png, themes/thm_essential/images/background-slider-royal.png, themes/thm_essential/images/background-slider-blue-sky.png, themes/thm_essential/images/background-slider-default.png, themes/thm_essential/images, themes/thm_essential/description.txt, themes/thm_essential/view.php, themes/thm_essential, themes/thm_ambition/full.php, themes/thm_ambition/css/normalize.css, themes/thm_ambition/css/style.css, themes/thm_ambition/css/prettyPhoto.css, themes/thm_ambition/css/grid.css, themes/thm_ambition/css, themes/thm_ambition/thumbnail.png, themes/thm_ambition/images/link.png, themes/thm_ambition/images/icon4_h.png, themes/thm_ambition/images/icon5.png, themes/thm_ambition/images/slide_bg.jpg, themes/thm_ambition/images/video_btn.png, themes/thm_ambition/images/back_top_bg.png, themes/thm_ambition/images/slide3_bg.jpg, themes/thm_ambition/images/icon1_h.png, themes/thm_ambition/images/slide1_h1_bg.png, themes/thm_ambition/images/zoom.png, themes/thm_ambition/images/slide1_bg.jpg, themes/thm_ambition/images/icon1.png, themes/thm_ambition/images/slide5_bg.jpg, themes/thm_ambition/images/icon2_h.png, themes/thm_ambition/images/team_soc_icons.png, themes/thm_ambition/images/icon6.png, themes/thm_ambition/images/effect_2.png, themes/thm_ambition/images/team3.jpg, themes/thm_ambition/images/slide7_bg.jpg, themes/thm_ambition/images/tab_img1.jpg, themes/thm_ambition/images/tab_img2.jpg, themes/thm_ambition/images/icon3.png, themes/thm_ambition/images/icon4.png, themes/thm_ambition/images/team2.jpg, themes/thm_ambition/images/bottom_center_bg.png, themes/thm_ambition/images/icon3_h.png, themes/thm_ambition/images/icon5_h.png, themes/thm_ambition/images/video_icon.png, themes/thm_ambition/images/contact_icon.png, themes/thm_ambition/images/logo.png, themes/thm_ambition/images/icon2.png, themes/thm_ambition/images/portfolio/1.jpg, themes/thm_ambition/images/portfolio/5.jpg, themes/thm_ambition/images/portfolio/6.jpg, themes/thm_ambition/images/portfolio/4.jpg, themes/thm_ambition/images/portfolio/3.jpg, themes/thm_ambition/images/portfolio/2.jpg, themes/thm_ambition/images/portfolio, themes/thm_ambition/images/icon6_h.png, themes/thm_ambition/images/team1.jpg, themes/thm_ambition/images/about_img1.jpg, themes/thm_ambition/images, themes/thm_ambition/description.txt, themes/thm_ambition/fonts, themes/thm_ambition/js/carousel/jquery.mousewheel.min.js, themes/thm_ambition/js/carousel/jquery.touchswipe.min.js, themes/thm_ambition/js/carousel/jquery.caroufredsel-6.2.0-packed.js, themes/thm_ambition/js/carousel, themes/thm_ambition/js/js.js, themes/thm_ambition/js/jquery.easing.1.3.js, themes/thm_ambition/js/bootstrap.js, themes/thm_ambition/js/jquery.prettyPhoto.js, themes/thm_ambition/js/waypoints.min.js, themes/thm_ambition/js/jquery.stellar.min.js, themes/thm_ambition/js, themes/thm_ambition

# 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.4.43

# PHP Extensions
bcmath, bz2, calendar, cgi-fcgi, Core, ctype, curl, date, dom, ereg, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, imagick, imap, intl, ionCube Loader, json, libxml, mbstring, mcrypt, mhash, mssql, mysql, mysqli, odbc, openssl, pcre, PDO, pdo_mysql, pdo_sqlite, Phar, posix, pspell, Reflection, session, SimpleXML, soap, sockets, SourceGuardian, SPL, sqlite3, standard, tidy, tokenizer, wddx, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend Guard Loader, 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 - 256M
post_max_size - 64M
sql.safe_mode - Off
upload_max_filesize - 64M
mssql.max_links - Unlimited
mssql.max_persistent - Unlimited
mssql.max_procs - Unlimited
mssql.textlimit - Server default
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
session.cache_limiter - <i>no value</i>
session.gc_maxlifetime - 1440
soap.wsdl_cache_limit - 5

Browser User-Agent String

Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0

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.