Re: [Radiant] Newbie Issues with Radiant on Snow Leopard

2010-03-29 Thread Ilan Volow
On 3/26/10 2:32 PM, john muhl wrote:
> gem uninstall rack
> gem install rack -v 1.0.1
>
> On Fri, Mar 26, 2010 at 8:17 AM, Ilan Volow  wrote:
>
>> I'm trying out Radiant on my machine, OS X 10.6 Snow Leopard, using the
>> version of Ruby that came with the OS, rails 2.3.5 and Radiant 0.8.1
>> (which was the version of Radiant installed when I did gem install radiant).
>>
>> I create a test site, I try running the
>>
>> rake production db:bootstrap
>>
>> command and I get the follow error
>>
>> rake aborted!
>> can't activate rack (~>  1.0.0, runtime) for [], already activated
>> rack-1.1.0 for ["radiant-0.8.1"]
>>
>> Can anyone shed some light on what's happening?
>>
>>  
It worked. Thanks.




___
Radiant mailing list
Post: Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Radiant: http://radiantcms.org
Extensions: http://ext.radiantcms.org


Re: [Radiant] Newbie Issues with Radiant on Snow Leopard

2010-03-26 Thread john muhl
On Fri, Mar 26, 2010 at 2:31 PM, Gabe Koss  wrote:
> I have fixed the problem without uninstalling rack. In
> /lib/action_controller.rb there is a line which specifies the raelck gem
> version. I was able to change this line to the correct rack version. which
> fixed my issue.

sure you can always hack on the radiant source but that makes upgrades
slightly more difficult as you have to keep reapplying your changes.
unless you actually need a different version or rack for some other
app i think the simplest solution is just to install the older
version.

> That was actually on Ubuntu 9.04 but maybe it'll work on osx. ..
>
> Gabe
>
> On Mar 26, 2010 2:33 PM, "john muhl"  wrote:
>
> gem uninstall rack
> gem install rack -v 1.0.1
>
>
> On Fri, Mar 26, 2010 at 8:17 AM, Ilan Volow  wrote:
>
>> I'm trying out Radiant on my machine, OS X 10.6 Snow Leopard, using the
>> version of Ruby that cam...
> ___
> Radiant mailing list
> Post: Radiant@radiantcms.org
> Search: http://radiantcms.org/mailing-list/search/
> List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
> Radiant: http://radiantcms.org
> Extensions: http://ext.radiantcms.org
>
___
Radiant mailing list
Post: Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Radiant: http://radiantcms.org
Extensions: http://ext.radiantcms.org


Re: [Radiant] Newbie Issues with Radiant on Snow Leopard

2010-03-26 Thread Gabe Koss
I have fixed the problem without uninstalling rack. In
/lib/action_controller.rb there is a line which specifies the raelck gem
version. I was able to change this line to the correct rack version. which
fixed my issue.

That was actually on Ubuntu 9.04 but maybe it'll work on osx. ..

Gabe

On Mar 26, 2010 2:33 PM, "john muhl"  wrote:

gem uninstall rack
gem install rack -v 1.0.1


On Fri, Mar 26, 2010 at 8:17 AM, Ilan Volow  wrote:

> I'm trying out Radiant on my machine, OS X 10.6 Snow Leopard, using the
> version of Ruby that cam...
___
Radiant mailing list
Post: Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Radiant: http://radiantcms.org
Extensions: http://ext.radiantcms.org


Re: [Radiant] Newbie Issues with Radiant on Snow Leopard

2010-03-26 Thread john muhl
gem uninstall rack
gem install rack -v 1.0.1

On Fri, Mar 26, 2010 at 8:17 AM, Ilan Volow  wrote:
> I'm trying out Radiant on my machine, OS X 10.6 Snow Leopard, using the
> version of Ruby that came with the OS, rails 2.3.5 and Radiant 0.8.1
> (which was the version of Radiant installed when I did gem install radiant).
>
> I create a test site, I try running the
>
> rake production db:bootstrap
>
> command and I get the follow error
>
> rake aborted!
> can't activate rack (~> 1.0.0, runtime) for [], already activated
> rack-1.1.0 for ["radiant-0.8.1"]
>
> Can anyone shed some light on what's happening?
>
>
> ___
> Radiant mailing list
> Post: Radiant@radiantcms.org
> Search: http://radiantcms.org/mailing-list/search/
> List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
> Radiant: http://radiantcms.org
> Extensions: http://ext.radiantcms.org
>
___
Radiant mailing list
Post: Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Radiant: http://radiantcms.org
Extensions: http://ext.radiantcms.org


Re: [Radiant] Newbie Issues with Radiant on Snow Leopard

2010-03-26 Thread banane
HI Ilan

I've had this before, I can't remember what I did. I think it may be
the way you've setup radiant. Are you running it as a gem? Did you
create your radiant with
> radiant -d [database type] [name of site]

then Inside that directory you've made, you adjust the database then run rake?

What it's hiccuping on is a version issue with the gem "rack". So do a
"gem list"
> gem list

And report back here what versions you have installed.

On Fri, Mar 26, 2010 at 7:17 AM, Ilan Volow  wrote:
> I'm trying out Radiant on my machine, OS X 10.6 Snow Leopard, using the
> version of Ruby that came with the OS, rails 2.3.5 and Radiant 0.8.1
> (which was the version of Radiant installed when I did gem install radiant).
>
> I create a test site, I try running the
>
> rake production db:bootstrap
>
> command and I get the follow error
>
> rake aborted!
> can't activate rack (~> 1.0.0, runtime) for [], already activated
> rack-1.1.0 for ["radiant-0.8.1"]
>
> Can anyone shed some light on what's happening?
>
>
> ___
> Radiant mailing list
> Post: Radiant@radiantcms.org
> Search: http://radiantcms.org/mailing-list/search/
> List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
> Radiant: http://radiantcms.org
> Extensions: http://ext.radiantcms.org
>
___
Radiant mailing list
Post: Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
List Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Radiant: http://radiantcms.org
Extensions: http://ext.radiantcms.org