PDA

View Full Version : mysql


HL-Hosting
08-06-2003, 07:36 AM
a client of mine wanted to put up a database that was 7 Mb but the mysql couldn't handle it...
what could be done about that?


Thank You,
Roman

The Prohacker
08-06-2003, 08:20 AM
If you mean uploading via phpMyAdmin.. This is normal.. Apache can only handle uploads up to 2mb.. After that PHP will normally timeout the upload..

The best course to take is have the client upload the mysql dump via FTP... And you log into the server via shell and add the information by hand:

mysql -u dbusername -p databaeName < /home/user/path/to/dump.sql

HL-Hosting
08-06-2003, 08:21 AM
Originally posted by HL-Hosting
a client of mine wanted to put up a database that was 7 Mb but the mysql couldn't handle it...
what could be done about that?


Thank You,
Roman

Thanks