Jump to content

execute time limit for php file...


tony s

Recommended Posts

case is:
i have large csv-file (about 41.500 rows). and i need to transfer it to database, now the problem is that only get about 37.600 rows to the db. i'm thinking that the main reason is the time limit for executing php-file. [i](30 sec. or so)[/i]
Now is it possible to use some php function to extend the time limit?
Link to comment
https://forums.phpfreaks.com/topic/4308-execute-time-limit-for-php-file/
Share on other sites

Yes, it is possible to extend the max execution time of a script, but alternatively, how about one script that parses your data in blocks. It is just a thought, but it will keep you from executing your script for a long period of time.

for instance create the script to copy the first $x number of rows then

head("Location: ".$_SERVER['PHP_SELF']."?n=".$num); // $num is the beginning of your next block of x rows

Then you are back on the same page except now you have $_GET['num'] to tell you where to start to copy rows $num through $num + $x to your database.

Make it continue to use head() until you run out of entries. Just make sure there is no output to the browser or you can't send headers. This is just one possibility that came to mind since your server may not allow you to extend your timeout on execution. Your server may specifically restrict it because of the obvious effects it has on the server. They may not like it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.