0
votes
1answer
22 views

heroku : how to get the envPort on other js files

I'm trying to make my node application working on heroku, and i stumble upon a, i'm sure common problem, but, i can't sort it out. my project is a 3 part system, composed of : a server file ...
0
votes
1answer
10 views

Some .js files are getting 403 from S3 but not others

I've got a django app running on heroku that pulls static files from S3. Until today it was working pretty well. I just pushed a different version (uncompressed) of prettyPhoto.js and now I'm getting ...
0
votes
0answers
29 views

Javascript + Rails not working on Heroku

I have a page that works perfect on my dev environment but not on production server (Heroku) Here is the code jQuery(function($){ $('.bar2').mosaic({ animation : 'slide' //fade or slide ...
0
votes
0answers
26 views

Postgresql+Node.js queries start failing after a few tries

I have a node.js app with a postgresql database running on Heroku and for some reason select functions seem to break and start failing after many successful attempts for what seems to be no reason at ...
0
votes
3answers
38 views

Javascript files 404'ing in my Sinatra app on Heroku

I have been developing a small app with Sinatra. Locally it works fine but when I deploy it Heroku my JavaScript paths seem to break and I have no idea what is causing this. My directory set up is I ...
0
votes
0answers
60 views

Meteor.js on heroku in Chrome, connection dies after refresh

EDIT 2: Oh, it acutally seems to work now. Hmm! Tried it on two different computers and got the same bug. Oh well! Thanks for taking time to comment. Original post: So I got this really simple ...
0
votes
1answer
55 views

heroku deployment error ruby on rails

I'm using ruby on rails 3.2 and added a jquery based calendar, i worked until I added this calendar. I don't understand whats the problem. The error is the typical: We're sorry, but something went ...
0
votes
1answer
55 views

Rails app hosted on heroku says Google Analytics is not installed

Okay so I've created a rails app to which I've added the google analytics tracking code. The problem is that the google analytics page is saying the tracking code is not installed. Here is the ...
2
votes
2answers
72 views

How can I evaluate Ruby on the server side of a NodeJS app?

I'm diving into NodeJS to build an app on Heroku to help teach my students about various aspects of a few different programming languages. Currently, the app can safely evaluate Javascript using the ...
1
vote
0answers
68 views

How to remotely fetch answer of phantomjs script run on heroku?

I want to fetch some information from a website using the phantomjs/casperjs libraries, as I'm looking for the HTML result after all javascripts on a site are run. I worked it out with the following ...
0
votes
0answers
53 views

setTimeout and setInterval is not worked on Heroku

my code : #form <%= form_tag posts_path,:id=>"newword",:method=>:post,:onsubmit=>"newWords();return false;" %> =============== #javascript function newWords(){ // some code ...
0
votes
1answer
51 views

heroku javascript ajax post not returning anything

I'm trying to do a ajax post to a heroku server app and have the app return a response to the client web page (on a different server). It works just fine if I test it locally (using localhost) but ...
0
votes
4answers
190 views

How do I figure out which other JS files are interfering with one I am concerned about?

I have a page that has a checkout from billing function - that basically triggers some JS. You can view it here. Choose Blue & Small and add it to your cart. Then go to checkout. Enter some ...
0
votes
0answers
45 views

Heroku deployment issue - Javascript problems?

I am having problems finding the error in my Heroku log: http://pastebin.com/0P1NsD0S . I have followed this guide : https://devcenter.heroku.com/articles/rails-asset-pipeline to compile my assets, ...
0
votes
1answer
158 views

Creating a fresh node.js Facebook app on Heroku results in application error

I just created a fresh new Node.js Facebook app, hosted on Heroku. When I browse to my application however, it shows me the following error: When I clone a copy of the application to my computer ...
0
votes
1answer
46 views

How should I handle node module dependencies in an application with a plugin based architecture on Heroku?

I'm working on a node.js based framework/server. This framework starts an express server and automatically loads all plugins from a local directory. The framework and individual plugins each have ...
0
votes
0answers
42 views

Ajax & redirect issue

I've made a registration process for my Django website, in which the whole process in through Ajax. So the registration form is inside a div, and when the form is submitted, the next step will be ...
0
votes
1answer
138 views

Trying to push my Node.js app to Heroku, Error: ENOENT with jade npm

As the title says, I'm trying to push my app to Heroku, but I keep getting these errors: 291 error Error: ENOENT, chmod '/tmp/build_htb3av307zzc/node_modules/jade/bin/jade' 292 error If you need ...
0
votes
0answers
98 views

heroku stopped working after I added google maps API, javascript & edited my layout

My app is working on my local machine but was working on Heroku, but after I pushed it after adding Google Maps & played around with my Twitter Bootstrap layout it stopped working on Heroku. I'm ...
0
votes
1answer
75 views

Client side geocoding with Javascript on Rails app

I am trying to client side geocode due to this issue I am having (over query limit on Heroku): https://github.com/alexreisner/geocoder/issues/222. The lat/long display in my url however I cannot get ...
0
votes
0answers
38 views

PostgreSQL Filter Problems on Heroku

I am a newbie to Ruby and have expirienced a problem with a PostgreSQL Database on Heroku. So, I have written a little app which stores time entries: http://timekeper.herokuapp.com/ Now i have ...
2
votes
1answer
74 views

Ajax call doesnt work on heroku with Large Amount of data

On Localhost every thing works fine but problem occur when I am deploying code on heroku. This is simple Ajax call that I am using in my application. I am using AJAX to send some data to server for ...
1
vote
0answers
307 views

API Error code: 100 facebook OpenGraph

I have just started making a new Facebook app hosted on heroku and I haven't made any changes yet, but tested the functionality a little bit, to get used to how stuff works. All good until I try the ...
2
votes
0answers
69 views

Add Post support to Hubot

I am trying to add the http-post-say.coffee script to a hubot app which is hosted on Heroku. The documentation indicates that once you add the script then it creates the '/hubot/say' route which ...
0
votes
1answer
44 views

AJAX Search functions differently in development/production

I added an instant search function to my app. It works exactly as I want it to on the local server: Narrows list on keypress Case-agnostic Allows for reset (so if I type something and then delete ...
0
votes
0answers
50 views

JavaScript not working remotely

I have a simple coffee-script which loads and runs locally just fine as follows: $(document).ready -> $("#Genre").change -> g = this.value if g == 'All' ...
0
votes
1answer
103 views

Simple Javascript not working when pushed to Heroku

I know that there have been some questions regarding Javascript not working in Heroku due to asset pipeline compilation problems etc ... which is way above my head. I just wanted to add a simple ...
0
votes
0answers
134 views

“Poorly formatted HTTP response” in node express app deployed to heroku

The following code works when deployed locally, receiving a request, and forwarding it to another server to validate a license: var express = require("express"); var app = express(); var request = ...
0
votes
0answers
82 views

Google maps v3 idle listener doesn't fire on initial load

I need to have a function run every time someone zooms in or changes the bounds of a map using google maps APIv3, I also need it to fire when the map initially loads. I have seemingly achieved that ...
0
votes
0answers
199 views

Why would PhantomJS code run locally but not on Heroku?

I'm trying to use Heroku to deploy a node.js app that uses PhantomJS/CasperJS to navigate webpages, via SpookyJS. (I know, an overload of ghost-themed JS libraries...sorry.) Here's some demo code: ...
0
votes
1answer
154 views

How can I fix Heroku imagecreatefromjpeg()

heroku report me a error: Call to undefined function imagecreatefromjpeg() ..at line 177, where at line 177 is: case 'jpg': case 'jpeg': $image_data = imagecreatefromjpeg($src_image); break; I think ...
0
votes
1answer
41 views

JS issues when deploying to Heroku

I am using rails 3.2.3 and have just deployed an app to heroku the same way as normal, though this time there seems to be an issue with my Jquery/javascript. My dropdowns don’t work, nor another ...
1
vote
1answer
305 views

JS template not rendered by Ruby on Rails on Heroku

I deployed my app to a staging app on Heroku. It works 100% fine locally. http://exposehair-staging.herokuapp.com I have two controllers that render JS. When I submit a remote form, its invoking the ...
7
votes
1answer
396 views

How can I get the Rails asset pipeline to produce source maps?

I'd like to have Rails produce source maps alongside the compiled coffeescript/minified JS, for better error logging. There doesn't seem to be comprehensive documentation on the net on how to do this, ...
0
votes
1answer
516 views

heroku ! resource not found

I am trying to access/redeploy my very simple node.js heroku app running on cedar stack. I have moved the directory around on my harddisk, apart from that nothing has changed since last time doing it ...
-1
votes
1answer
92 views

Why does some JS behavior work in development, but not when I push to Heroku? [closed]

I am trying to create a step form - which triggers/shows some fields when something else is chosen. Here is an example - http://jsfiddle.net/XnPZF/ - of it working (it also works in development). ...
0
votes
1answer
187 views

Chrome browser: Facebook API Error Code: 191 when invoking Requests dialog

I'm writing a Facebook canvas application that is using a basic Requests dialog. The dialog works fine when I call it from index.php, but I get Error 191 when I call the same code from any other file. ...
0
votes
1answer
399 views

JavaScript not loading correctly on Heroku Cedar stack Rails application

I am experiencing basically the same problem as outlined by SO post: jQuery script not loading on production (Heroku - cedar stack) In the development environment, my javascript is built in to the ...
1
vote
0answers
94 views

Node.js : Execute a rest call inside if statement

I am using Node JS with express and I want to create a new user in my db with a REST call if the user logs in successfully with facebook. This code is just a slight modification of the heroku node.js ...
0
votes
2answers
97 views

How to get coffeescript to compile on Heroku?

I'm using Rails 3.2 and have this as a Gemfile: gem 'rails', '3.2.11' group :development do gem 'sqlite3', '1.3.5' gem 'rspec-rails', '2.11.0' end group :assets do gem 'sass-rails', '3.2.5' ...
0
votes
0answers
92 views

Delegating Mongoose connection to another module - throws TypeError

I've been trying to modularize my code for a simple blogging platform by placing all my database connection code in one node module, mongoose models in others, and the usage of the modules in express' ...
0
votes
1answer
267 views

Node.Js and Socket.IO application on Heroku

I am having this error message when I try to deploy my application on Heroku. Any suggestions? I can easily deploy my app on localhost but it doesn't work on Heroku. My Package.JSON is: { ...
1
vote
1answer
97 views

Heroku Node Application Push Failure

So I'm trying to push my node app to heroku but I keep getting this error: ! Heroku push rejected, no Cedar-supported app detected To git@heroku.com:*************.git ! [remote rejected] ...
1
vote
2answers
480 views

Socket.io takes a long time before triggering the disconnect event

I'm doing an HTML5 Game using node.js and socket.io I decided to host it on Heroku. Heroku isn't allowing the use of WebSockets, so I have to setup xhr-polling instead. (Socket-io on Heroku) ...
3
votes
1answer
981 views

Facebook App is not working in Chrome but well in Firefox

I have just started making Facebook Apps using heroku. I made a test app. I uploaded a page on heroku which uses HTML5, CSS and Javascript. The app is not showing in Google Chrome ...
2
votes
2answers
2k views

heroku for node: ! Heroku push rejected, no Cedar-supported app detected

I am new to heroku and express.js. I try to go through the tutorial, but I cannot make it with the step 'git push heroku master'. I followed the tutorial exactly. Below is the error message: Counting ...
0
votes
1answer
278 views

Javascript not working in FireFox for Android, for my site only

(Apologies for the tag soup - I'm really not sure what's causing my problem!) I have a Ruby-on-Rails site served from heroku.com. When visiting the site on a variety of desktop browsers, the ...
0
votes
2answers
78 views

heroku error while deploying node app

I'm trying to deploy an app to heroku. Everything was working fine until now.... I don't know what I've done, but everytime I start the process I'm getting this error, 2012-12-17T14:36:42+00:00 ...
3
votes
0answers
467 views

Rails - Highcharts on Heroku - Getting 'ReferenceError: Highcharts is not defined'

I'm using highcharts to plot some graphs. It works just fine locally, but when deployed to heroku, I get this javascript error saying that Highcharts is not defined. I though maybe the javascript file ...
0
votes
1answer
77 views

Write python environmental variables to a javascript file

I'm using Heroku and Stripe in a Python codebase. There are different api keys stored in the .env file and not directly in a javascript file. Yet my stripe.js requires these keys. I can access the ...

1 2 3