How to submit a button automatically after every scheduled hours?

You were on the right track with the second try. Put this is functions.php, or wherever: if (!wp_next_scheduled(‘fetch_webcategories_hook’)) { wp_schedule_event( time(), ‘hourly’, ‘fetch_webcategories_hook’ ); } add_action ( ‘fetch_webcategories_hook’, ‘fetch_webcategories’ ); It’s not quite a real hourly schedule because somebody has to visit the site to trigger it, so if you have VERY low traffic it … Read more

weird Internal Server Error – no error log produced

I’ve found this question which describes the same issue i’m facing. The accepted solution didn’t work for me, but after a bit more research I’ve found this solution from WPML. I’ve noticed that after calling the endpoint the .htaccess was getting rewritten, this part: <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule … Read more