Go Back   CodingForums.com > :: Server side development > Ruby & Ruby On Rails

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-18-2010, 11:49 PM   PM User | #1
PitbullMean
Regular Coder

 
Join Date: Oct 2007
Location: Glencoe, Ontario, Canada
Posts: 340
Thanks: 19
Thanked 27 Times in 27 Posts
PitbullMean is an unknown quantity at this point
Help with installing Radiant CMS

Radiant CMS runs on Ruby but I cant seem to get it installed properly or something im doing wrong ive been absent from the forums and from my web life cause of some seriously life problems.

If there is anyone interested in helping me just pm me and ill give u my cpanel access.
__________________
Eric "PitbullMean" Melo
Always Start your layout with*{border:0; margin:0; padding:0;}
Be sure to Thank ALL Users who give assistance.

Last edited by PitbullMean; 01-19-2010 at 04:28 AM..
PitbullMean is offline   Reply With Quote
Old 04-01-2010, 01:48 PM   PM User | #2
katierosy
New Coder

 
Join Date: Apr 2010
Posts: 38
Thanks: 0
Thanked 3 Times in 3 Posts
katierosy is an unknown quantity at this point
Smile

Here is the link that helps you in installation and get started -- http://wiki.github.com/radiant/radiant/
katierosy is offline   Reply With Quote
Old 08-17-2010, 09:57 AM   PM User | #3
bestdeveloper
Regular Coder

 
Join Date: Mar 2010
Posts: 281
Thanks: 3
Thanked 7 Times in 7 Posts
bestdeveloper can only hope to improve
We are going to use Subversion to install radiant. At this present time it is at version 0.6.4, so be sure to check that you are using the latest version when you come to follow this tutorial.

Open up your command line client and type at your root:

[~]# svn co http://dev.radiantcms.org/svn/radiant/tags/rel_0-6-4 ~/radiant


Replace yourapp with the name / path of your choice.

[~]# ~/radiant/radiant/bin/radiant ~/yourapp/


Alternatively, you can install the Radient GEM without the use of SVN.

1. # cd ~/yourapp
2. # gem install radiant
3. # radiant --database [database adapter] [path] -- Example: 'radiant --database mysql ~/yourapp'
4. Where `database adapter` is the name of the name of the database driver that you are using (“mysql”, “postgresql”, “sqlite3” or “sqlserver”) and `path` is the path to a directory where you would like to create your new project. If the directory doesn’t exist, the `radiant` command will create it for you.

Back up your public_html and symlink to yourapp/public

[~]# mv ~/public_html ~/public_html_backup
[~]# ln -s ~/yourapp/public ~/public_html


Using your ftp client locate config/environment.rb and uncomment the below line:

RAILS[ENV] ||= 'production'


Set up your mysql databases in cPanel and change config/dabase.yml

cp config/database.mysql.yml config/database.yml

development:
adapter: mysql
database: username_databasenamedev
username:
password:
socket: /tmp/mysql.sock

test:
adapter: mysql
database: username_databasenametest
username:
password:
socket: /tmp/mysql.sock

production:
adapter: mysql
database: username_databasenamelive
username:
password:
socket: /tmp/mysql.sock


Back in your command line, use chmod to alter the rights of dispatch.fcgi

[~]# cd yourapp
[~/yourapp]# chmod 755 public/dispatch.fcgi


Now check the shebang line of the dispatchers (refer this link )
Also your .htaccess file (refer this link )

Finally, run the run the database bootstrap rake task:

[~]# rake production db:bootstrap


You can now direct your browser to your website.com/admin and change the default login details as they are currently set to:

Name : Administrator
Username : admin
Password : radiant
__________________
websitetemplates[dot]bz
bestdeveloper is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:40 AM.


Advertisement
Log in to turn off these ads.