Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WAMP Uploading large File

Tags:

php

I have 2.24MB file size to upload to database, it displays

No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. See FAQ 1.16.

Iam using WAMP server 2.2 with supported versions

Apache 2.2.21
PHP 5.3.8
MySQL 5.5.16

I made the following changes too

C:\wamp\bin\apache\apache2.2.6\bin\php.ini 
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M 

C:\wamp\bin\mysql\mysql5.0.45\my.ini:

max_allowed_packet = 200M 

Could anyone suggest me the option to upload large file.

like image 587
karthik Avatar asked Aug 21 '12 05:08

karthik


1 Answers

THIS IS WHAT U HAVE TO DO!

Go to c:\wamp\alias\phpmyadmin.conf

NOW set php_admin_value upload_max_filesize to 1024M

Bye!

like image 129
marian Avatar answered Oct 16 '22 16:10

marian