Contact us

Contact form

Complete the following form if you have any questions.

TOP
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.8.2
 * @author     Fuel Development Team
 * @license    MIT License
 * @copyright  2010 - 2019 Fuel Development Team
 * @link       https://fuelphp.com
 */

return array (	'legacy' => array (
		'crypto_key' => '8Bc9DczTQYdYoP8zaoO00gEM',
		'crypto_iv' => 'Xk0AlMilgAcEm5Y5Y8Tr0u38',
		'crypto_hmac' => 'fc0R6o2ZIGK8NtM9QEWcI4H0',
	), 	'sodium' => array (
		'cipherkey' => '12b8469a33762d3912154b831f5ed53f15a9962b695c3202d9003180621c2533',
	),
);