![]() |
Admin 10/19/2011 |
If you use PHPRunner 5.3 and your web server runs under Windows you can try to modify include/dbconnection.php file. See my changes in bold. function db_query($qstring,$conn) { global $strLastSQL,$dDebug; if ($dDebug===true) echo $qstring." "; $strLastSQL=$qstring; try{ $conn->CommandTimeout = 0; return $conn->Execute($qstring); } catch(com_exception $e) { trigger_error($e->getMessage(),E_USER_ERROR); } } |