No data was received to import. - phpMyAdmin Problem after custombuild update

Aviv.A

New member
Joined
May 14, 2011
Messages
6
Hello..
i Ive updated custombuild and phpMyAdmin and Installed Jailed Shell (i did ./build all)
Note: before the custombuild update i didn't seem to have any problems , everything was ok..
when i get in to phpMyAdmin and i Import an Database this error message comes:
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.
P.S: i have tried to upload with DirectAdmin and its says the DB uploaded Successfully but nothing was uploaded, i only upload .sql file with 200KB.
i have tried everything! i have searched all day for this problem and nothing seems to solve it..
i really need help at this.. i am really tired and my customers are waiting ...
Please...
 
Hello,

I'd recommend installing a fresh php.ini in case there are syntax errors causing the upload_max_filesize option is being ignored (or is broken itself).

Code:
cd /usr/local/directadmin/custombuild
tar xvzf php-5.2.17.tar.gz
cd php-5.2.17
cp -f php.ini-dist /usr/local/lib/php.ini
John
 
P.S: its an Open_basedir problem

i want to enable open_basedir
open_basedir = On;
open_basedir = /var/www/html/;
that is what i did , and this is the problem,
i want to disable open_basedir on only one directrory..
can someone solve my problem?
WHATS WRONG HERE???
 
Solved it

sorry for double post...
problem solved...
i fixed it with that line in httpd.conf
<Directory /var/www/html>
php_admin_value open_basedir none
</Directory>
Thank u All..
Goodbye!
 
Back
Top