WordPress 4.1 update broke theme

Most of these errors are caused by damaged or corrupt theme files. Upload theme files/directory again and you will be fine. Strange things happen sometimes, that’s why it’s always recommended to keep a backup of your WordPress files and database before updating.

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’); } }

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>

Doubts about how to migrate WordPress from local to online server using Search and Replace Tool script

What you need to do is simple. Place the file in the root of the website. Access this file via web browser. For example. type – www.yoursite.com/searchreplacedb2.php In the page, enter your database details, including username and password. Also, specify your localhost http address, which in most cases is localhost For example, in my testing … Read more

WP installed is asking to install if typed domain.com

Adding this lines to .htacces solved the redirect problem to wp-admin/install.php if typed the domain.com without the www even if the WP was completely installed and settings configured properly. RewriteCond %{HTTP_HOST} ^www.domain.com/rus [NC] RewriteRule ^$ /index.php [NC,L] Now I can continue with rusian translation. The main problem was a defective plugin, which was blocking the … Read more

Can figure out how to get wordpress to go .com not .com/directory

try Install WordPress in a subdirectory, such as /2012. In your root folder (not the subdirectory folder), download and open your .htaccess file. Add the following to your .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} ^(www.)?YourDomain.com$ RewriteRule ^(/)?$ blog [L] In the above code, change the “YourDomain.com” value to your root domain. In the above code, … Read more