2017-07-26 11 views
0

私のサイトの上部にこの警告があります。誰かが私にこれを解決する方法の詳細な解決法を教えてくれますか? (/ home/content/58/7146558/tmp/sess_g6kr1vkvtfv14ht3hu268issv2、O_RDWR)に失敗しました:このようなファイルやディレクトリはありません(/ home/content/58ライン上の/7146558/html/upload/include/fgcontactform.php 63警告:session_start()[function.session-start]:open()に失敗しました。このファイルまたはディレクトリはありません。

ここではコードです:

function FGContactForm() 
{ 
    $this->receipients = array(); 
    $this->errors = array(); 
    $this->form_random_key = 'HTgsjhartag'; 
    $this->conditional_field=''; 
    $this->arr_conditional_receipients=array(); 
    $this->fileupload_fields=array(); 

    $this->mailer = new PHPMailer(); 
    $this->mailer->CharSet = 'utf-8'; 
} 

function EnableCaptcha($captcha_handler) 
{ 
    $this->captcha_handler = $captcha_handler; 
    session_start(); 
} 

答えて

0

あなたがphp.iniファイル.INセッションパスを設定する必要があります。

session.save_path = "/path/to/your/folder" 

それ以外の場合は、以下を使用できます。

ini_set(session.save_path, '/path/to/your/folder') 
関連する問題