OSCommerce Function ereg() is deprecated 에러시

Deprecated: Function ereg() is deprecated in admin\configuration.php on line 80

이런 에러가 발생하는 경우 조치법

 

catalog/includes/application_top.phpadmin/includes/application_top.php

이 2개의 파일에서

아래 내용을 찾아서

// set the level of error reporting
  error_reporting(E_ALL & ~E_NOTICE);

밑에 것으로 바꾸어 주면 된다.

  // set the level of error reporting
  error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);