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 267Cek 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
PHP Notice: Undefined index: detail_button in /www/LIB/lib/biblio_list.inc.php on line 267
Solusi untuk notice tersebut adalah dengan mengubat parameter 'error_reporting = E_ALL' yang ada di php.ini menjadi 'error_reporting = E_ALL ^ E_NOTICE' .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:UnrealEdPHP Code:
if(isset($_SERVER['HTTP_REFERER'])){
// do stuff}
Kasus ini terjadi di nginx dengan fastcgi sebagai server API nya
No comments:
Post a Comment