Hi Manikanta, by default, the Heroku Cedar environment is very minimalist. It includes almost no packages, including, I think(?), no Python. You can probably solve this problem by using multiple buildpacks. You'll want to combine the PHP and Python build packs. It's unsupported, but it should work. Check out this repo here:
https://github.com/ddollar/heroku-buildpack-multi Also, if you're doing things with custom buildpacks, I'd recommend giving the Advanced PHP buildpack from Christoph Hochstrasser a try! https://github.com/CHH/heroku-buildpack-php Once you've got both build packs in place, to figure out what's going on you might want to experiment with $ heroku run bash -p On Mon, Jul 15, 2013 at 2:55 PM, Manikanta Kondeti <[email protected]>wrote: > Hey , I've created a fb app and deployed it on heroku (php SDK) . So the > problem with that is I've to execute a puthon file from php . > So I used system() , exec() , passthru() . But I'm not able to execute it > . Is there a way to get rid of this problem... Please help me .. Thanks :) ! > > -- > -- > You received this message because you are subscribed to the Google > Groups "Heroku" group. > > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en_US?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "Heroku Community" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
