Troubleshooting: Several plugins deactivate at random times
Troubleshooting: Several plugins deactivate at random times
Troubleshooting: Several plugins deactivate at random times
There’s many ways to achive these. If you know php than you can do regular expression to find in text images and insert title before theme , but you need to write it somewhere to pull from like <img src=”https://wordpress.stackexchange.com/questions/173936/..” title=”My title” /> and then in php find , take title=”” and insert before image … Read more
404 error when opening Singe Portfolio pages
Since this actually seems to be a server related issue, it would be better suited for stackoverflow.com, or a stack exchange that is dedicated to networking. But, I’ll do my best to help here. If the CURL is showing connection refused, the connection is getting blocked before it can even load WP. You could prove … Read more
The problem is not with the “select top 0”, but the way the query is changed behind the scenes. Even if you change it to “select * from…”, it will break. I managed to get this working by going to “wp-includes\query.php” file, and then removing the $limits variable from the query. This is not the … Read more
Setting the max_execution_time = 300 inside my php.ini resolved it.
There could be any number of problems with your site, so it’s really hard to say what the real “problem” is. I’d suggest first checking out your console for http request errors (see if there are any files not transferring), and also try logging in to see if anything changes. Based on what you’re describing, … Read more
There are a few things you can do: Use the Debug Bar plugin http://wordpress.org/extend/plugins/debug-bar/ Set WP_DEBUG to true in your wp-config.php file if you are looking for problems in a theme or plugin I created a plugin that allows you to dump any variable into the Debug Bar plugin: http://wordpress.org/extend/plugins/kint-debugger/ You should look at the … Read more
I’d recommend disabling some plugins first, and going from there. It could very well be your wp-flattr-button that’s causing the issue. In the case, it seemed to be the ShareThis plugin.
To debug a hook look into the associated actions and filters. They are listed in $GLOBALS[‘wp_filter’]. Sample plugin for debugging <?php # -*- coding: utf-8 -*- /** * Plugin Name: T5 Debug Hook * Description: Adds a list of registered filters and action for a hook. Call a page with <code>?hook=NAME</code> to see it. */ … Read more