묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
로그인 오류 어떻게 해야 하나요?
2013.07.19 16:03
Fatal error: Class 'socialxeProvider' not found in /home/hosting_user/livu/www/modules/socialxe/provider.xe.php on line 4
이렇게 나오고요.....
provider.xe.php열어 보면
<?php
// XE를 위한 클래스
class socialxeProviderXE extends socialxeProvider{
// 인스턴스
function getInstance(&$sessionManager){
static $instance;
if (!isset($instance)) $instance = new socialxeProviderXE($sessionManager);
return $instance;
}
// 생성자
function socialxeProviderXE(&$sessionManager){
parent::socialxeProvider('xe', $sessionManager);
}
// 로그인 여부 갱신
function syncLogin(){
$logged_info = Context::get('logged_info');
if ($logged_info->member_srl){
$this->logged_info = $logged_info;
$this->setLogin(true);
}
}
// 아이디
function getId(){
if (!$this->isLogged()) return;
return $this->logged_info->user_id;
}
// 닉네임
function getNickName(){
if (!$this->isLogged()) return;
return $this->logged_info->nick_name;
}
// 프로필 이미지
function getProfileImage(){
if (!$this->isLogged()) return;
$oMemberModel = &getModel('member');
$profile_info = $oMemberModel->getProfileImage($this->logged_info->member_srl);
return $profile_info->src;
}
// 링크
function getAuthorLink($id, $nick_name){
return;
}
// 리플 형식 반환
function getReplyPrefix($id, $nick_name){
return $nick_name . '//';
}
// 리플 형식이 포함되었는지 확인
function isContainReply($content){
return false;
}
}
?>
이건데 4번째 줄이 이상있는건가요? ㅠㅠ
4번째줄이 뭔지도 모르겠단;;;;;
ㅠㅠ
이렇게 나오고요.....
provider.xe.php열어 보면
<?php
// XE를 위한 클래스
class socialxeProviderXE extends socialxeProvider{
// 인스턴스
function getInstance(&$sessionManager){
static $instance;
if (!isset($instance)) $instance = new socialxeProviderXE($sessionManager);
return $instance;
}
// 생성자
function socialxeProviderXE(&$sessionManager){
parent::socialxeProvider('xe', $sessionManager);
}
// 로그인 여부 갱신
function syncLogin(){
$logged_info = Context::get('logged_info');
if ($logged_info->member_srl){
$this->logged_info = $logged_info;
$this->setLogin(true);
}
}
// 아이디
function getId(){
if (!$this->isLogged()) return;
return $this->logged_info->user_id;
}
// 닉네임
function getNickName(){
if (!$this->isLogged()) return;
return $this->logged_info->nick_name;
}
// 프로필 이미지
function getProfileImage(){
if (!$this->isLogged()) return;
$oMemberModel = &getModel('member');
$profile_info = $oMemberModel->getProfileImage($this->logged_info->member_srl);
return $profile_info->src;
}
// 링크
function getAuthorLink($id, $nick_name){
return;
}
// 리플 형식 반환
function getReplyPrefix($id, $nick_name){
return $nick_name . '//';
}
// 리플 형식이 포함되었는지 확인
function isContainReply($content){
return false;
}
}
?>
이건데 4번째 줄이 이상있는건가요? ㅠㅠ
4번째줄이 뭔지도 모르겠단;;;;;
ㅠㅠ
댓글 1
-
윈컴이
2013.07.19 16:14
-
Livu
2013.07.19 16:18
확인해보니 provider.class.php 파일이 있긴 한데 0kb이네요... 다시 업로드하려고 확인해보니 기본 xe에는 없는 파일인 것 같은데 어떻게 해야 하나요? ... -
Livu
2013.07.19 16:22
감사합니다. 덕분에 해결했습니다. ㅠㅠ
./modules/socialxe/provider.class.php 파일이 있으신가요? 없으시면 다시 업로드해보세요.