외부로그인 질문좀 드려요...
본문
제가 외부로그인을 등록을 하려는데 잘 안되네요..
결론적으로 도메인주소/main.html 안에는 잘 되는데 이상하게 도메인주소/company/company1.html
안에는 계속 에러가 납니다.
Warning: include_once(/common.php) [function.include-once]: failed to open stream:
No such file or directory in
/www/도메인주소/public_html/company/company1.html on line 62
Warning: include_once(/head.sub.php) [function.include-once]: failed to open stream:
No such file or directory in
/www/도메인주소/public_html/company/company1.html on line
63
Warning: include_once() [function.include]: Failed opening '/head.sub.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /www/도메인주소/public_html/company/company1.html on line 63
Warning: include_once(/lib/outlogin.lib.php) [function.include-once]: failed to open stream: No such file or directory in /www/도메인주소/public_html/company/company1.html on line 64
Warning: include_once() [function.include]: Failed opening '/lib/outlogin.lib.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /www/도메인주소/public_html/company/company1.html on line 64
Fatal error: Call to undefined function outlogin() in /www/도메인주소/public_html/company/company1.html on line 66
Warning: include_once() [function.include]: Failed opening '/head.sub.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /www/도메인주소/public_html/company/company1.html on line 63
Warning: include_once(/lib/outlogin.lib.php) [function.include-once]: failed to open stream: No such file or directory in /www/도메인주소/public_html/company/company1.html on line 64
Warning: include_once() [function.include]: Failed opening '/lib/outlogin.lib.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /www/도메인주소/public_html/company/company1.html on line 64
Fatal error: Call to undefined function outlogin() in /www/도메인주소/public_html/company/company1.html on line 66
계속 이렇게 나오네요. 경로 문제일까요? main이나 test로 해보면 잘 되는데 폴더를 거치면 안되네요..
부탁드려요..
답변 2
company1.html 상단 코드를 보여주어야...
원인은 경로가 잘못 된 이유입니다
bbs/_common.php를 해당폴더에 복사해 넣고해도 안된다면 상단 코드를 올려보세요
common.php는 첫줄에 들어가야하는데 on line 62 라고 나온 것을 보니 include 위치 자체도
잘못된 것 같군요
균이님 말씀대로
도메인주소/bbs/ 폴더에 있는 _common.php 파일을 도메인주소/company/
폴더안에 넣으신 후, 해당 파일 최 상단에
include_once("./_common.php");
를 불러오시면 될 듯합니다.
답변을 작성하시기 전에 로그인 해주세요.