Merge pull request #8 from isidromerayo/master

problems with file permissions
This commit is contained in:
Andrés Montañez 2012-09-20 10:12:29 -07:00
commit b8728f2aa2

View file

@ -0,0 +1,17 @@
<?php
class Task_Permissions
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Fixing file permissions';
}
public function run()
{
$command = 'chmod 755 . -R';
$result = $this->_runRemoteCommand($command);
return $result;
}
}