ログイン画面

新規無料会員登録
Code Profiler
Crypto key error

Crypto key error

No write access to APPPATH/config/crypt.php.

The FuelPHP crypto functions require unique and truly random crypto keys. These keys are automatically generated and written to the crypto configuration file the first time the application accesses a crypto function.

Please copy the following code and paste it into the APPPATH/config/crypt.php file manually:

<?php
/**
 * Fuel is a fast, lightweight, community driven PHP 5.4+ framework.
 *
 * @package    Fuel
 * @version    1.9-dev
 * @author     Fuel Development Team
 * @license    MIT License
 * @copyright  2010 - 2019 Fuel Development Team
 * @link       https://fuelphp.com
 */

return array (	'legacy' => array (
		'crypto_key' => 'cK8eSwR6U2qw6-sE9EbVwrbU',
		'crypto_iv' => '3QMSwU7yodC4SqoRpIcyEVYU',
		'crypto_hmac' => '_QcAXIwYsEnIYAYdZQ4yMqDc',
	), 	'sodium' => array (
		'cipherkey' => 'eabd9beb386f362c25d7c747cbb985464072ec0af6a4c1f8bfaed74c620757ba',
	),
);