You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
876 B
45 lines
876 B
<?php
|
|
/**
|
|
* Part of the Fuel framework.
|
|
*
|
|
* @package Fuel
|
|
* @version 1.8
|
|
* @author Fuel Development Team
|
|
* @license MIT License
|
|
* @copyright 2010 - 2016 Fuel Development Team
|
|
* @link http://fuelphp.com
|
|
*/
|
|
|
|
namespace Fuel\Tasks;
|
|
|
|
/**
|
|
* Install task
|
|
*
|
|
* Run this task to set default write permissions and environment stuff
|
|
* for your app. This could be expanded in app/tasks for application specific stuff.
|
|
*
|
|
* @package Fuel
|
|
* @version 1.0
|
|
* @author Phil Sturgeon
|
|
*/
|
|
|
|
class Install
|
|
{
|
|
public static function run()
|
|
{
|
|
$writable_paths = array(APPPATH.'cache', APPPATH.'logs', APPPATH.'tmp', APPPATH.'config');
|
|
|
|
foreach ($writable_paths as $path)
|
|
{
|
|
if (@chmod($path, 0777))
|
|
{
|
|
\Cli::write("\t".'Made writable: '.$path, 'green');
|
|
}
|
|
else
|
|
{
|
|
\Cli::write("\t".'Failed to make writable: '.$path, 'red');
|
|
}
|
|
}
|
|
}
|
|
}
|