/usr/local/bin/php => PHP 4.4.9 (cgi) (built: Apr 20 2012 18:34:17)
/usr/local/bin/php.ORIG => PHP 4.4.9 (cgi) (built: Apr 20 2012 18:34:17)
/usr/local/bin/php.ORIG.4 => PHP 4.4.9 (cgi) (built: Apr 20 2012 18:34:17)
/usr/local/bin/php.ORIG.5 => PHP 5.2.17 (cgi) (built: Jun 6 2012 16:19:04)
/usr/local/bin/php.ORIG.5_2 => PHP 5.2.17 (cgi) (built: Jun 6 2012 16:19:04)
/usr/local/bin/php.ORIG.5_3 => PHP 5.3.16 (cgi-fcgi) (built: Aug 27 2012 17:36:50)
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
/** | |
* Pre field add | |
* | |
* Before we add the field to a stream | |
* | |
* @access public | |
* @param obj | |
* @param obj | |
* @return void | |
*/ |
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
#!/bin/bash | |
# this script let you automatically change permissions for PyroCMS installation | |
echo "Start Setting PyroCMS folders permissions" | |
chmod -Rf 777 assets/ | |
echo "changing permissions for assets/cache" | |
chmod -Rf 777 system/cms/cache |
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
#!/bin/bash | |
# this script let you automatically change permissions for a PyroCMS project | |
echo Start Setting PyroCMS Permissions | |
chmod -Rf 777 assets/ | |
echo changing permissions for assets/ | |
chmod -Rf 777 uploads/ | |
echo changing permissions for uploads/ |