Jump to content

voidstate

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male

voidstate's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Sorry for the late reply, all. Been off work... Use a phpinfo(); statement and see what the setting actually is to make sure it was actually turned on. Also, make sure that error_reporting is set to E_ALL. Yes, I set the following in PHP.ini: Both showed up fine in phpinfo() dump. And it defintitely worked because when I first looked at it, the log file showed a different error with the php.ini file that I quickly resolved. What really confuses me is why it's loading up fine from one place but giving 500 errors from others.
  2. We have recently spent over a month upgrading our internal CMS to PHP 5. We tested the changes we had to make for PHP 5 compatibility thoroughly on a development machine. Then we put the PHP 5 version of the CMS onto our remote production web server, and tested it again. No problems. This week we went live. Almost immediately, customers began complaining that their site was either coming up blank or showing a HTTP 500 Internal Server Error. However, from our offices we just couldn't get any of the sites to crash. Eventually, we managed to replicate the error by using RDC to browse from a remote machine. Here's what we've noticed: 1. Maybe 19 out of 20 times you get the HTTP 500 Internal Server Error when entering the address of the CMS. 2. Once you get the CMS to load, if you navigate between the pages, they load fine every time. 3. From our company office, the CMS loads every time, regardless of whether you're entering the URL or following a link. 4. It makes no difference which browser is used. We are running PHP 5.2.6 on IIS 6 and Windows 2003 Server. The database backend is MSSQL Server. We use ISAPI Rewrite for pretty URLs. Here are the headers returned by the server: HTTP/1.x 500 Internal Server Error Connection: close Date: Thu, 21 Aug 2008 15:30:05 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET, PHP/5.2.6 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Type: text/html What on earth is going on? There is nothing in the Windows event logs. I turned on PHP error logging but the file remains empty. Is this an IIS problem? How can I get more information on what's causing the errors? Anyone seen anything like this before? Can anyone shed any light at all on this problem? Thanks in advance Fergus
  3. Is it possible to have a variable number of parameters passed to a method? function myMethod( $a, $b ) { // i want to check for $c, $d, $e, etc... here } Cheers voidstate
  4. Hi I want to pass a variable to a function and have that function add it to an array, using the variable's name (before it was passed) without the dollar sign as the key. So... $data = 'someString' would be added to my varArray array as: varArray( 'data' => 'someString' ) while... $moreData = 'anotherString' would change the array to: varArray( 'data' => 'someString' , 'moreData ' => 'anotherString' ) and so on. Is it possible to access the name a cariable had before being passed? Cheers voidstate
×
×
  • 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.