Quantcast
Channel: Joomla CMS Support Forum
Viewing all articles
Browse latest Browse all 20261

Gelöst: php.ini "Display Errors"

$
0
0
Hallo Forum,

ich habe local über xampp eine dummy-Seite aufgebaut und die ist voll mit den bekannten Fehlern :

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\maxalpha\plugins\content\jw_allvid eos\jw_allvideos.php on line 43

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\maxalpha\plugins\content\jw_allvid eos\jw_allvideos.php on line 42

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\maxalpha\plugins\content\jw_allvid eos\jw_allvideos.php on line 43

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\maxalpha\plugins\content\jw_allvid eos\jw_allvideos.php on line 42

usw....

Diese Fehler (liegt wohl an der PHP-Version) kann man, folgt man dem Forum, über eine Einstellung in der PHP-ini ausschalten.

also --> xampp -> php -> php.ini

The following are all the settings which are different in either the production
; or development versions of the INIs with respect to PHP's default behavior.
; Please see the actual settings later in the document for more details as to why
; we recommend these changes in PHP's behavior.


; allow_call_time_pass_reference
; Default Value: On
; Development Value: Off
; Production Value: Off

; display_errors
; Default Value: Off
; Development Value: Off
; Production Value: Off

; display_startup_errors
; Default Value: Off
; Development Value: Off
; Production Value: Off

; error_reporting
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT

; html_errors
; Default Value: On
; Development Value: On
; Production value: Off

; log_errors
; Default Value: Off
; Development Value: On
; Production Value: On



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

http://php.net/display-errors
display_errors = Off


und weiter unten

The display of errors which occur during PHP's startup sequence are handled
; separately from display_errors. PHP's default behavior is to suppress those
; errors from clients. Turning the display of startup errors on can be useful in
; debugging configuration problems. But, it's strongly recommended that you
; leave this setting off on production servers.
; Default Value: Off
; Development Value: On
; Production Value: Off
; http://php.net/display-startup-errors
; XAMPP: Turn display_startup_errors = Off here for a full Joomla support
display_startup_errors = Off



weiter unten

; When PHP displays or logs an error, it has the capability of inserting html
; links to documentation related to that error. This directive controls whether
; those HTML links appear in error messages or not. For performance and security
; reasons, it's recommended you disable this on production servers.
; Note: This directive is hardcoded to Off for the CLI SAPI
; Default Value: On
; Development Value: On
; Production value: On
; http://php.net/html-errors
html_errors = Off


Ich habe aber immer noch den gleichen Fehlerreport auf der XAMPP-site :mad: Gibt es irgendwo einen "Generalschalter" zum Abstellen ?

Danke für Eure Hilfe

Grüße aus Freiburg
Matthias

Viewing all articles
Browse latest Browse all 20261