모바일 결제모듈 연동을 위해 openssl 모듈체크 코드 추가

This commit is contained in:
chicpro
2014-01-13 16:47:17 +09:00
parent ea1f180b2d
commit 9239b57137

View File

@ -12,6 +12,9 @@ function die_utf8($msg)
if(!extension_loaded('gd') || !function_exists('gd_info'))
die_utf8('GD 라이브러리를 설치하신 후 '.G5_VERSION.' 설치를 진행해 주십시오.');
if(!extension_loaded('openssl'))
die_utf8('openssl 모듈을 설치하신 후 '.G5_VERSION.' 설치를 진행해 주십시오.');
// SOAP 모듈체크
if(!extension_loaded('soap') || !class_exists('SOAPClient'))
die_utf8('SOAP 확장모듈을 설치하신 후 '.G5_VERSION.' 설치를 진행해 주십시오.');