Thursday, June 03, 2010

PHP Notice : Undefined index:

OPAC SENAYAN, tau kan?
Siang tadi dapet laporan dari webmin klo opac udah dipasang dengan release yg terbaru, tapi ternyata muncul error
PHP Notice:  Undefined index:  detail_button in /www/LIB/lib/biblio_list.inc.php on line 267
PHP Notice:  Undefined index:  detail_button in /www/LIB/lib/biblio_list.inc.php on line 267
Cek punya cek, "http://www.hotscripts.com/forums/php/36618-solved-getting-php-notice-undefined-index-http_referer-c-inetpub-cgi-bin-search5-php-o.html", berikut penuturan dari UnrealEd
this notive means that the key 'HTTP_REFERER' is not set in the $_SERVER array. Try using this code to see if the key exists, and then start doing stuff with it:
PHP Code:
if(isset($_SERVER['HTTP_REFERER'])){
  
// do stuff
UnrealEd
Solusi untuk notice tersebut adalah dengan mengubat parameter 'error_reporting = E_ALL' yang ada di php.ini menjadi 'error_reporting = E_ALL ^ E_NOTICE' .
Kasus ini terjadi di nginx dengan fastcgi sebagai server API nya

No comments: