WP behind nginx reverse proxy, home page stuck in redirect loop
WP behind nginx reverse proxy, home page stuck in redirect loop
WP behind nginx reverse proxy, home page stuck in redirect loop
Slow search queries with a large database
Apache error log lots of connection_refused
It sounds you want to do something similar as described in this article https://surpriseazwebservices.com/serve-images-from-sub-domain-in-wordpress/. You’ll need to define your upload_url_path as your private server and also update the path of your existing images by running the following query in MySQL. UPDATE wp_posts SET post_content = REPLACE (post_content,’http://yoursite.com/wp-content/uploads/’,’http://img.yoursite.com/’); The steps should all be documented in the … Read more
This really isn’t a WordPress issue. That said, the key error is “open_basedir restriction in effect.” If you’re running your own VPS, you need to learn to configure it. open_basedir restrictions keep scripts in one directory from being able to affect scripts in another directory, which is an important security feature. If one accounts gets … Read more
I would say for a small store stick with the basics, PHP 5.2.4+ and MySQL 5+ some individual plugins may require higher versions of PHP or MySQL. I don’t think you would necessarily need a VPS depending on traffic. My general rule start small, if you grow, great, most host (and all good host) make … Read more
Usually the first step is to make sure there is no problem by changing the theme to Twenty Eleven and running the ‘same steps’ to recreate the problem. Some themes may not be ready for WordPress 3.4.1 as it introduced a lot of theme related changes. So see if there is anything on the WordPress.org … Read more
WP website won’t accept any new content – need dedicated hosting?
Fastcomet support to the rescue! After submitting a ticket with them, they solved everything and now my website is blazing fast once again.
There’s a really basic but broken assumption here: The media library does not display files in wp-content The media library is the same as the posts or pages screen, it’s a list of posts that just shows the posts a little differently. When you upload a file to WP, it creates a post of type … Read more