Removed the hardcoded script location, and added some extra debug information

git-svn-id: file:///svn-source/pmgr/branches/invoice_receipt_20090629/site@265 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-07-08 21:33:52 +00:00
parent 7e0d8a9da2
commit 5f0c2463e3

View File

@@ -62,8 +62,11 @@ class AppController extends Controller {
$this->autoLayout = false;
$this->autoRender = false;
Configure::write('debug', '0');
$handle = popen('/website/localhost/public_html/pmgr/build.cmd 2>&1', 'r');
echo "'$handle'; " . gettype($handle) . "\n";
$script = $_SERVER['DOCUMENT_ROOT'] . '/pmgr/build.cmd';
echo "<P>" . date('r') . "\n";
echo "<P>Script: $script" . "\n";
$handle = popen($script . ' 2>&1', 'r');
echo "<P>Handle: $handle; " . gettype($handle) . "\n";
echo "<P><PRE>\n";
while (($read = fread($handle, 2096))) {
echo $read;