Сообщение об ошибке PHP: неопределенная переменная: encryptionKey

Вот полная ошибка: Обнаружена ошибка PHP. Серьезность: Уведомление Сообщение: неопределенная переменная: encryptionKey Имя файла: config / config.php Номер строки: 235

Вот config.php // ошибка в $config['encryption_key'] = $encryptionKey

if(file_exists("application/config/encryption_key.php"))
{
    require_once("application/config/encryption_key.php");
}
else
{
    if(!is_writable("application/config/"))
    {
        die('The application/config/ folder is not writable. Please see <a href="https://raxezdev.zendesk.com/entries/22839206-File-permissions-Installation-problems-fopen-permission-denied-" target="_blank">the FAQ</a> for more information.');
    }

    $file = fopen("application/config/encryption_key.php", "w");

    $encryptionKey = uniqid().uniqid().uniqid().uniqid();

    fwrite($file, '<?php $encryptionKey = "'.$encryptionKey.'";');
    fclose($file);
}

$config['encryption_key'] = $encryptionKey;
//encryptionkey file
<?php $encryptionKey = "thekeyishere";?>

Любая помощь? Заранее спасибо.

0 ответов

Другие вопросы по тегам