0

I am getting this error enter image description here while migrating my site from

wordpress to drupal 7 using migration tool.

how to resolve this ?? I have tried updating the drupal_set_time_limit() to some bigger value(1800) in /includes/locale.inc but it didn't help.

Thanks in advance

Community
  • 1
  • 1
Sam
  • 925
  • 1
  • 12
  • 28

1 Answers1

1

You probably have to increase the timeout value in your php.ini file. Drupal can't set the limit higher than PHP's maximum.

Graham
  • 667
  • 3
  • 9
  • Could there be another limit set in an .htaccess file? – Graham Dec 04 '13 at 17:02
  • nope and why would there be a timeout limit in **.htaccess file** ?? – Sam Dec 04 '13 at 17:16
  • @Sam, there are several places to set the time limit. http://stackoverflow.com/questions/7739870/increase-max-execution-time-for-php has a good overview – Graham Jan 02 '14 at 19:18