WordPress FTP via admin panel slow
Is it a shared hosting? Try rising the php memory limit. That will make wordpress admin go faster and your blog!
Is it a shared hosting? Try rising the php memory limit. That will make wordpress admin go faster and your blog!
Go to the admin panel and navigate to Settings>Media and see what it says in the Store uploads in this folder dialog box. You can try deleting whatever is in it and click save. WordPress will then try to use the default wp-content/uploads/images/2012… folders. If that doesn’t work I’d FTP to my server and check … Read more
To add to Peter’s comment, it is very much depending on the technology you use which in turn might depend on the software architecture. If you can create a condition in which you can serve cached pages 99% of the time (by using caching plugins or varnish in front of your site) then you will … Read more
Just for sharing my experience to others: I have main site with domian.com and want to subdirectory domain.com/blog reverse proxy to blog.domain.com which is a wordpress with nginx! so this is how things work for me: HTTP version: 1- in domian.com nginx config set /blog like this: listen 80; server_name domain.com www.domain.com; location / { … Read more
This error is most often related to the server configuration! Contact your hosting company and ask the hosting support to check the following points: The server is running a recent version of PHP and the cURL library. Increase PHP Memory Limit settings. Ask your web host if there is some limitation with wp-cron, or if … Read more
The database still has the domain as the URL to use so it will always redirect you to the old server. The best solution is to change your hosts file. 123.456.789.0 yourdomain.com By using the NEW IP address you are forcing your computer to use the new server when going to yourdomain.com. That way you … Read more
I am assuming that you have both the Linux site and the (old) Windows site using the same database, and I am also assuming that the Linux server is operating currently on a numeric IP only until the migration. If that is the case, you do not want to alter the database at all– not … Read more
There is a plugin called Audit Trail. It will pretty much log all actions for your wordpress backend such as page creation / deletion, post creation / deletion, logging in / logging out. You can find it here: http://wordpress.org/extend/plugins/audit-trail/
To make sure that the index.php will be loaded first add the following line to your .htaccess: DirectoryIndex index.php index.html This tells Apache to ignore an index.html if an index.php exists.
I wouldn’t worry too much about it – just download all databases and files. And if you’re uploading them to the new server, change the wp-config files and run the following queries on the databases: UPDATE wp_options SET option_value = replace(option_value, ‘http://www.example.com’, ‘http://www.newurl.com’) WHERE option_name=”home” OR option_name=”siteurl”; UPDATE wp_posts SET guid = replace(guid, ‘http://www.example.com’,’http://www.newurl.com’); UPDATE … Read more