TerminalAddict
New-
Re: Including an external php function (Vanilla 3.3)
nevermind .. I figured it out . .pretty simple really :O {php} my_function(); {/php} (View Post)1 -
Re: Updated nginx docs
ok, after lots of trial and error here is what works in nginx conf location @vanilla { # rewrite ^ /index.php$uri last; rewrite ^/(.+)$ /index.php?p=$1 last; } and location ~* \.php(/|$) { # rewrite … (View Post)2