Well, my site seems to work well and the gallery is working great.
But it just that the warning keep coming up every time I enter my site.

How do I fix the thing or how do I just remove the warning?
I'm new about this whole things. ^^"

Thanks for ur helps!

Comments

mattyoung’s picture

set_time_limit() require safe_mode=off in php.ini. If you have access to php.ini, set it.

I see gallery2 calls set_time_limit() unconditionally. Drupal does it this way:

  if (!ini_get('safe_mode')) {
    set_time_limit(240);
  }

This avoids this sort of problem if safe_mode=on

badseabook’s picture

Now it's gone. Thanks!! XD