Hamilton Turner 40e5512963 Flip HHVM installation order 11 years ago
..
cakephp a6e74857ec Fix cakephp PATH handling 11 years ago
hhvm 40e5512963 Flip HHVM installation order 11 years ago
php c791a06013 name php properly 11 years ago
php-codeigniter c791a06013 name php properly 11 years ago
php-fatfree c791a06013 name php properly 11 years ago
php-fuel c791a06013 name php properly 11 years ago
php-kohana c791a06013 name php properly 11 years ago
php-laravel c791a06013 name php properly 11 years ago
php-lithium c791a06013 name php properly 11 years ago
php-micromvc c791a06013 name php properly 11 years ago
php-phalcon 27358dbea7 Minor updates to reflect moving yaf and phalcon into php install 11 years ago
php-phalcon-micro 27358dbea7 Minor updates to reflect moving yaf and phalcon into php install 11 years ago
php-phpixie c791a06013 name php properly 11 years ago
php-pimf c791a06013 name php properly 11 years ago
php-senthot c791a06013 name php properly 11 years ago
php-silex c791a06013 name php properly 11 years ago
php-silex-orm c791a06013 name php properly 11 years ago
php-silica c791a06013 name php properly 11 years ago
php-slim c791a06013 name php properly 11 years ago
php-symfony2 c791a06013 name php properly 11 years ago
php-symfony2-stripped c791a06013 name php properly 11 years ago
php-yaf 27358dbea7 Minor updates to reflect moving yaf and phalcon into php install 11 years ago
php-yii2 7fde1aa370 Add __init__ files to a number of tests 11 years ago
php-zend-framework c791a06013 name php properly 11 years ago
phreeze c791a06013 name php properly 11 years ago
README.md c99eb898e7 Add basic read me to php 11 years ago

README.md

Tricks to writing PHP-based Frameworks

Many servers use the php, php-fpm, or other binaries. If your server launches with sudo (e.g. sudo php-fpm) then you should be aware that sudo resets the $PATH environment variable, and your specific binary may not be the one being used. The solution is to always use sudo <full-path-to-my-binary>. For example, cakephp's bash_profile.sh sets the variable $PHP_FPM to be the full path to the php-fpm binary that cakephp wants, and then uses sudo $PHP_FPM to ensure that the php-fpm binary used by sudo is the exact binary desired.