tags:

views:

44

answers:

1
A: 

Check Apache's error_log or the PHP log file, if any. Most likely there's an early error in the script. You can also try activating the display_errors and display_startup_errors options in your php.ini (I'm assuming this is a development installation).

Artefacto
nothing related to php in my apache logs and my php log file is emptyhow is there an error in the script if it runs fine on another computer? those are already active in my php.ini
@use You could have a different PHP configuration in the two computers (e.g. one module could not be loaded). Anyway, you don't give enough information to resolve this problem. Perhaps one your includes kills the script prematurely with `die` or `exit`. It's impossible to tell. Try using xdebug to step through your script.
Artefacto
i have no idea either cause i get no error output but its weird because my script runs successfully on my other computer