|
exec("/usr/bin/perl /location/to/rsapi.pl prem /location/to/archive.rar login password");
should work, check your error logs or try running it from command line to see if there is a problem.
make a php file named test.php of just
<?
echo exec("/usr/bin/perl /location/to/rsapi.pl prem /location/to/archive.rar login password");
?>
and do
php test.php
from commandline to see if that works for you.
|