• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved import .sql to big

HappyFeet

New Member
Joined
Nov 8, 2012
Messages
244
Reaction score
3
Location
Netherlands
hee,
I want to import my schema.sql in xampp but my file is 3000 kb. max upload is 2000kb... how can I raise it?
 
1. Compress the file in like zip and upload the zip file.

2. Edit the maximum accepted filesize.
You will find this in your php.ini
Code:
post_max_size = 8M
upload_max_filesize = 2M

Change it to something like this
Code:
post_max_size = 15M
upload_max_filesize = 15M
If thats too small, then make it even higher then 15M.

3. Open the SQL file and import it manually (abit more tricky).
 
1. Compress the file in like zip and upload the zip file.

2. Edit the maximum accepted filesize.
You will find this in your php.ini
Code:
post_max_size = 8M
upload_max_filesize = 2M

Change it to something like this
Code:
post_max_size = 15M
upload_max_filesize = 15M
If thats too small, then make it even higher then 15M.

3. Open the SQL file and import it manually (abit more tricky).
great. thankyou
 

Similar threads

Replies
1
Views
650
Back
Top