Bir drupal sitesinin veritabanını uzak sunucudan kendi makineme taşırken aşağıdaki hatayı aldım.
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.
Çözüm
Windows’ta
C:\MAMP\conf\php5.6.3\php.ini
dosyasında aşağıdaki satırları bulup
post_max_size = 8M upload_max_filesize = 2M max_execution_time = 30 max_input_time = 60 memory_limit = 8M
şu değerlerle değiştirdim:
post_max_size = 100M upload_max_filesize = 100M max_execution_time = 600 max_input_time = 1200 memory_limit = 512M
Çözümü şu stackoverflow cevabından aldım: http://stackoverflow.com/a/23194334/705972