Log in

View Full Version : Plugin Time limit


Charuvils
08-30-2007, 04:34 PM
How can i increse the plugin time limit ...??

Wayne Luke
08-30-2007, 05:18 PM
What do you mean?

Charuvils
08-31-2007, 10:34 AM
I was installing the VBTT 3 PHP torrent tracker .. when i upload the product.

it's giving me the following error -

Fatal error: Maximum execution time of 30 seconds exceeded in /home/basilla/public_html/admincp/plugin.php(1941) : eval()'d code on line 181

So that's why i asked .. how to increase the maximum time limit of plugin execution from 30 seconds to higher

Dismounted
08-31-2007, 11:16 AM
That's a PHP configuration setting, not a vBulletin one. You should find and edit your PHP configuration (php.ini). You will not be able to do this if you are on a shared server.

Also, anything script that takes longer than 30 seconds (except uploads) is a serious problem. It's usually caused by inefficient coding.

toolmanwill
09-04-2007, 11:15 PM
it snot a matter of inefficient coding but they are trying to generate mass amounts of passkeys for use with the tracker. Is just an issue of too many users to generate all those keys in 30 sec

on some sites i've installed to it takes upwards of 5 min to generate 32 char random passkeys for 10,000+ members

Wayne Luke
09-05-2007, 12:36 AM
it snot a matter of inefficient coding but they are trying to generate mass amounts of passkeys for use with the tracker. Is just an issue of too many users to generate all those keys in 30 sec

on some sites i've installed to it takes upwards of 5 min to generate 32 char random passkeys for 10,000+ members
They could do this in a paged format after installation to prevent this from happening. Just like update counters works in the standard vBulletin. Would simply be more coding for the hack author though.

toolmanwill
09-05-2007, 11:30 AM
yeah more coding for me so i didnt do it, but it looks like i will have to.