Unable to load Posts list & Getting error 500 error
Unable to load Posts list & Getting error 500 error
Unable to load Posts list & Getting error 500 error
Assuming that www.example.com/site1 is the 1st site (in the root folder site1 folder), and www.example.com/site2 is the second site (in the root folder site2 folder. The easiest way (normally) to clone (or move) a site is to use the excellent WP-Clone plugin to backup and restore the ‘site1’ site to the root. But, you will … Read more
At the place, create a database (with the same name if you wish) and give it the same credentials as the database at the old place. Create a user (with the old credentials) and assign it to the new (empty) database. Then use phpMyAdmin to import your old database into the newly created (but empty) … Read more
For anyone who stumbles across this, the issue lied within my wp_2_options table (the options for my second site within the multi-site). Whereas for the most part you can forego the http:// before your localhost domain, in this table you cannot. This was causing issues when attempting to upgrade the network etc. I hope this … Read more
How to queue API requests with PHP in WordPress?
Are you able to run a copy of the site locally? If so, then it is likely not the codebase. If it doesn’t work, at least you know it is something in the site codebase and not likely an actual server related issue. Was the hosting company able to look at logs. This being a … Read more
I get internal server errors quite often in my everyday coding work if i misspell PHP function names in my code. So try deactivating your plugins and re-enabling one by one.
Sounds like a couple of possibilities 1) an upgrade that may not have completed successfully or fully – try reloading wordpress completely (download and ftp). This has happening to a few folk or 2) a plugin that may not be compatible with new version. For debugging purposes, try deactivating one by one till problem goes … Read more
I found this message from Mark Jaquith, WP lead developer: The WordPress core team is quite aware of this issue, and it is absolutely something that needs to be solved. It is an issue with how the menus are saved. Too much data is passed back. It takes a lot of memory and computation time, … Read more
Looks like you are using one of the hacks to have the same wp-config.php file in development and deployment environments. AS it is noted at the end of that page, the hack were not tested in restricted environments like your. If you are not in development phase anymore then you should change your code in … Read more