0
votes

I was trying to add some RSS feeds on my Wordpress site. The plug-in is called WP RSS Multi-importer, and it is based on SimplePie.

I've tested my feed url in the SimplePie demo website and it works. Very fast.

However, my GET request to the page that contains the feed takes about 30 seconds! and even fails sometimes. It doesn't happen on the other pages. If you don't mind, I attached the website page where I'm testing it out here.

EDIT: I forgot to say that the website is currently hosted in my computer running in WAMP.

1
This is your problem. EDIT: I forgot to say that the website is currently hosted in my computer running in WAMP.user1642018
So that's the problem? Everything else works fine in WAMP, I though it was strange.whitenoisedb
i am not completely sure., but when i tried accesing your site, it took forever and didnt load either. try hosting your files on some small vps.user1642018
i've changed it! please try here: farmaciadelpueblo.sytes.net/fdp/temas-de-saludwhitenoisedb

1 Answers

0
votes

If you have FTP/Cpanel than,

add set_time_limit(0); at the top of wp-config.php.

This will help you to set The maximum execution time.

0 means Unlimited, If you want to specify your custom timeout, that add numbers in seconds, eg:- set_time_limit(60); means 60seconds.

More Information..