Posted by Janwillem Borleffs on 09/04/05 23:20
no@emails.thx wrote:
> Now, the problem is, I don't have access to php.ini so I can't change
> anything there AND if I use set_time_limit() I get "Warning:
> set_time_limit(): Cannot set time limit in safe mode".
>
> Am I screwed - or is there a way around this?
>
When Apache is used as the webserver and you are allowed to use .htaccess
files, you might be able to override this restriction with such a file in
your webroot containing the following:
<IfModule mod_php4.c>
php_value set_time_limit 60
</IfModule>
When using PHP5 change mod_php4.c into mod_php5.c.
JW
[Back to original message]
|