Trying to increase WP Memory Limit

Try adding to wp-includes/default-constants.php You’ll probably see the default values of 40M starting around line #20, change these values. My setup is as follows: // set memory limits if ( !defined(‘WP_MEMORY_LIMIT’) ) { if ( is_multisite() ) { define(‘WP_MEMORY_LIMIT’, ‘256M’); } else { define(‘WP_MEMORY_LIMIT’, ‘256M’); } }

Should I go for Multisite or separate WP Installation?

Generally choosing separate WP installations means that your websites won’t have anything in common. Choosing Multisite installation enables you some sort of centralization. Your blogs usually are separate (eg. different domains / themes), but they may share something. According to your description you might want consider a single installation. It is possible to create the … Read more

After being hacked Fatal error: Call to undefined function get_header() in 404.php on line 1

“Generally this happens when someone has mistakenly put index.php from a theme in the WP install folder, where it overwrites the index.php that is the main WordPress file. Download WordPress again, and take the one file, index.php from its root folder, replacing the file you now have as index.php It sometimes means someone has loaded … Read more

Moving from one WP site to a new WP site incrementally

Have you thought about doing this with per-url redirects? I found something promising here: http://www.phpin24.co.za/apache/apache-change-documentroot-for-a-specific-url/ It seems to boil down to this (copied from the linked page): <VirtualHost *:80> ServerName www.phpin24.co.za DocumentRoot /var/www/html/phpin24 AliasMatch ^/enquire-now/thankyou/(.*) /var/www/html/other-code/app/webroot/$1 AliasMatch ^/enquire-now/(.*) /var/www/html/other-code/app/webroot/$1 ErrorLog /var/log/httpd/phpin24/phpin24_error_log CustomLog /var/log/httpd/phpin24/phpin24_access_log combined <Directory /var/www/html/phpin24/> Options FollowSymlinks AllowOverride All FileETag none </Directory> </VirtualHost>