custom software for PHP deployments?

2011-12-22 Thread Jason F
Hi, We have a PHP app we've deployed on Heroku and so far it's running fine. I was wondering if it's possible to upload other binaries and libraries our app may need, just in case the Cedar stack doesn't have exactly what we require. Is there support for local libs and programs we can execute

Alpha Testers Wanted

2011-12-22 Thread Jake
We are testing our online image processing add-on for Heroku and would like to request some testers. Blitline offers the ability to crop, resize, filter images in the cloud. That means no image processing code that you have to write, and no load on your servers. If you are interested in helping us

Scaling Heroku process from Cloud9

2011-12-22 Thread node-code
I built a simple app on Cloud9 and deployed it to Heroku. Deployment was fine. Next when I try to open the URL nothing happens. Browser just shows a message "Waiting for ". I have gone through Heroku's process of deployment and running a process. I presume when we deploy from Cloud9 to Heroku

Re: GZIP & expxires header for static files

2011-12-22 Thread Mark Maximus Muskardin
Hi Adam, The article you referenced doesn't address the issue of setting expires headers on static assets only (javascript, css, etc.). Does Heroku allow you to set expires and cache-control headers on your static assets explicitly? I'm using Rails 3.1, and I'm wondering if it's just a matter

JRuby and Sinatra

2011-12-22 Thread Brian
Hello, I'm cloning this repo: https://github.com/freeformz/sinatra-jruby-heroku.git to try and use JRuby/Sinatra on Heroku's Cedar stack. I follow the included instructions and everything runs great locally with a 'foreman start'. I then git push to Heroku and it initially loads up fine but when

Re: mysql on heroku -- success stories

2011-12-22 Thread Jason F
Hi Cashton, We have a PHP app successfully deployed on Heroku. Can we use ClearDB with it? We don't want to move to PostgreSQL either. Thanks, -Jason -- You received this message because you are subscribed to the Google Groups "Heroku" group. To view this discussion on the web visit https://

"service" time way out of the norm of 50-200MS

2011-12-22 Thread Gdzilk
According to Heroku documentation the "service" time should be between 50-200MS. My app is taking 10X as long. Here’s what doesn’t make sense: the same app running on my laptop, on local WAMP stack (while my laptop runs dozens of other heavy apps like Skype (heavy network), VMworkstation (heavy CP

ClearDB on Heroku

2011-12-22 Thread Dasharatham Bitla
Has anyone experienced ClearDB on Heroku or outside? Whats your experience and how long they have been in service and their performance and availability? Its mentioned as 100% availability - thats really great, but would like to hear from the folks who are actually using it. ClearDB pricing on Her

Re: database and aws

2011-12-22 Thread Dasharatham Bitla
Can you refer to some of the customers who are using your service? Also can you elaborate the pricing difference between Heroku offering vs direct offering from your website? Is the service offering same in both the cases or any difference is there? Dash On Nov 3, 8:16 am, Cashton Coleman wrote:

no database url

2011-12-22 Thread Brett
I've created my first Python based Heroku app on the Cedar stack but I don't have a DATABASE_URL so I can't connect to my shared database. Running heroku:config doesn't list a DATABASE_URL or SHARED_DATABASE_URL How do I start the database or get the connection string? I've deleted the app and re

Websolr multiple Indexes

2011-12-22 Thread Pete
hi, is it possible to run multiple indexes with websolr (cobalt add-on) ? i need to implement two different searches within the same app thanks pete -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to heroku@googleg

node.js and connect-jsonrpc

2011-12-22 Thread Peter
I want to use connect-jsonrpc but I can't get my node.js app to run. I have a fairly simple script: var connect = require('express'); var math = { add: function(a, b, fn){ console.log('add'); var result = a + b; var message = a + " + " + b + " = " + result;

SSH tunnels in Heroku?

2011-12-22 Thread lazyant
Hello, I'm evaluating Heroku and I can't find an answer of weather I can create an SSH tunnel in an Heroku instance. The problem I'm trying to solve is to communicate with an external database server (mysql, mongodb, whatever) or another service securely since database connection is in cleartext.

Slug size of Scala apps

2011-12-22 Thread stephanos
I recently deployed my first Scala app (sbt) on Heroku and I was surprised when I saw the slug size: ~70 MB. The odd thing is that when I run the "stage" command locally the size is only about ~40MB. I already tried tweaking my .slugignore - without any real su

heroku create alternative for 2nd, 3rd, 4th developers

2011-12-22 Thread cyclingrank
When you create a new app for the first time with heroku create, your .heroku directory gets created, your ssh keys get uploaded to the remote server, and you link your current dir to the heroku remote. If I want to develop on the same app from a different system, what's the best process? Do I do

django-mediagenerator how to?

2011-12-22 Thread Rod Morison
I'm trying to port a site that uses django-mediagenerator. When I try "heroku run python allbuttonspressed/manage.py generatemedia" I get a familiar ValueError: Failed to execute Sass. Please make sure that you have installed Sass (http://sass-lang.com) and Compass (http://compass- style.org). ex

Delayed Job - Rails 3.1 Setup on the Cedar Stack

2011-12-22 Thread SimonS
OK I'm new and finding my feet so please bear with me... It seem the instructions on this support/docs page are out of date (specifically from a Rails 3.1 perspective) : http://devcenter.heroku.com/articles/delayed-job#setting_up_delayed_job I've also tried to follow the instructions here: http:/

heroku not running db:migrate

2011-12-22 Thread entrepro
Hi, I have run into a strange situation, where heroku run rake db:migrate refuses to run a table creation. I got in the mess due to some mistakes on my part (see context section below). But I am looking for a way to salvage the situation. Any suggestions? Context: 1. I had a table called produc

Multiple GIT/SVN Repos

2011-12-22 Thread Nazin
Hi! Is it possible to create via Heroku application (RoR for instance) svn or git repositiories which could be accessed by someone? Is it possible to create accounts for "someone" so they can push on repo? -- You received this message because you are subscribed to the Google Groups "Heroku" gro

Re: Heroku Scheduler - Time Out?

2011-12-22 Thread Mark Pundsack
There are no hard limits; it's just that it wasn't designed for long- running tasks so you may not find it suitable. For example if you've set up a task to run every 10 minutes, but the task doesn't finish before the next scheduled run hits, you could end up with an escalating problem. On Cedar ap

How do I find my app's sourcecode?

2011-12-22 Thread Roger Bosch
Okay, I'm a complete noob… I am trying to figure out how to use Heroku for my facebook app and I am stuck to where it says, "Let's tweak something small in the app and push it back to heroku." It wants me to find line 157 in index.php - but I have no clue where to look… Sorry for my noobness, hope

Second attempt to ask about creating a CRON job to turn up or down a background worker

2011-12-22 Thread sol.manager
I posted a question like 5 days ago and have not seen it so trying again. I was attempting to ask how you might go about using Heroku Scheduler or a CRON job to have a background worker scale up to 1 and back down to zero. In my case, I have an app that I would like to have turn up 1 background

Configuring heroku tomcat embedded webapp

2011-12-22 Thread gkkumar
Hi, I've been trying to modify tomcat configuration for my heroku app. I've installed heroku app using the wiki link below that configures a simple embedded tomcat. http://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat Questions: 1) Since I'm using embedded tom

Any news on PostgreSQL contrib modules in dedicated database?

2011-12-22 Thread Tilmann Singer
Refering to this thread: http://groups.google.com/group/heroku/browse_thread/thread/197c681dc06a84c7 I need to implement full text search for a project hosted on heroku and would benefit from unaccent and propably pg_trgm modules from contrib, so I was wondering if there are any news to be expect

Re: is there any heroku roadmap available? nodejs cedar stack doubt

2011-12-22 Thread Matthias Buchetics
Does this work for you? I got the same response when I asked for an updated node version. But when I try the custom buildpack I always get this messages on deploy: -> Heroku receiving push -> Fetching custom buildpack... done -> Node.js app detected ! Heroku push rejected, failed to co

Re: mysql on heroku -- success stories

2011-12-22 Thread Dasharatham Bitla
Has anyone experienced ClearDB on Heroku or outside? Whats your experience and how long they have been in service? ClearDB pricing on Heroku is very low compared to the huge pricing thats on their website. Why is that so much different - any ideas? Any comparison with Xeround or Amazon RDS? Are t

Connecting to Legacy MySQL - but need static IP

2011-12-22 Thread Andrew Chalkley
I have a client who need to connect to a legacy DB. But their firewall needs an ip/range to allow access to their DB. Has anyone using Heroku had the same issue? How did you get around it? Tunnelling the connection or using a proxy service? Any pointers would be greatly appreciated. -- You rece

Custom source data file for yaml_db

2011-12-22 Thread Giang NGUYEN
Hi all, I find yaml_db a useful gem for database managing. Just wander if there's a syntax to allow user point out the file he needs to import from? such as: rake db:data:load --file data.yml or rake db:data:load --file data_blank.yml Thanks, -Giang -- You received this message because you a

Re: European clients hosted on Heroku?

2011-12-22 Thread Nicola Brisotto
Hi! Do you have any news on this topic? When Heroku will become members of Safe Harbor? -- You received this message because you are subscribed to the Google Groups "Heroku" group. To view this discussion on the web visit https://groups.google.com/d/msg/heroku/-/k05cjzaRMyEJ. To post to this

rack-time not cutting off long postgres queries

2011-12-22 Thread sorens
Our web app is running on heroku with a dedicated postgres DB. We have a long query that we're fixing(separate issue), but we noticed that the rack-timeout did not cut the request off at 15 seconds as expected. I posted a question about it on StackOverflow. http://stackoverflow.com/questions/85125

Initial deployment with a gigabyte of non-database data

2011-12-22 Thread Ralph Shnelvar
I want to deploy my app. It has no (SQL) database but it does have about 1.5 gigabytes of videos. Are the videos "database" for Heroku? How does Heroku charge for disk space used? -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this gro

Re: heroku rake db:migrate - Internal Server Error

2011-12-22 Thread Scott LaBounty
Everything seems to be working OK for me now. If you were having problems, you might want to give it a shot now. Scott On Thu, Dec 22, 2011 at 2:48 PM, Neil Middleton wrote: > Status.heroku.com has just shown tool errors. Sounds like a platform > issue. > > -Neil. > > On 22 Dec 2011, at 22:45, J

Re: heroku rake db:migrate - Internal Server Error

2011-12-22 Thread Neil Middleton
Status.heroku.com has just shown tool errors. Sounds like a platform issue. -Neil. On 22 Dec 2011, at 22:45, John McCaffrey wrote: > I used to just get 'internal server error' in the console when I had various > syntax issues, until i updated to the latest heroku gem, now I see more > usefu

Re: heroku rake db:migrate - Internal Server Error

2011-12-22 Thread John McCaffrey
I used to just get 'internal server error' in the console when I had various syntax issues, until i updated to the latest heroku gem, now I see more useful info. See if that helps your migration. Does your migration work locally? Is it complex? (eg. doing something more than just changing table d

Re: heroku rake db:migrate - Internal Server Error

2011-12-22 Thread Joe Kueser
I'm seeing the same thing, Scott, but the sites themselves seem to be fine. Could be that Heroku switched on a deployment lock: http://devcenter.heroku.com/articles/deployment-lock And all we can do is wait patiently… On Dec 22, 2011, at 3:25 PM, Scott LaBounty wrote: > I'm seeing this ... >

heroku rake db:migrate - Internal Server Error

2011-12-22 Thread Scott LaBounty
I'm seeing this ... << $heroku rake db:migrate --trace ! !Internal server error. ! !Run 'heroku status' to check for known platform issues. $ heroku status All Systems Go: No known issues at this time. >> Should I just try later or is something else wrong that I should look at?

[no subject]

2011-12-22 Thread Daudi Amani
-- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to heroku@googlegroups.com. To unsubscribe from this group, send email to heroku+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.goo

Re: Heroku ignores Gemfile.lock ?

2011-12-22 Thread Vitaliy Khustochka
Could it be because I have both ruby and mingw gems in my Gemfile.lock ? On Dec 22, 10:17 am, Vitaliy Khustochka wrote: > It seems to me that some time ago Heroku started to ignore my > Gemfile.lock which is certainly checked in to the repository. For > example, when deploying I get a bundler out

Heroku ignores Gemfile.lock ?

2011-12-22 Thread Vitaliy Khustochka
It seems to me that some time ago Heroku started to ignore my Gemfile.lock which is certainly checked in to the repository. For example, when deploying I get a bundler output and among them: Installing kaminari (0.13.0) While in my Gemfile.lock it is `kaminari (0.12.4)` Certainly if I run `herok