Not signed in (Sign In)

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

    • CommentAuthorjlaakso
    • CommentTimeOct 13th 2006
     
    I've encountered the same problem with Beta 2 and 3. Comments work, but they return a notice to the user:

    (translated from Finnish, apologies)

    "Page does not redirect appropriately

    Server is redirecting requests indefinitely.

    This may be due to cookies not being set."

    (Cookies are set.) When the user returns to the comment page, the comment is visible, but accompanied with:

    "Comment did not post! Please fill in required fields."
    • CommentAuthorjonny
    • CommentTimeJan 23rd 2007
     
    I had the same problem. The redirect code in plog-comment.php does not seem to be pointing to the correct page.

    I replaced the line:
    $redirect = str_replace("&","&",generate_url("picture",$parent_id, array(), true));
    with:
    $redirect = "http://".$_SERVER["SERVER_NAME"]. substr($_SERVER["PHP_SELF"],0,strrpos($_SERVER["PHP_SELF"],"/")) . "/"."?level=picture&id=".$parent_id;

    This appears to work.
    • CommentAuthorjlaakso
    • CommentTimeApr 25th 2007
     
    I've recently got back to tinkering with Plogger, still had the same issue with the latest pre-release version, but your fix did the trick. Thank you so much! :)