PDA

View Full Version : plz help me probleme


GboxPlus
04-22-2009, 02:06 PM
i have this probleme

http://upload.traidnt.net/upfiles/Ibx23573.jpg

thank you

jpowers40828
04-22-2009, 11:23 PM
In your php.ini turn off error display. You don't really want it showing errors by default.

masino_sinaga
04-23-2009, 05:14 AM
@GboxPlus,

That warning messages came because E_WARNING was enabled in your php.ini. Actually, you can disable this E_WARNING.

For example, default current state in php.ini:
; - Show all errors, except coding standards warnings
;
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT


If the warning messages still appear, try to set to:
; - Show all errors, except coding standards and error warnings
;
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING

You can also search "Error handling and logging" text in php.ini file, then please read carefully all description in there for further information about enabled/disabled kind of error messages that generated by php.

Best regards,
Masino Sinaga

GboxPlus
04-23-2009, 08:41 AM
thank you

I did what you said but I have the same problem

http://upload.traidnt.net/upfiles/Asj90499.jpg

http://upload.traidnt.net/upfiles/cNf90879.jpg

masino_sinaga
04-23-2009, 08:50 AM
Sorry for being forgot to tell you this before: After you edit your php.ini file, don't forget to restart your web/php service to apply to the new setting.

Best regards,
Masino Sinaga

GboxPlus
04-23-2009, 08:51 AM
Sorry for being forgot to tell you this before: After you edit your php.ini file, don't forget to restart your web/php service to apply to the new setting.

Best regards,
Masino Sinaga

yes i know but i have the same problem



thanks

masino_sinaga
04-23-2009, 08:57 AM
My God! I didn't see your last screenshot before answering your last post. Sorry for that.

So, here is you have to do: You should edit the last row, and NOT this:

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING

The solution is: please REPLACE that setting above WITH THIS:

;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING
(it means you comment that line again)

and then, REPLACE THIS:
error_reporting = E_ALL & ~E_NOTICE

WITH THIS:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING
(it means only change the last row setting, because the lines above is only description for example usage).

Best regards,
Masino Sinaga

GboxPlus
04-23-2009, 09:01 AM
My God! I didn't see your last screenshot before answering your last post. Sorry for that.

So, here is you have to do: You should edit the last row, and NOT this:

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING

The solution is: please REPLACE that setting above WITH THIS:

;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING
(it means you comment that line again)

and then, REPLACE THIS:
error_reporting = E_ALL & ~E_NOTICE

WITH THIS:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING
(it means only change the last row setting, because the lines above is only description for example usage).

Best regards,
Masino Sinaga


http://upload.traidnt.net/upfiles/kny91665.jpg

no new

there is always the same problem

masino_sinaga
04-23-2009, 09:06 AM
Well, okay then.

Please change this:
display_errors = On

with this:
display_errors = Off

Best regards,
Masino Sinaga

GboxPlus
04-23-2009, 09:10 AM
Well, okay then.

Please change this:
display_errors = On

with this:
display_errors = Off

Best regards,
Masino Sinaga

it's ok thank you very much

masino_sinaga
04-23-2009, 09:16 AM
You're welcome. :)

Best regards,
Masino Sinaga