Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthordorothyp
    • CommentTimeNov 3rd 2007
     
    Hi,

    I'm in the midst of moving all of my photos to Plogger and I'm having problem.

    My gallery has many collections. When I try to access the collections on page 2, it tells me it can't find the page.

    Has anyone else encountered this problem.

    Here is a link to my gallery -> http://www.dorothyp.com/gallery/

    Thanks.
    • CommentAuthorardamis
    • CommentTimeNov 4th 2007
     
    The link to the subsequent collection pages is being written with an ampersand instead of a question mark. I'm not sure why it's happening, but that's the problem.
    • CommentAuthordorothyp
    • CommentTimeNov 8th 2007
     
    Does anybody know of a way to fix this?
    • CommentAuthorrosenbaum
    • CommentTimeNov 28th 2007 edited
     
    I HAVE THE SAME PROBLEM AND YES THE PROBLEM IS THE & SIGN, IT HAS TO BE ?, BUT WHERE IN THE CODE CAN i CHANGE THAT ?
    • CommentAuthorjack
    • CommentTimeDec 2nd 2007
     
    I thinks you have to look into the plog-functions.php file. Perhaps somewhere past line 1000?:

    if ($last == "/") {
    //$url = substr($url,0,-1);
    $separator = "?";
    } else {
    $separator = "&";
    }

    if ($num_pages > 1){
    if ($current_page > 1){
    $output .= ' <a accesskey="," class="pagPrev" href="'.$url.$separator.'plog_page='.($current_page - 1).$extra_params.'"><span>&laquo;</span></a> ';
    }

    But this code could very well be perfect ;). If it really is a small error in the code it should be reported as a possible bug so that future users will not have to change the code themselves...