
mike solomon - 2011-11-18 16:25:01
I tried to use this class but I am getting the error
Fatal error: Call to a member function arg() on a non-object in /home/www/joomla/ivyadmin/jumi/compare.php on line 27
Just to test it I replaced my file with example.php and get the same error Fatal error: Call to a member function arg() on a non-object
My code is
require_once("external.class.php");
$stream = External::program("sdiff")
->arg("-s")
->arg("-w 200")
->args(array("${master}${file}","${slave}${file}"))
->run();
print $stream;
Any help will be much appreciated