From: [EMAIL PROTECTED] Operating system: HPUX 11.11 PHP version: 4.0.6 PHP Bug Type: OCI8 related Bug description: Call to undefined function: ocilogon() in DB/oci8.php
I write the script as following... <html><head><title>PHP Test</title></head> <body> <?php require_once "DB.php"; echo "Connect to Oracle Database..."; $dbh = DB::connect("oci8://system:manager@test"); ?> </body> </html> But it show the error message when I try to run it. Connect to Oracle Database... Fatal error: Call to undefined function: ocilogon() in DB/oci8.php on line 86 and I open the file name is "oci8.php" and find the function "ocilogon()" but this function not found, so I try to find it in "common.php" file but not found too, and I try it in "DB.php" file but not found too..... Where ocilogon() ?. The database util such as DB.php, oci8.php, and etc.. are enclose with php-4.0.6 package.. -- Edit bug report at http://bugs.php.net/?id=15475&edit=1 -- Fixed in CVS: http://bugs.php.net/fix.php?id=15475&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=15475&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=15475&r=needtrace Try newer version: http://bugs.php.net/fix.php?id=15475&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=15475&r=support Expected behavior: http://bugs.php.net/fix.php?id=15475&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=15475&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=15475&r=submittedtwice -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php