php - 30 seconds response time just in GET request, why? -
i trying add rss feeds on wordpress site. plug-in called wp rss multi-importer, , based on simplepie.
i've tested my feed url in simplepie demo website , works. fast.
however, request page contains feed takes 30 seconds! , fails sometimes. doesn't happen on other pages. if don't mind, attached website page i'm testing out here.
edit: forgot website hosted in computer running in wamp.
if have ftp/cpanel than,
add set_time_limit(0); @ top of wp-config.php.
this set the maximum execution time.
0 means unlimited, if want specify custom timeout, add numbers in seconds, eg:- set_time_limit(60); means 60seconds.
Comments
Post a Comment