Cannot log in to the admin, no error message [closed]

Try to disable the plugins via the database running this query in your MySQL: UPDATE wp_options SET option_value=”a:0:{}” WHERE option_name=”active_plugins”; Also, try to enable error debugging in your wp-config.php file adding this line: define( ‘WP_DEBUG’, true ); Also, could you paste a copy of your .htaccess file?

How can I use wordpress functionality outside of WP framework

It’s just simple, same reply from Error in WP_update_post but in your case there is small change. Just use wp-load.php as include. No need to include post.php. Once the wp-load.php file is included, the entire wealth of WordPress functions is provided to you. For pull the recent post, you need to use wp_get_recent_posts() wordpress function … Read more

Website pagespeed problem

For WordPress Website optimization you should take a look at: https://codex.wordpress.org/WordPress_Optimization I took a look at your pagespeed report and the main thing there are the images you are using. There are many plugins that can optimize them for you. I like this one in particular: https://wordpress.org/plugins/imsanity/ As per the server cache, you can either … Read more

Debugging: How to determine which plugin is throwing error in plugin.php

In your wp-config.php make sure to include; define( ‘WP_DEBUG’, true ); define( ‘WP_DEBUG_DISPLAY’, true ); Sometimes your environment will do a better job at outputting the stack trace. If that doesn’t work, you can go that line in WP core and add; $backtrace = debug_backtrace(); print(‘<pre>’); print_r ( $backtrace ); That should give you a … Read more

Need help getting a function to function

Your code is based on jQuery and you are including it to a PHP file. So you need to call it between <script></script> tag and obviously either you must end and start PHP tags before <script> and after </script> or echo the full script. Now come to how you are gonna execute the code. You … Read more

Website Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘Wppr_Public’ does not have a method ‘amp_support’

The warning message is pretty clear. You’re passing method amp_support from class Wppr_Public as callback, but this class doesn;t have such method… So how to fix it? You should find that class and look for this function. Maybe it’s some typo or that method changed its name or moved to another class or something like … Read more