3 different times on my WordPress website

In short, the server shows 13h (correct in current time in São Paulo DST), but PHP shows15h and WordPress shows 12h. This is intentional, and needs additional clarification, but to expand you have: The server local time UTC timestamps Localised WP time These needs to be separate, e.g. if I host a Japanese website on … Read more

Log Author Actions

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/

Can’t access WP site over WiFi network

yes, it because wordpress use the server address from database get_option(‘siteurl’) and get_option(‘home’), so if you access the wordpress from IP Address the assets (js and css) will still loaded from localhost/wp/ that mean from 127.0.0.1 not the 10.0.0.1 the simple way to get dynamic url for your wordpress is defining the site_url and home_url … Read more

Admin-ajax.php 500 error when Add to menu is clicked in admin

If you have problem with: POST wp-admin/admin-ajax.php 500 in WP define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ ); in wp-config.php max_input_vars = 6000 ; in php.ini and deactivate all plugins and active one by one until you see which plugin is causing problem. (Ps. have the great chance to be the Yoast SEO plugin the problem)