Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a site hosted with 1and1 - who are useless! For some reason the backup scripts they provide no longer work and they can't provide me with an answer! So I thought I'd write my own, this is my code:

$command = "mysqldump -u [usernameXXXX] -p [passwordXXX] [dbname] > [backupfile.sql]";
 system($commmand);

however I get the following error:

Warning: system() [function.system]: Cannot execute a blank command in /homepages/46/ XXXXXX/htdocs/admin/db_backup.php on line 19

share|improve this question
there are a lot of legs at your commmand! :) – acm Nov 19 '10 at 15:21

1 Answer

up vote 7 down vote accepted

commmand != command

You have 1 extra "m" there

To see if it's throwing any errors, try using

system($command, $output);
echo $output;
share|improve this answer
Cheers for that - I feel so stupid, the problem is nothing is being written to the file? – Mike Sav Nov 19 '10 at 15:22
Are you putting the backup file in brackets like that? Will that work? It's possible that PHP doesn't have permissions to the folder you're trying to write to. I'm not sure what permissions would be needed, but that'd be the first place I'd check. – Webnet Nov 19 '10 at 15:24
I've removed the brackets, the file permission is 644 and the folder permission is 755 is that a problem? – Mike Sav Nov 19 '10 at 15:28
I added the following "chmod("backupfile.sql", 0777);", still nothing... – Mike Sav Nov 19 '10 at 15:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.