This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `options` ( | |
| `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | |
| `group` enum('Timezones') COLLATE utf8_unicode_ci NOT NULL, | |
| `order` tinyint(4) NOT NULL DEFAULT '0', | |
| PRIMARY KEY (`name`,`group`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; | |
| INSERT INTO `options` (`name`, `group`, `order`) | |
| VALUES | |
| ("Africa/Abidjan", 'Timezones', 0), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Asset_Instance extends Fuel\Core\Asset_Instance {} | |
| class Cache_Handler_Json extends Fuel\Core\Cache_Handler_Json {} | |
| class Cache_Handler_Serialized extends Fuel\Core\Cache_Handler_Serialized {} | |
| class Cache_Handler_String extends Fuel\Core\Cache_Handler_String {} | |
| class Cache_Storage_Apc extends Fuel\Core\Cache_Storage_Apc {} | |
| abstract class Cache_Storage_Driver extends Fuel\Core\Cache_Storage_Driver {} | |
| class Cache_Storage_File extends Fuel\Core\Cache_Storage_File {} | |
| class Cache_Storage_Memcached extends Fuel\Core\Cache_Storage_Memcached {} |
NewerOlder