Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Stuck on page 2
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  15 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
sleepycat  
View profile  
 More options Mar 18 2010, 8:54 pm
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Thu, 18 Mar 2010 17:54:09 -0700 (PDT)
Local: Thurs, Mar 18 2010 8:54 pm
Subject: Stuck on page 2
Hey, I posted this on stackoverflow but was hoping to make this bug a
little shallower by adding a few more eyeballs. I am running
will_paginate 2.3.7.

For some reason my will_paginate collection is stuck on page 2. I have
the usual links the view helper provides except every page after page
one links to http://localhost:3000/ceo/gr_messages?page=2 I have tried
to add the :order option with no luck. I have also ensured that the
request is a get as mentioned on this page:
http://wiki.github.com/mislav/will_paginate/simple-search

There is a little more detail and some controller code posted here:
http://stackoverflow.com/questions/2451565/will-paginate-stuck-on-page-2

Any thoughts are welcome!
Thanks


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mislav Marohnić  
View profile  
 More options Mar 20 2010, 3:56 pm
From: Mislav Marohnić <mislav.maroh...@gmail.com>
Date: Sat, 20 Mar 2010 20:56:39 +0100
Local: Sat, Mar 20 2010 3:56 pm
Subject: Re: Stuck on page 2

Looks like a bug in very old version of the gem. Please update
"will_paginate" and try again.
Uninstall any old will_paginate plugins that you might have

On Fri, Mar 19, 2010 at 01:54, sleepycat <blessedbyvirtuos...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Mar 21 2010, 10:41 pm
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Sun, 21 Mar 2010 19:41:36 -0700 (PDT)
Local: Sun, Mar 21 2010 10:41 pm
Subject: Re: Stuck on page 2
Hi Mislav, I updated the plugin, but it wasn't until I switched to the
gem that the issue was resolved. Not sure what the difference might
be.
Anyway, thanks for responding.
I've marked the question as solved on stackoverflow as well.

On Mar 21, 8:56 am, Mislav Marohnić <mislav.maroh...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mislav Marohnić  
View profile  
 More options Jul 22 2010, 2:18 am
From: Mislav Marohnić <mislav.maroh...@gmail.com>
Date: Thu, 22 Jul 2010 08:18:13 +0200
Local: Thurs, Jul 22 2010 2:18 am
Subject: Re: Stuck on page 2

That is odd. Which version of Ruby? Are you doing anything unusual with
routing?

(Note I brought this discussion back to the mailing list)

On Thu, Jul 22, 2010 at 06:54, sleepycat <blessedbyvirtuos...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 22 2010, 5:21 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Thu, 22 Jul 2010 02:21:25 -0700 (PDT)
Local: Thurs, Jul 22 2010 5:21 am
Subject: Re: Stuck on page 2
No, nothing strange happening with routes:
(rdb:13) params
{"action"=>"gc_claimed_rewards", "page"=>"3", "controller"=>"ceo"}
(rdb:13) url_for params
"http://localhost:3000/ceo/gc_claimed_rewards?page=3"

But then check this out. I request /ceo/gc_claimed_rewards?page=3
and drop into the debugger:

[332, 341] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   332            stringified_merge @url_params, page_param
   333          else
   334            @url_params[param_name] = page_one ? 1 : 2
   335          end
   336
=> 337          url = @template.url_for(@url_params)
   338          return url if page_one
   339
   340          if complex
   341            @url_string = url.sub(%r!((?:\?|&amp;)#{CGI.escape
param_name}=)#{page}!, "\\1\0")
(rdb:23) @template.url_for(@url_params)
"/ceo/gc_claimed_rewards?page=2"
(rdb:23) @template.params
{"action"=>"gc_claimed_rewards", "page"=>"3", "controller"=>"ceo"}
(rdb:23) @url_params
{:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}
(rdb:23) url_for @template.params
"/ceo/gc_claimed_rewards?page=2"

I'm running Ruby 1.8.7.
This is being done via AJAX for what its worth...

Mike

On Jul 22, 6:18 pm, Mislav Marohnić <mislav.maroh...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mislav Marohnić  
View profile  
 More options Jul 23 2010, 6:50 am
From: Mislav Marohnić <mislav.maroh...@gmail.com>
Date: Fri, 23 Jul 2010 12:50:27 +0200
Local: Fri, Jul 23 2010 6:50 am
Subject: Re: Stuck on page 2

On Thu, Jul 22, 2010 at 11:21, sleepycat <blessedbyvirtuos...@gmail.com>wrote:

> But then check this out. I request /ceo/gc_claimed_rewards?page=3
> and drop into the debugger:

> (rdb:23) @template.params
> {"action"=>"gc_claimed_rewards", "page"=>"3", "controller"=>"ceo"}
> (rdb:23) @url_params
> {:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}

At the line you were currently at, this is not a bug. Will Paginate does a
little optimization here in that it generates and caches a URL for page 2
regardless of the page number you're currently at (page 3 in your case). So
what you debugged up to this point is all correct. It's only *a few lines
after *that the number "2" in the cached URL string should be replaced with
the page number for the pagination link currently being output: "4", "5",
"6", and so on. Pagination link for the current page ("3" in your case) is
never genererated because that's the current page, and there's no sense in
linking to the current page.

I see you are proficient enough with the ruby debugger. Can you resume from
that line and see what happens in next few lines? Your case is very strange;
and I don't know what to make of it.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 26 2010, 12:24 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Sun, 25 Jul 2010 21:24:02 -0700 (PDT)
Local: Mon, Jul 26 2010 12:24 am
Subject: Re: Stuck on page 2
Hi Mislav. Here is some new stuff to chew on. I requested "http://
localhost:3000/ceo/gc_claimed_rewards?page=7" and ran it till
view_helpers.rb:346.
This is what is going on at that point. Hopefully you can see
something helpful in the output.

/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:346
@template.url_for(@url_params).split(//).each_with_index do |char, i|
(rdb:3) @template.params
{"action"=>"gc_claimed_rewards", "page"=>"7", "controller"=>"ceo"}
(rdb:3) @url_params
{:controller=>"ceo", :action=>"gc_claimed_rewards",
"page"=>3, :page=>2}
(rdb:3) @url_string
"/ceo/gc_claimed_rewards?page=2"
(rdb:3) l
[341, 350] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   341            @url_string = url.sub(%r!((?:\?|&amp;)#{CGI.escape
param_name}=)#{page}!, "\\1\0")
   342            return url
   343          else
   344            @url_string = url
   345            @url_params[param_name] = 3
=> 346
@template.url_for(@url_params).split(//).each_with_index do |char, i|
   347              if char == '3' and url[i, 1] == '2'
   348                @url_string[i] = "\0"
   349                break
   350              end
(rdb:3) @template.url_for(@url_params).split(//)
["/", "c", "e", "o", "/", "g", "c", "_", "c", "l", "a", "i", "m", "e",
"d", "_", "r", "e", "w", "a", "r", "d", "s", "?", "p", "a", "g", "e",
"=", "2"]
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:347
if char == '3' and url[i, 1] == '2'
(rdb:3) $~
nil
(rdb:3) s+
[350, 359] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   350              end
   351            end
   352          end
   353        end
   354        # finally!
=> 355        @url_string.sub "\0", page.to_s
   356      end
   357
   358    private
   359
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:355
(rdb:3) @url_string.sub "\0", page.to_s
"/ceo/gc_claimed_rewards?page=2"
(rdb:3) page
6
(rdb:3) @url_params
{:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}
(rdb:3) $&
nil
(rdb:3) $~
nil

I am still poking at it but I thought I would send this your way. Any
thoughts?

On Jul 23, 10:50 pm, Mislav Marohnić <mislav.maroh...@gmail.com>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 26 2010, 12:45 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Sun, 25 Jul 2010 21:45:01 -0700 (PDT)
Local: Mon, Jul 26 2010 12:45 am
Subject: Re: Stuck on page 2
I also stepped through the loop at line 346.
Nothing matched both conditions (char == '3' and url[i, 1] == '2') and
the $~ and $& values were never set.

(rdb:23) @template.url_for(@url_params).split(//)
["/", "c", "e", "o", "/", "g", "c", "_", "c", "l", "a", "i", "m", "e",
"d", "_", "r", "e", "w", "a", "r", "d", "s", "?", "p", "a", "g", "e",
"=", "2"]

...

/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:347
if char == '3' and url[i, 1] == '2'
(rdb:23) s
1: char = 2
2: i = 29
3: url = /ceo/gc_claimed_rewards?page=2
4: url[i] = 50
5: url[i] = 50
6: char = 2
7: $& =
8: url[i, 1] == '2'  = true
9: char == '3' = false
10: @url_string[i] = 50
[342, 351] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   342            return url
   343          else
   344            @url_string = url
   345            @url_params[param_name] = 3
   346
@template.url_for(@url_params).split(//).each_with_index do |char, i|
=> 347              if char == '3' and url[i, 1] == '2'
   348                @url_string[i] = "\0"
   349                break
   350              end
   351            end
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:347
if char == '3' and url[i, 1] == '2'
(rdb:23) s
1: char = 2
2: i = 29
3: url = /ceo/gc_claimed_rewards?page=2
4: url[i] = 50
5: url[i] = 50
6: char = 2
7: $& =
8: url[i, 1] == '2'  = true
9: char == '3' = false
10: @url_string[i] = 50
[342, 351] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   342            return url
   343          else
   344            @url_string = url
   345            @url_params[param_name] = 3
   346
@template.url_for(@url_params).split(//).each_with_index do |char, i|
=> 347              if char == '3' and url[i, 1] == '2'
   348                @url_string[i] = "\0"
   349                break
   350              end
   351            end
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:347
if char == '3' and url[i, 1] == '2'
(rdb:23) s
1: char =
2: i =
3: url = /ceo/gc_claimed_rewards?page=2
4: url[i] =
5: url[i] =
6: char =
7: $& =
8: url[i, 1] == '2'  =
9: char == '3' =
10: @url_string[i] =
[350, 359] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   350              end
   351            end
   352          end
   353        end
   354        # finally!
=> 355        @url_string.sub "\0", page.to_s
   356      end
   357
   358    private
   359
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:355
(rdb:23) @url_string.sub "\0", page.to_s
"/ceo/gc_claimed_rewards?page=2"
(rdb:23) $~
nil

Let me know if there is anything else I should be looking at or any
other info you need.

Mike

On Jul 26, 4:24 pm, sleepycat <blessedbyvirtuos...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mislav Marohnić  
View profile  
 More options Jul 26 2010, 5:28 am
From: Mislav Marohnić <mislav.maroh...@gmail.com>
Date: Mon, 26 Jul 2010 11:28:42 +0200
Local: Mon, Jul 26 2010 5:28 am
Subject: Re: Stuck on page 2

On Mon, Jul 26, 2010 at 06:24, sleepycat <blessedbyvirtuos...@gmail.com>wrote:

> view_helpers.rb:346.
> (rdb:3) @url_params
> {:controller=>"ceo", :action=>"gc_claimed_rewards", "page"=>3, :page=>2}

Well, there's the problem. See the "page" parameter occurring twice? There
should never be symbols present in this hash; will_paginate only works with
strings at this point. The `stringified_merge` method takes care of that.

Because you have symbols here, something is wrong either with that method or
with your app. Are you sure no plugins hook into and change will_paginate?
No custom link renderers? Can you use the debugger to inspect how are
the @url_params constructed? Thanks.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 27 2010, 12:44 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Mon, 26 Jul 2010 21:44:08 -0700 (PDT)
Local: Tues, Jul 27 2010 12:44 am
Subject: Re: Stuck on page 2
Ok, here goes.
I made another direct request for "http://localhost:3000/ceo/
gc_claimed_rewards?page=7" and I stepped through again in a painful
level of detail.
@url_params gets constructed in a pretty uneventful way. The
highlights are below.
Here is the line where my request for page 7 becomes a request for
page 2:

6: @url_params.inspect = {"action"=>"gc_claimed_rewards", "page"=>"7",
"controller"=>"ceo"}
[329, 338] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   329          if complex = param_name.index(/[^\w-]/)
   330            page_param = parse_query_parameters("#{param_name}
=#{page}")
   331
   332            stringified_merge @url_params, page_param
   333          else
=> 334            @url_params[param_name] = page_one ? 1 : 2
   335          end
   336
   337          url = @template.url_for(@url_params)
   338          return url if page_one
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:334
@url_params[param_name] = page_one ? 1 : 2
(rdb:36) s+
6: @url_params.inspect = {"action"=>"gc_claimed_rewards", "page"=>2,
"controller"=>"ceo"}
[332, 341] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   332            stringified_merge @url_params, page_param
   333          else
   334            @url_params[param_name] = page_one ? 1 : 2
   335          end
   336
=> 337          url = @template.url_for(@url_params)
   338          return url if page_one
   339
   340          if complex
   341            @url_string = url.sub(%r!((?:\?|&amp;)#{CGI.escape
param_name}=)#{page}!, "\\1\0")

Then at 337 I took an exceedingly long tour through the Rails routing
system which thoughtfully turns your newly stringified keys and turns
them back into symbols.
So that is where the :page => 2 comes from.

As you can see above going into the call to url_for we had 6:
@url_params.inspect = {"action"=>"gc_claimed_rewards", "page"=>2,
"controller"=>"ceo"}
and coming out the other end: @url_params.inspect =
{:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}

/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/
core_ext/string/output_safety.rb:106
ActiveSupport::SafeBuffer.new(self)
(rdb:36) s+
6: @url_params.inspect =
{:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}
8: options.inspect =
[333, 342] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   333          else
   334            @url_params[param_name] = page_one ? 1 : 2
   335          end
   336
   337          url = @template.url_for(@url_params)
=> 338          return url if page_one
   339
   340          if complex
   341            @url_string = url.sub(%r!((?:\?|&amp;)#{CGI.escape
param_name}=)#{page}!, "\\1\0")
   342            return url
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:338
return url if page_one

From there its pretty boring until we get to line 345 which adds back
in the stringified "page" with a value of 3.:

6: @url_params.inspect =
{:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}
8: options.inspect =
[340, 349] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   340          if complex
   341            @url_string = url.sub(%r!((?:\?|&amp;)#{CGI.escape
param_name}=)#{page}!, "\\1\0")
   342            return url
   343          else
   344            @url_string = url
=> 345            @url_params[param_name] = 3
   346
@template.url_for(@url_params).split(//).each_with_index do |char, i|
   347              if char == '3' and url[i, 1] == '2'
   348                @url_string[i] = "\0"
   349                break
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:345
@url_params[param_name] = 3
(rdb:36) s+
6: @url_params.inspect =
{:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}
8: options.inspect =
[372, 381] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   372      def total_pages
   373        @total_pages ||=
WillPaginate::ViewHelpers.total_pages_for_collection(@collection)
   374      end
   375
   376      def param_name
=> 377        @param_name ||= @options[:param_name].to_s
   378      end
   379
   380      # Recursively merge into target hash by using stringified
keys from the other one
   381      def stringified_merge(target, other)
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:377
@param_name ||= @options[:param_name].to_s
(rdb:36) s+
6: @url_params.inspect =
{:controller=>"ceo", :action=>"gc_claimed_rewards",
"page"=>3, :page=>2}
8: options.inspect =
[341, 350] in /usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/
will_paginate/view_helpers.rb
   341            @url_string = url.sub(%r!((?:\?|&amp;)#{CGI.escape
param_name}=)#{page}!, "\\1\0")
   342            return url
   343          else
   344            @url_string = url
   345            @url_params[param_name] = 3
=> 346
@template.url_for(@url_params).split(//).each_with_index do |char, i|
   347              if char == '3' and url[i, 1] == '2'
   348                @url_string[i] = "\0"
   349                break
   350              end
/usr/lib/ruby/gems/1.8/gems/will_paginate-2.3.14/lib/will_paginate/
view_helpers.rb:346
@template.url_for(@url_params).split(//).each_with_index do |char, i|

The only funky thing that is happening to will_paginate is we are
calling it with a few params that were calculated (like "remaining =
collection.total_entries - displayed").
The call looks like this:
<%= will_paginate collection, {:page_links => false, :next_label =>
"Show next #{to_show} records (#{displayed + 1} to #{displayed +
to_show} of #{collection.total_entries})"} %>

I did see some heavy involvement in the routing by subdomain-fu and I
know its an old version. I'm going to update it and see what happens.

Mike

On Jul 26, 9:28 pm, Mislav Marohnić <mislav.maroh...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mislav Marohnić  
View profile  
 More options Jul 27 2010, 3:03 am
From: Mislav Marohnić <mislav.maroh...@gmail.com>
Date: Tue, 27 Jul 2010 09:03:13 +0200
Local: Tues, Jul 27 2010 3:03 am
Subject: Re: Stuck on page 2

On Tue, Jul 27, 2010 at 06:44, sleepycat <blessedbyvirtuos...@gmail.com>wrote:

> Then at 337 I took an exceedingly long tour through the Rails
> routing system which thoughtfully turns your newly stringified keys and
> turns them back into symbols. So that is where the :page => 2 comes from.

You don't have to take those long tours, you know. You could have just
stepped out of the function when you entered `url_for()`.

> As you can see above going into the call to url_for we had 6:
> @url_params.inspect = {"action"=>"gc_claimed_rewards",
> "page"=>2, "controller"=>"ceo"}
> and coming out the other end: @url_params.inspect =
> {:controller=>"ceo", :action=>"gc_claimed_rewards", :page=>2}

So there's our problem. The `url_for` method changes our input parameters in
a way that it symbolizes the hash when in fact it shouldn't touch it. I
think it's one of your plugins that does that — subdomain-fu perhaps.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 27 2010, 4:55 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Tue, 27 Jul 2010 01:55:59 -0700 (PDT)
Local: Tues, Jul 27 2010 4:55 am
Subject: Re: Stuck on page 2
Yeah, I know. I was hoping I might get a sense of some of the
interactions in there, which I did.
That said it didn't seem to help. I upgraded and then removed
Subdomain-fu completely and neither seemed to help.
I also removed the auto-admin plugin (Because it has a paginate method
of its own using the Sequel class.) to see if that might be involved
but it didn't improve the situation either.
Any other thoughts on what I might do?

Mike

On Jul 27, 7:03 pm, Mislav Marohnić <mislav.maroh...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 28 2010, 3:25 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Wed, 28 Jul 2010 00:25:33 -0700 (PDT)
Local: Wed, Jul 28 2010 3:25 am
Subject: Re: Stuck on page 2
Well, here is an interesting thing. I changed the Rails version back
to 2.1.0 and it works. Rails 2.3.4 and 2.3.5, 2.3.6 all work. As soon
as I switch to 2.3.7 it breaks. I am not sure yet what to do about
that other than use 2.3.6 for a while, but its a start.

On Jul 27, 8:55 pm, sleepycat <blessedbyvirtuos...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mislav Marohnić  
View profile  
 More options Jul 28 2010, 6:46 am
From: Mislav Marohnić <mislav.maroh...@gmail.com>
Date: Wed, 28 Jul 2010 12:46:49 +0200
Local: Wed, Jul 28 2010 6:46 am
Subject: Re: Stuck on page 2

You should use 2.3.8, not 2.3.7.

On Wed, Jul 28, 2010 at 09:25, sleepycat <blessedbyvirtuos...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sleepycat  
View profile  
 More options Jul 28 2010, 6:52 am
From: sleepycat <blessedbyvirtuos...@gmail.com>
Date: Wed, 28 Jul 2010 03:52:01 -0700 (PDT)
Local: Wed, Jul 28 2010 6:52 am
Subject: Re: Stuck on page 2
Sorry, I should have specified, I was using 2.3.8 when I started.

On Jul 28, 10:46 pm, Mislav Marohnić <mislav.maroh...@gmail.com>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »