목록Web DEV/CodeIgniter (3)
ssouf
Codeigniter3 에서 Mcrypt 시놀로지 web station php
시놀로지에서 Mcrypt 가 보안이슈로 인해 더이상 설치가 불가합니다. OpenSSL 앞으로는 사용해야 합니다. $this->load->library('encrypt'); encrypt 라이브러리 대신 다음처럼 encryption 라이브러리를 사용합니다. $this->load->library('encryption'); $this->encrypt->encode() 대신 $this->encryption->encrypt() $this->encrypt->decode() 대신 $this->encryption->decrypt()
Web DEV/CodeIgniter
2023. 9. 5. 11:48
CodeIgniter 3.x An error occurred.
호스팅 서비스 이용중... An error occurred. Sorry, the page you are looking for is currently unavailable. Please try again later. If you are the system administrator of this resource then you should check theerror log for details. Faithfully yours, nginx. 문제!!! 헉~~ 아무것도 안했는데 $autoload['libraries'] = array('database','session'); autoload.php 에 라이브러리에 session 만 넣었을뿐이다 해결!!! config.php $config['sess_save_pat..
Web DEV/CodeIgniter
2016. 9. 28. 13:07