Hey fellow hackers, would love your feedback for making this a killer service.
Prefer scp/sftp over git. Am I supposed to publish site assets like 20gb of images in git? You can still trigger server-side actions when a file is pushed if you allow ssh. Other than that, more details on the service would be nice. How do you scale MySQL for instance? I'm a technical guy so low level details are an important aspect for me.
Heroku for PHP - Private Beta Signup
31–40 of 52 posts
Re: Heroku for PHP - Private Beta Signup
#32I don't think there's a huge market for what Heroku does in the PHP world. With Rails, you want to run it as a long-running process. The amount of time to spin up a (Thin|Mongrel|Unicorn|etc.) is too long to do it based on a user request for a page and it's why Rails isn't run as a CGI. PHP is a bit different. The language is typically embedded in the server and then the individual files are parsed and run. There's l…
i disagree, somewhat. yes, this won't provide truly comparable services to heroku. clearly. the languages and stack don't work the same way. but i think the point of this is to communicate the fact that they're abstracting out the server and scalability details. i'd pay to not have to worry about all that stuff and just work on the app. if this thing will handle the server for me, keep it secure and up to date, provi…
But for decent scalable PHP hosting there are lots of options - sure you need to do a little configuration but, as an example, I just purchased another couple of "shares" on Gandi.net tonight.
Adding "share" as extra capacity for a server that needed it took a few seconds. Booting up a new instance on another "share", whipping nginx and my default configuration on took seconds (to set the script off, then it was a 10 minute wait).
So what, I guess, they have to do is put together a comparable service that removes the extra 10 minutes configuration work but adds benefit and doesn't cost any more.
(don't get me wrong - if they make it, I will use it :D)
Re: Heroku for PHP - Private Beta Signup
#33Re: Heroku for PHP - Private Beta Signup
#34I don't think there's a huge market for what Heroku does in the PHP world. With Rails, you want to run it as a long-running process. The amount of time to spin up a (Thin|Mongrel|Unicorn|etc.) is too long to do it based on a user request for a page and it's why Rails isn't run as a CGI. PHP is a bit different. The language is typically embedded in the server and then the individual files are parsed and run. There's l…
* For good performance you need at least 2 boxes (Web Server and DB) * For scaling web to 2+ boxes, you need to deal with sessions meaningfully * For HA/Failover, you need to run a load balancer and infrastructure to keep hot-standby boxes running.
In fact, the only difference between a scaled PHP app and a scaled Rails app is the ruby interpreter. Everything else pretty much you need solutions for on both languages.
When Heroku first came out, I immediately asked when to expect PHP support. Since the answer was "don't expect it", I am glad to see someone else working on a solution.
Re: Heroku for PHP - Private Beta Signup
#35Re: Heroku for PHP - Private Beta Signup
#36like Heroku, but better Somehow I doubt that, but the service looks interesting. I wonder if there is a market for high quality PHP hosting.
Re: Heroku for PHP - Private Beta Signup
#37Earlier quoted context omitted.
So, it's basically a PHP shared hosting with source control(git)? I would try it.
It will let you seamlessly grow from shared to dedicated hosting (and back again) as needed for either your application serving or database needs.
edit: email submited
Re: Heroku for PHP - Private Beta Signup
#38Put in my email for an invite, its going to come down to pricing. My initial skepticism is that deploying PHP apps is easy, and Fantastico already gives us 1-click installs for stuff like Drupal and Wordpress. So you'll have to provide all the value on the sysadmin side. However, we do have a couple of apps that require load balancing. I'm pretty happy with the dedicated server and load balancing prices we get from W…
The benefit here is the git integration. I'd also assume that the control panel is going to be thousands of times easier to use and more efficient than Cpanel/Fantastico (which is pretty gross in my opinion) I also dropped my email address in out of interest, but I agree this is definitely something that isn't needed for PHP. The web that we have right now was built for PHP. 99.9999% of hosts support it out of the bo…
Here's one example solution that has been working well for me: http://stackoverflow.com/questions/279169/deploy-php-using-g...
Re: Heroku for PHP - Private Beta Signup
#39I don't think there's a huge market for what Heroku does in the PHP world. With Rails, you want to run it as a long-running process. The amount of time to spin up a (Thin|Mongrel|Unicorn|etc.) is too long to do it based on a user request for a page and it's why Rails isn't run as a CGI. PHP is a bit different. The language is typically embedded in the server and then the individual files are parsed and run. There's l…
Re: Heroku for PHP - Private Beta Signup
#40http://stackoverflow.com/questions/279169/deploy-php-using-g...
I've been using this on my personal site and it works great.