Skip to content

Instantly share code, notes, and snippets.

View croxton's full-sized avatar
💭
Up to my elbows, as usual

Mark Croxton croxton

💭
Up to my elbows, as usual
View GitHub Profile
@croxton
croxton / gist:94e163488ca76102e8aa
Last active April 8, 2018 02:23
Stash caching example 2
{!-- ============================================================================ --}
{!-- CONTENTS OF pages/index --}
{!-- ============================================================================ --}
{exp:stash:cache context="{global:env}" bundle="pages" replace="{global:stash_cache_replace}"}
{!-- embed the base layout --}
{stash:embed:view}
{!-- extend the content block in the 'view' template with a custom layout --}
@croxton
croxton / gist:e21f43549bbe6de4527b
Last active April 8, 2018 02:23
Stash caching example 1
{!-- ============================================================================ --}
{!-- CONTENTS OF pages/index --}
{!-- ============================================================================ --}
{exp:stash:cache context="{global:env}" bundle="pages" replace="{global:stash_cache_replace}"}
{!-- embed the base layout --}
{stash:embed:view}
{!-- capture data --}
@croxton
croxton / editthis
Created December 5, 2014 17:37
Edit this - escaping from Stash caching
{stash:nocache}{exp:edit_this:entry entry_id="{entry_id}" channel_id="{channel_id}"}<a href="{edit_this_url}">Edit</a>{/exp:edit_this:entry}{/stash:nocache}
{exp:channel:entries channel="explore" disable="categories|category_fields|member_data|pagination" }
<header class="wrapper">
<div class="row">
<div class="large-24 columns">
<h1>
{title}
</h1>
</div>
</div>
</header>
@croxton
croxton / stash_conditionals.md
Last active April 8, 2018 02:24
Stash and conditionals in EE 2.9

With Stash you have always been able to create global variables and evaluate them in the same template using if/else conditionals:

{exp:stash:set_value name="var" value="cheese" type="snippet"}

{if var == "cheese"}
  	We have cheese!
{if:else}
  	Where's the cheese, gromit? 
{/if}
@croxton
croxton / stash_embed_snippets.md
Last active April 8, 2018 02:24
Stash embeds as snippets

Stash embeds with the process="start" parameter can be used to include pre-parsed or unparsed template tags in your template before any other tags or variables are parsed. This can be a more flexible alternative to EE's built-in snippet functionality.

It makes sense to combine snippets that are used globally into a single file so that they are included with the minimum of overhead. Call it somewhere in your template:

{!-- template at /stash_templates/snip/global.html --}
{stash:embed:snip:global process="start"}

Inside the stash embed:

{!-- unparsed snippets --}

@croxton
croxton / cpanel_vps_eecms_config.md
Last active September 5, 2021 23:34
Battle-tested cPanel VPS server configuration for medium traffic ExpressionEngine websites

"Medium traffic" = able to handle around 50 concurrent users on average.

If you want to handle 100+ concurrent users with the same modest hardware see the Varnish section below.

VPS

  • 4096 MB memory
  • 125GB SSD
  • 4 CPUs
  • Cpanel
<?php
* --------------------------------------------------------------------
* CUSTOM CONFIG VALUES
* --------------------------------------------------------------------
// enable file sync for previews
$assign_to_config['stash_file_sync'] = TRUE;
@croxton
croxton / gist:cea020d5e9c5ee77192c
Last active April 8, 2018 02:23
Related entries fragment inside cached
{exp:stash:cache}
{exp:channel:entries limit="1" ...}
{!-- related entries --}
{stash:nocache}
{exp:stash:set_list
name="st_fbox_rels"
context="@URI"
bundle="related_items"
@croxton
croxton / gist:9638877
Created March 19, 2014 10:11
EE .gitignore
# Images #
##########
/public_html/images/captchas/*
/public_html/images/made/*
/public_html/images/remote/*
/public_html/images/member/*
/public_html/images/smileys/*
/public_html/images/avatars/uploads/*
/public_html/uploads/*