Location: In front of a computer, who wants to know
Posted:
Wed Sep 08, 2004 11:52 am
Make sure you php.ini file is set like the following. The file may look slightly different depending on your installation but take note of the error reporting that it is using. Report all but notices. Notice's are not errors just bad programming habbits (like defining variables and not initializing them.
Code:
; error_reporting is a bit-field. Or each number up to get desired error
; reporting level
; E_ALL - All errors and warnings
; E_ERROR - fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
; E_NOTICE - run-time notices (these are warnings which often result
; from a bug in your code, but it's possible that it was
; intentional (e.g., using an uninitialized variable and
; relying on the fact it's automatically initialized to an
; empty string)
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
; initial startup
; E_COMPILE_ERROR - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR - user-generated error message
; E_USER_WARNING - user-generated warning message
; E_USER_NOTICE - user-generated notice message
;
; Examples:
;
; - Show all errors, except for notices
;
error_reporting = E_ALL & ~E_NOTICE
;
; - Show only errors
;
;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
; - Show all errors
;
;error_reporting = E_ALL
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On
_________________ NC Support Mod
Are you there? No I am a figment of your imagination.
Last time i was uploading like 50 downloads after another ,a nd i go this message after i was done, i went to eidt an folder and u i got this message "I Don't Like You" why would my PHp-nuek say that is it bc of to much downloads at a time ?
heres how i got the message it sended me to an page it was in my php-nuke it said "I Don't Like you" in an about:blank, but it was in my site
fi2508 Nuke Soldier
Joined: Oct 24, 2004
Posts: 16
Posted:
Mon Oct 25, 2004 4:11 am
Where would I find the php.ini file? I am getting these message on my forums and member list pages.. is that fixable with what you suggested?
Thanks
Warning: Cannot modify header information - headers already sent by (output started at /home/eclipse/public_html/game/header.php:32) in /home/eclipse/public_html/game/includes/sessions.php on line 222
Warning: Cannot modify header information - headers already sent by (output started at /home/eclipse/public_html/game/header.php:32) in /home/eclipse/public_html/game/includes/sessions.php on line 223
Warning: Cannot modify header information - headers already sent by (output started at /home/eclipse/public_html/game/header.php:32) in /home/eclipse/public_html/game/includes/page_header.php on line 492
Warning: Cannot modify header information - headers already sent by (output started at /home/eclipse/public_html/game/header.php:32) in /home/eclipse/public_html/game/includes/page_header.php on line 494
Warning: Cannot modify header information - headers already sent by (output started at /home/eclipse/public_html/game/header.php:32) in /home/eclipse/public_html/game/includes/page_header.php on line 495
simrin Support Mod
Joined: Jul 17, 2003
Posts: 508
Location: In front of a computer, who wants to know
Posted:
Mon Oct 25, 2004 4:40 am
No this is not fixable with that. I would recommed for that trying to logout from your site and delete you browser cookies and see if they go away.
_________________ NC Support Mod
Are you there? No I am a figment of your imagination.
hi all,
i 2 had the same problem. I solved that by adding
Code:
PHP_FLAG output_buffering On
these lines to my .htaccess file and it worked fine
nagu
_________________ Do things that create oppurtunities!
jadedsociety Nuke Soldier
Joined: Feb 13, 2005
Posts: 21
Posted:
Wed Feb 16, 2005 12:46 am
I was having trouble with these notices too. I was using easyphp. The one thing they fail to tell you is that you have to rename your php.ini.recommended file, to php.ini. This should get rid of the notice messages.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum