Jump to content

thebear98

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

thebear98's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, I am migrating a site from PHP 4.4.6 on Windows Server 2003 and IIS6, to PHP 5.3.6 on Windows Server 2008 R2 and IIS7.5. I am testing the new site with an Oracle query that is intended to fail. IIS6 site catches the Oracle error and prints something useful for the users using code like this: $stmt = ociParse($conn,$sql); ociExecute($stmt); $oraError = ociError($stmt); IIS7.5 site, using the same PHP, returns a 500 to the client browser with the following info (never getting to the ociError() call): Module FastCgiModule Notification ExecuteRequestHandler Handler PHP_via_FastCGI Error Code 0x00000000 Requested URL http://<myserver>:80/Doc Control.Utilities.Drawing Info.php Physical Path D:\wwwroot\Doc Control.Utilities.Drawing Info.php Logon Method Anonymous Logon User Anonymous Is there a setting I am missing that would disallow the Oracle error from exiting the script, and let the handler handle it? thanks, Barry
  2. Hi, I'm migrating a site from PHP4 (4.4.6) to PHP5 (5.3.5), am replacing all short open tags, and have many '<?=' opening tags to migrate as well. I saw a reference in the online docs about an equivalent '<?php=' tag, but it doesn't appear to work. What is the best way to 'find and replace' a PHP4 snippet like '<?= $var ?>' into a PHP5, non-short-open-tag equivalent? Thx, Barry
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.