|
That's not a limitation of phpMyAdmin, that is a serverwide PHP setting and you will hit that limit with any PHP script.
How is the file generated? Try compressing the file or gzipping the file when it is created. This should make the file a bit smaller.
Another option would be to manually FTP the file to the server and have a PHP script that processes the file at that point. The txt file is nothing more then a bunch of SQL statements, you can write a script that reads in the file and then executes the statements.
Last edited by Anacrusis; 01-11-2006 at 11:15 AM..
|