By heleng on
Hi,
I am trying to copy a Drupal site. I exported the database and am trying to import it into a new database but I get the following error
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.
I know that it is something to do with the PHP size needing to be increased somewhere. But I am not sure what it is that I need to incerase and where I will find this.
Comments
Hi, You're probably refering
Hi,
You're probably refering to the upload_max_filesize (see http://www.radinks.com/upload/config.php for an explanation) in the php.ini file.
Regards, Gerard
Yeah, I had to also change
Yeah,
I had to also change the memory_limit and post_max_size too. Apparently the upload_max_filesize has to be smaller than these two entries. Thanks for your help