mysql

HL-Hosting

Verified User
Joined
Jul 25, 2003
Messages
20
Location
New York City
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
 
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
 
Back
Top