server

検索

以下に検索結果を表示します。

fuelphp_basic_setup @php:fuelphp
4 ヒット, 最終更新:
nfig.php<code php> /** * DateTime settings * * server_gmt_offset in seconds the server offset from gmt timestamp when time() is used * default_timezone optional, if you want to change the server's default timezone */ 'server_gmt_offset' => 9 * 60 * 60, 'default_timezone' => 'Asia/Tokyo', // タイ
is_ssl
3 ヒット, 最終更新:
heck if accessed via HTTPS * * Apache leaves ,$_SERVER['HTTPS'] empty when not available, IIS sets it to... is active */ function is_ssl(){ if (!isset($_SERVER['HTTPS']) || preg_match('/^(|off|false|disabled)$/i',$_SERVER['HTTPS'])){ return false; }else{
oil_generate_model @php:fuelphp
2 ヒット, 最終更新:
AGE * Fuel::PRODUCTION */ Fuel::$env = (isset($_SERVER['FUEL_ENV']) ? $_SERVER['FUEL_ENV'] : Fuel::DEVELOPMENT); // Initialize the framework with the config fi
apache_settings @php:fuelphp
1 ヒット, 最終更新:
DocumentRoot "/Users/tomoyan/fuelapp/public" ServerName fuelapp.localhost <Directory "/Users/tomo