[Rails] Re: deploy: First Rails App to shared server

2010-06-30 Thread Victor S
Yes :) the error message tells you exactly what you have to do, just like Lake did. On Jun 29, 1:33 pm, Lake Denman lden...@gmail.com wrote: Well, it looks like you're using rails 2.2.3 in your config/ environment.rb file. You can either update that version number in the environment.rb file

[Rails] Re: deploy: First Rails App to shared server

2010-06-30 Thread Ali Imran
Thanks buddy, it is working. On Jun 29, 11:33 am, Lake Denman lden...@gmail.com wrote: Well, it looks like you're using rails 2.2.3 in your config/ environment.rb file. You can either update that version number in the environment.rb file to match 2.3.8, the rails version you say you have

[Rails] Re: deploy: First Rails App to shared server

2010-06-29 Thread Lake Denman
Well, it looks like you're using rails 2.2.3 in your config/ environment.rb file. You can either update that version number in the environment.rb file to match 2.3.8, the rails version you say you have installed on your host, and deploy. Or gem install -v=2.2.3 rails on your server and hope for

Re: [Rails] Re: deploy: First Rails App to shared server

2010-06-28 Thread Mark Kremer
If you have ssh access then you could also use Capistrano for application deployment On 28-6-2010 7:41, Victor S wrote: PS, You can also try figuring out how to set up a git repo on that server and then checkout a copy beside it and make that copy your production, then on your local machine

[Rails] Re: deploy: First Rails App to shared server

2010-06-28 Thread Ali Imran
Which settings i need to change On Jun 27, 7:57 am, Mark Kremer m...@without-brains.net wrote: If they're standard shared host hosting accounts you won't be able to change the Apache configuration as you desire, you'll need to ask the hosting company to do it for you. -- You received this

[Rails] Re: deploy: First Rails App to shared server

2010-06-28 Thread Ali Imran
My hosting does not support mongrel. they jus told me to use Passenger and i have no idea what steps i need to take... Thanks On Jun 27, 4:36 am, murali dhararao sumud...@gmail.com wrote: Hi, Run the mongrel server in the port which you have configured earlier, either 8000,8001,8002 or

[Rails] Re: deploy: First Rails App to shared server

2010-06-28 Thread Ali Imran
thanks for the reply. I read the completely link you send me. and i also looked at the site5.com forum and still looking at it but did not find any help to deploy the application . I tried all the ways i know... On Jun 27, 11:33 pm, Victor S victor.s...@gmail.com wrote: I deployed on Site5,

[Rails] Re: deploy: First Rails App to shared server

2010-06-28 Thread Victor S
If you go to google. you can type: site5 rails deploy and the first hit you get is the answer... Did you try to do what that post sais? Also try to be perceptive of any minute differences in your environment or how you might like to make things work for you better... you don't have or if the info

[Rails] Re: deploy: First Rails App to shared server

2010-06-28 Thread Ali Imran
I follow all the steps and got this error The application has exited during startup (i.e. during the evaluation of config/environment.rb). The error message can be found below. To solve this problem, please follow any instructions in the error message. Error message: Missing the Rails 2.2.3 gem.

Re: [Rails] Re: deploy: First Rails App to shared server

2010-06-27 Thread murali dhararao
Hi, Run the mongrel server in the port which you have configured earlier, either 8000,8001,8002 or 3000,3001,3002, based on your mongrel_cluster configuration. once you run that server locally or by using pid in (linux) machine. Then run the appache server. If every thing wil fine from apache you

Re: [Rails] Re: deploy: First Rails App to shared server

2010-06-27 Thread Mark Kremer
If they're standard shared host hosting accounts you won't be able to change the Apache configuration as you desire, you'll need to ask the hosting company to do it for you. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this

[Rails] Re: deploy: First Rails App to shared server

2010-06-27 Thread Victor S
I deployed on Site5, so it's possible :) Search their bulletin board for a tutorial, i can't remember the link off hand, if you have trouble let me know. If you are developing locally you don't need apache, just go to your app in the terminal and say$ script/server This is a pretty good getting

[Rails] Re: deploy: First Rails App to shared server

2010-06-27 Thread Victor S
PS, You can also try figuring out how to set up a git repo on that server and then checkout a copy beside it and make that copy your production, then on your local machine git checkout from the server through ssh and bam, you can make changes on the local version commit, push, go to remote git

[Rails] Re: deploy: First Rails App to shared server

2010-06-26 Thread Ali Imran
I have two hosting accounts, one with godaddy and other with site5.com On Jun 25, 11:37 pm, Mark Kremer m...@without-brains.net wrote: That really depends on your hosting provider, you'll probably need to contact them and ask them about it. If your current hosting provider does not offer

[Rails] Re: deploy: First Rails App to shared server

2010-06-26 Thread Ali Imran
I install locally apache2.. and i have two hosting accounts i can use any one ... i have one with site5.com and other one is godaddy.com... what step i need to take now please help me ... its driving me crazy.. On Jun 26, 12:02 pm, murali dhararao sumud...@gmail.com wrote: Hi , Did you