CI 묻고 답하기

제목 ciboard를 xampp로 설치하여 localhost로 동작을 시켜 admin 버튼 누르면 에러가 발생
카테고리 CIBOARD
글쓴이 payon 작성시각 2024/08/10 13:13:32
댓글 : 3 추천 : 0 스크랩 : 0 조회수 : 883   RSS

관리자 버튼을 누르면페이지가 작동하지 않습니다.현재 localhost에서 요청을 처리할 수 없습니다.HTTP ERROR 500이런 에러가 뜨는데 어떤 경우인지 아시는 분 답변 부탁드립니다..

 

원인이 무엇인가요?

 

localhost라 그런건지

 

php 8.1.25

 다음글 웹애플리케이션에서 CLI 명령을 실행하는데 클래스를 못... (4)
 이전글 $this->include() 에 대한 질문입니다... (1)

댓글

변종원(웅파) / 2024/08/10 13:21:51 / 추천 0
ciboard가 php8.1에서 돌아가는지부터 확인해보세요.
darkninja / 2024/08/10 22:18:08 / 추천 0

https://cnisoft.tistory.com/349

오래된 버전의 CI보드의 관리자페이지가 500 오류가 나서, 오류내용을 확인해봤더니.

Exception: cURL error 60: The certificate issuer's certificate has expired. Check your system date and time. 
/home/www/application/libraries/Requests/Transport/cURL.php 277

오류가 나네요.

CA 인증서가 만료되었네요.
application/libraries/Requests/Transport/cacert.pem 파일을 최신으로 변경해주시면 됩니다.

최신 CA파일 다운로드

브라우저 주소창에  https://curl.se/ca/cacert.pem 입력하니 다운로드 되네요.

wget https://curl.se/ca/cacert.pem

또는 

curl -k -O https://curl.se/ca/cacert.pem

cp ./cacert.pem /application/libraries/Requests/Transport/cacert.pem

 

Lutin78 / 2024/08/28 15:10:08 / 추천 0
The HTTP ERROR 500 on localhost is likely due to server-side issues, not because it’s running locally. Common causes include PHP code errors, incorrect server configurations, or file permission issues. Check your server logs for specific errors. For more detailed troubleshooting and advanced PHP tips, visit ChatGPT Korea—a great resource for tech solutions.