Oscommerce error Deprecated: Function session_is_registered() is deprecated
Oscommerce error Deprecated: Function session_is_registered() is deprecated
Penyebab:
OScommerce tidak compatible dengan versi PHP 5.3.x
Cara mengatasi:
Buka file /includes/application_top.php dan admin/includes/application_top.php
Cari kalimat:
error_reporting(E_ALL & ~E_NOTICE);
ganti dengan:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
Penyebab:
OScommerce tidak compatible dengan versi PHP 5.3.x
Cara mengatasi:
Buka file /includes/application_top.php dan admin/includes/application_top.php
Cari kalimat:
error_reporting(E_ALL & ~E_NOTICE);
ganti dengan:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
Comments