x00
MVPx00 MVP
Reactions
-
Re: Dashboard has gone haywire after enabling RewriteUrls
you should use # forum location location / { try_files $uri $uri/ @forum; } location @forum { rewrite ^(.+)$ /index.php?p=$1 last; } # protect uploads directory location ~* /uploads/.*\.(html|htm|sht… (View Post)1 -
Re: MySQL CPU Usage off the charts!
Make sure you have installed php-memcahed not php-memcache enable caching in vanilla: $Configuration['Cache']['Enabled'] = TRUE;$Configuration['Cache']['Method'] = 'memcached'; that is all. You can c… (View Post)3 -
Re: MySQL CPU Usage off the charts!
I is usually large, activity is mostly crap you can purge it periodically. in crontab add this 00 3 * * * mysql -u username -p pass forumdb -e "DELETE FROM GDN_Activity WHERE ActivityTypeID NOT … (View Post)1 -
Re: No Captcha ReCaptcha 0.1.6b breaks registration of V 2.2
To be honest it would be probably be best doing a pull request, rather than using a plugin. If anyone wants to do it. The http://www.google.com/recaptcha/api/verify api has been superseded by https:/… (View Post)2 -
Re: Wordpress Vanilla Forum
css in design/custom.css or http://vanillaforums.org/addon/cssedit-plugin .SignOutWrap { display:none!important;} (View Post)1