oscommerce

OSCommerce Function ereg() is deprecated 에러시

Deprecated: Function ereg() is deprecated in admin\configuration.php on line 80 이런 에러가 발생하는 경우 조치법   catalog/includes/application_top.php 와 admin/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);

OSCommerce 에러 Function session_is_registered() is deprecated in

OSCommerce 에서 아래와 같은 에러가 발생한다면 Function session_is_registered() is deprecated in /includes/application_top.php 와 /admin/includes/application_top.php 파일에서 error_reporting(E_ALL & ~E_NOTICE); // 이 부분을 주석처리하고 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED); //이렇게 바꾸면 된다.

OsCommerce 레퍼런스 및 SQL 쿼리 함수

OsCommerce 레퍼런스 OsCommerce 레퍼런스가 공식사이트에는 안보인다. 도대체… http://www.oscdox.com/crossx/nav.html?_functions/index.html OsCommerce SQL함수 tep_db_close() tep_db_connect() tep_db_data_seek() tep_db_error() tep_db_fetch_array()  tep_db_fetch_fields() tep_db_free_result()tep_db_input() tep_db_insert_id() tep_db_num_rows()tep_db_output()tep_db_perform()  tep_db_prepare_input()  tep_db_query()tep_db_result()  /includes/functions/database.php -> line 102/admin/includes/functions/database.php -> line 106

OsCommerce 설치방법 MS2.2

해외 쇼핑몰 솔루션 또는 카트솔루션은 여러가지가 있다. 그중 OsCommerce라는 것이 있는데. 설치는 간단하지만 몇가지 주의해야 할 것이 있다. OsCommerce에서 예전버전인 MS2.2 설치시 에러 발생하면 조치해야 할것 들이다. register global is on 이어야 한다. php.ini를 수정할 수 없다면 .htaccess 파일에 아래와 같이 한줄 넣으면 된다. php_flag register_globals on 그리고 나서 설치과정중 Step2 에서 Continue를 아무리 눌러도 […]

OsCommerce에 Paypal 연동방법

OsCommerce에 Paypal 연동하는 방법 및 구조 설명 Oscommerce에는 여러가지 Addon들이 있고 Paypal 애드온도 여러가지가 있다, 환경에 맞게 찾아서 설치하면 된다. 보통 모듈 설치방법은 다운 받은 모듈을 압축풀어보면 그안에 txt 파일로 있는 경우가 많다. Paypal 애드온중에서도 Paypal에서 인증받은 모듈들이 있다. 그중에서 PayPal Website Payments Standard 모듈을 적용하는 방법은. 방법설명하고 그담에는 구조에 대한 설명 프린트한 문서와 process […]

Scroll to top