I am trying to deploy my Refinery blog CMS to a staging server.

The app works fine on my development but annoyingly it does not online. I get the following error from passenger:

No such file to load -- /path/to/app/releases/20120217232643/webapp/app/mailers/refinery/blog/comment_mailer

I am totally baffled, being new to Rails, I though it would work out the box. Especially as it works somewhat fine on my development machine.

I would appreciate a pointer or two.

Thanks

M.

link|improve this question

80% accept rate
How are you deploying to your web server? Could there be any significant differences? – drnewman Feb 18 at 0:50
I am using Capistrano, however, running rake commands are problematic and result in errors so until I figure that out I'm having to ssh in and manually run them – lemonSkip Feb 18 at 10:01
feedback

2 Answers

up vote 0 down vote accepted

Try running it with Rails 3.0 you can install it with gem install rails -v 3.0. According to the "Getting Started Guide" (see http://refinerycms.com/guides/getting-started-with-refinery) Refinery runs on Rails 3.0.

link|improve this answer
Cool I think that may be the best way for now till 3.2 and refinery are stable. It is just odd that it works locally in dev but online its fails. ... Soon as I try later today I will get back with the results on whether it worked or not – lemonSkip Feb 18 at 9:59
I think your comment helped in that one needs to read care fully the getting stated guide. I have figured out that the problem was with my deployment script (capistrano). So I simply started from the basics and let bundle/capistrano do all the work. – lemonSkip Feb 19 at 11:18
Thanks, but can I get a +1 for the help? ;-) And yes reading the guide saves you pain from a few gotchas. – drnewman Feb 21 at 1:22
TBH, install guides in general starts off as "hey this is so easy, you can do this with your eyes closed" then you run into so much issues because effectively you have been installing with your eyes closed. If I ever write an app ... going to be straight from the begining ... this bleeding hard so get a coffee, lock the door and and do this ... – lemonSkip Feb 22 at 16:44
Yeah I hear ya. ;-) – drnewman Feb 23 at 0:46
feedback

Ok, I have found the answer ... which is in the error itself!

head over to the refinery blog git and locate that missing file: Git Hub Refinery Blog/comment_mailer.rb

Download that to: app/mailers/refinery/blog

And presto, no more issues with passenger (not sure why the error popped up in the first place if the refinery blog has it within their app!?!)

link|improve this answer
I'm glad you figured it out. – drnewman Feb 21 at 1:23
feedback

Your Answer

 
or
required, but never shown

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