[EMAIL PROTECTED] wrote:
i am moving my webserver from a windows box to a linux box with php ver
5.2.0 and noticed i am having a problem with a php file(code below). i
thought it was a module i was missing but looking at the php config
file all the same modules are loaded. allow_url_fopen is enabled. what
would i be missing in the php install that would make this code not
work correctly from one machine to the other.

You need to narrow the problem down a little bit..

Anything show up in the webserver error logs?


Turn up error reporting:

error_reporting(E_ALL);

and display errors:

ini_set('display_errors', true);

Place both of those at the start of the script and tell us what happens then.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to