Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Josh Stockwell
what does your database.yml look like?On 9/17/06, Gautam [EMAIL PROTECTED] wrote: On IE, its giving a page cannot be displayed error--Posted via http://www.ruby-forum.com/.___Radiant mailing list Post: Radiant@lists.radiantcms.orgSearch:

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Gautam
what does your database.yml look like? database.yml = production: adapter: mysql database: gautam_radgeekprod username: gautam_geek password: abcde socket: /tmp/mysql.sock $script/setup_database production runs fine and i get no errors for that.so i do not suspect a database problem.

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Josh Stockwell
ok which option did you select in the setup database? if it is option 1 (someone correct me if Im wrong) but there will be no page data to show so it could potentially be doing what youre experiencing. is the error happening when you go to yourwebsite.com or yourwebsite.com/admin?On 9/17/06,

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Gautam
to start with#radiantcms rocks! its pretty active, and i got tons of help! the problem was that in database.yml, i had removed entries for development and test and kept only production. I added entries for all 3: development,test and production and filled them with the same entry as above.

[Radiant] Outputting the content of all parts of a page

2006-09-17 Thread Ralph Von der heyden
Hello, is there a way to tell radiant to output all the parts of a page without naming them explicitly? This would allow me to split large pages into smaller chunks that are easier to handle. -- Thanks Ralph -- Posted via http://www.ruby-forum.com/.

Re: [Radiant] Outputting the content of all parts of a page

2006-09-17 Thread Giovanni Intini
When I need to split up bigger pages I just include in the main content of the page a content tag for each extra part I have, this way in the layout I don't need to know if the page has multiple parts or just one and I can still divide the page into smaller chunks. I use this method a lot when I

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Gautam
Thanks :-) There were many time when my friends were askin me to quit trying this and go for a simpler PHP CMS setup, but i knew that you have to get it done once and then it starts becomin easier (hopefully) But the battle is far from over. Though Radiant is workin fine on Webrick(port 3000) but

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Giovanni Intini
If you have shell access to your server, you can just ssh into it and move away the public_html (or www) directory and link radiant/public to public_html (or www).2006/9/17, Gautam [EMAIL PROTECTED]:Thanks :-)There were many time when my friends were askin me to quit trying this and go for a

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Jon Baer
Here are the following steps I did ...My host had given me a mongrel port of 4021 ... so went info config/lighttpd.conf and changed 3000 - 4021Switched the symlink (like noted below) ... and that was pretty much it ...Im running off RailsPlayground w/ 1 mongrel instance.  Everything looks fine,

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Gautam
@ Giovanni Intini: Yes i tried that.But doesnt work.All i get is a blank window on my browser.It seems to be processing something and then displays nothing. Where as when i run webrick it runs fine.so problem seems to be with setting up the apache-fastcgi.But i cud b wrong... Jon Baer wrote:

Re: [Radiant] Installing Radiant on shared host

2006-09-17 Thread Giovanni Intini
I usually have the same problem when trying to run my apps on apache fcgi the first time. I don't understand why it happens, but you have to reload often the page in the first 5 minutes or so, and then it works.There has to be a reason for this but I don't know it and I'm happy it works :)

[Radiant] Submenu

2006-09-17 Thread Ian Gordon
I don't know if anyone is currently working on or will be adding a kind of menu functionality to Radiant. The idea being that there are navigational element necessary to navigate the site's content areas. The idea here is that for content, it automatically creates a ul list that you can

Re: [Radiant] Submenu

2006-09-17 Thread Kevin Ansfield
Ian Gordon wrote: I don't know if anyone is currently working on or will be adding a kind of menu functionality to Radiant. The idea being that there are navigational element necessary to navigate the site's content areas. The idea here is that for content, it automatically creates a ul

[Radiant] comments:count on main page, possible?

2006-09-17 Thread Jon Baer
Hi, Im just wondering if its possible @ all to use r:comments:count / on the main page ... i figured that setting it as commentable and using (r:comments:count / comments) in my layout might work but no luck ... any ideas or workarounds? Thanks. - Jon

Re: [Radiant] Submenu

2006-09-17 Thread Ian Gordon
I think we should get some code posted and people might be more apt to try and do something. Hmm, code, damn my newbie skills with ruby! -- Posted via http://www.ruby-forum.com/. ___ Radiant mailing list Post: Radiant@lists.radiantcms.org Search:

Re: [Radiant] Submenu

2006-09-17 Thread Ian Gordon
Here is an attempt at it. submenu_behavior.rb class SubMenuBehavior Behavior::Base register Sub Menu description %{ Submenu is the ability for pages to have their parent and children automatically generated into ul's for users. } define_tags do tag 'submenu' do 'Create list'