Eğer php sürümünüzü 5.3 e yükselttikten sonra Oscommerce programınız
Deprecated: Function eregi() is deprecated in classes\language.php on line 87
hatası veriyorsa.
includes/classes/language.php dosyanızın yedeğini aldıktan sonra kod editörünüzle açıp 87. satırı
if (preg_match(‘/^(‘ . $value . ‘)(;q=[0-9]\\.[0-9])?$/i’, $this->browser_languages[$i]) && isset($this->catalog_languages[$key])) {
$this->language = $this->catalog_languages[$key];
satırı ile değiştirin.
includes/application_top.php ve admin/includes/application_top.php dosyanızın yedeğini aldıktan sonra kod editörünüzle açıp
error_reporting(E_ALL & ~E_NOTICE);
satırını bulup
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
satırı ile değiştirin.