Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to work with a production server that sucks. I can use Symfony2 required PHP version through apache, but not in the CLI, which uses an older PHP version.

So my question is... is there any way I could run console commands from the web browser? So, moving the console file to the server root directory and doing some changes... Later, for security reasons, of course, this file would be stored outside the root.

share|improve this question
Maybe with exec()? – Wouter J Nov 18 '12 at 20:45
Thanks for your comment @WouterJ. I tried this, but it uses the CLI PHP. Of course, because exec executes a command in CLI :) – Waiting for Dev... Nov 18 '12 at 21:17

2 Answers

up vote 4 down vote accepted

There is a bundle for the console in the browser.

https://github.com/winzou/ConsoleBundle

It is used for shared servers.

share|improve this answer
Wow, exactly what I was looking for. Thank you!! – Waiting for Dev... Nov 19 '12 at 22:37

Not as far as I know but you should just use the php version which is used by Apache! Either setup an alias in your .bash_profile / .zshrc: alias php='/path/to/php/used/by/apache/bin/php' or always run app/console with the entire path to php /path/to/php/used/by/apache/bin/php app/console

Or if the configuration/php.ini is the problem find out which one is used: php -i | grep php.ini Result: Loaded Configuration File => /etc/php5/cli/php.ini" for example You can use a different config file with the --php-ini or -c parameter: php -c /etc/php5/cgi -i | grep php.ini

share|improve this answer
Thanks, it should work, the problem is that I'm in a jailed shell and can't access apache php binary – Waiting for Dev... Nov 19 '12 at 22:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.