ExpressionEngine CMS
Open, Free, Amazing

Thread

This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.

The active forums are here.

Commenting with IE

October 03, 2012 10:19am

Subscribe [2]
  • #1 / Oct 03, 2012 10:19am

    Matt76

    75 posts

    I come to find out that everyone using any version of IE gets failures when leaving comments to blog posts on our site.  Everything works find with FF or Chrome.  Is this a known bug that has a fix?  I didn’t find anything with a search.

    My comment module is 2.2 if that makes a difference.

  • #2 / Oct 04, 2012 9:28am

    Matt76

    75 posts

    Apparently this has been going on for years and we never knew it.  Some members are just now saying that IE has always given errors when commenting on posts.

  • #3 / Oct 04, 2012 5:23pm

    Dan Decker

    7338 posts

    Hi Matt76,

    What version of ExpressionEngine are you using here? Can you show me your comment form template code?

    I’ll try to replicate once I have that info!

    Thanks,

  • #4 / Oct 04, 2012 6:57pm

    Matt76

    75 posts

    I am running 2.4.0.
    I found the comment module and it has three different .php files in it.  Which one do you want to see.
    mcp.comment
    mod.comment
    upd.comment

  • #5 / Oct 05, 2012 4:15pm

    Dan Decker

    7338 posts

    Hi Matt,

    Thanks for that, but I think there is some miscommunication here. I do apologize for that!

    What I need to see is the ExpressionEngine tags you are using on the templates that have the comment form.

    The code would look similar to this:

    {exp:comment:form channel="news" preview="channel/preview"}
    
            {if logged_out}
                    <label for="name">Name:</label> <input type="text" name="name" value="{name}" size="50" /><br >
                    <label for="email">Email:</label> <input type="text" name="email" value="{email}" size="50" /><br >
                    <label for="location">Location:</label> <input type="text" name="location" value="{location}" size="50" /><br >
                    <label for="url">URL:</label> <input type="text" name="url" value="{url}" size="50" /><br >
            {/if}
    
            <label for="comment">Comment:</label>
    
            <textarea name="comment" cols="70" rows="10">{comment}</textarea>
            <label><input type="checkbox" name="save_info" value="yes" {save_info} /> Remember my personal information</label>
    
            <label><input type="checkbox" name="notify_me" value="yes" {notify_me} /> Notify me of follow-up comments?</label>
    
    
            {if captcha}
                    <label for="captcha">Please enter the word you see in the image below:</label>
    
                    {captcha}
    
                    <input type="text" name="captcha" value="{captcha_word}" maxlength="20" /></p>
            {/if}
    
            <input type="submit" name="submit" value="Submit" />
            <input type="submit" name="preview" value="Preview" />
    
    {/exp:comment:form}

    Cheers,

  • #6 / Oct 05, 2012 11:52pm

    Matt76

    75 posts

    ok.  I hope these are it.  They are the snippets.  I have a feeling you are still talking about something else.  You may have to tell me exactly where to find it.


    _snip_comments_code_

    <h2>Comments</h2>
    <p><div class="comments"><br />
    {exp:comment:entries paginate="bottom" limit="50"}<br />
    <div class="reply">{comment}</div></p><h4>Posted by {author} on {comment_date format='%m/%d'} at {comment_date format='%h:%i %A'}</h4>
    <p>{paginate}<br />
    Page {current_page} of {total_pages} pages {pagination_links}<br />
    {/paginate}<br />
    {/exp:comment:entries}<br />
    {exp:comment:form preview="OURSITE/comment_preview"}<br />
    {if logged_out}<br />
    <a href="http://{path=member/login}">Log In</a><br />
    <a href="http://{path=member/register}">Register as a new member</a><br />
    {/if}<br />
    {if logged_in}<br />
    <textarea name="comment" cols="52" rows="10"></textarea><br />
    Name: <input type="text" class="white" name="name" value="{name}" size="20" /> Email: <input type="text" name="email" value="{email}" size="20" /></p><br />
    Location: <input type="text" class="white" name="location" value="{location}" size="20" /> URL: <input type="text" name="url" value="{url}" size="20" /></p><br />
    <input type="checkbox" class="white" name="save_info" value="yes" {save_info} /> Remember my personal information<br />
    {if captcha}<br />
    Submit the word you see below:<br />
    {captcha}<br />
    <input type="text" name="captcha" value="" size="20" maxlength="20" /></p><br />
    {/if}<br />
    <input type="submit" name="submit" value="Submit" /><br />
    {/if}<br />
    {/exp:comment:form}<br />
    </div>

    _snip_comments_blog_

    <h2>Comments</h2>
    <p><div class="comments"><br />
    {exp:comment:entries paginate="bottom" limit="50"}<br />
    <div class="{switch='reply|reply2'}"><br />
    {comment}</p><h4>Posted by <span class="author">{author}</span> on {comment_date format='%F %d'}</h4>
    <p></div><br />
    {paginate}<br />
    <div class="paginate">{if previous_page}<a href="http://{auto_path}%22class=%22back" title="Previous Page" class="back"> </a>{/if} {pagination_links} {if next_page}<a href="http://{auto_path}%22class=%22next" title="Next Page" class="next"> </a>{/if}</div><br />
    {/paginate}<br />
    {/exp:comment:entries}<br />
    {exp:comment:form preview="OURSITE/comment_preview" return="{channel_short_name}/story"}<br />
    {if logged_out}<a href="http://{path=HOforum/meminfo/login}">Log In</a> :: <a href="http://{path=HOforum/meminfo/register}">Register as a new member</a>{/if}<br />
    {if logged_in}</p><h2><span>a path='OURSITE/smilies'>/images/grin.gif Smileys</a></span></h2>
    <p><textarea name="comment" cols="75" rows="10"></textarea><br />
    Name: <input type="text" class="white" name="name" value="{name}" size="30" /> Email: <input type="text" name="email" value="{email}" size="30" /></p><br />
    Location: <input type="text" class="white" name="location" value="{location}" size="30" /> URL: <input type="text" name="url" value="{url}" size="30" /></p><br />
    <input type="checkbox" class="white" name="save_info" value="yes" {save_info} /> Remember me :: {if auto_login}<input class='checkbox' type='checkbox' name='auto_login' value='1' /> Auto-login on future visits<br />
    {/if}<br />
    {if captcha}<br />
    Submit the word you see below:<br />
    {captcha}<br />
    <input type="text" name="captcha" value="" size="20" maxlength="20" /></p><br />
    {/if}<br />
    <input type="submit" name="preview" value="Preview" /><input type="submit" name="submit" value="Submit" ><br />
    {/if}<br />
    {/exp:comment:form}<br />
    </div>

  • #7 / Oct 08, 2012 3:25pm

    Shane Eckert

    7174 posts

    Hey Matt76,

    I am not seeing anything wrong with the forms.

    What version of IE are you seeing this in?

    Would you be able to share a link so I can see how the page renders?

    Thank you,

  • #8 / Oct 08, 2012 3:27pm

    Matt76

    75 posts

    We are running 2.4.0.
    This has been happening for a long time.  Even on previous versions.

    http://www.heartlandoutdoors.com

  • #9 / Oct 08, 2012 3:30pm

    Shane Eckert

    7174 posts

    Hello Matt76,

    Version of IE, not ExpressionEngine.

    Thanks!

  • #10 / Oct 08, 2012 3:32pm

    Matt76

    75 posts

    Sorry, I get the error on 8 and 9 as well as others.  Like I said, its been going on for long time.  One member said since we started a couple years ago.

  • #11 / Oct 09, 2012 12:34pm

    Shane Eckert

    7174 posts

    Hello Matt,

    Please be on the lookout for an email from EllisLab.

    Cheers,

  • #12 / Oct 17, 2012 9:16am

    Matt76

    75 posts

    Having issues with the backgrounds on some pages not showing up in chrome and IE now also.  Everything still works fine in firefox.  This issue developed recently.  The commenting issue still isn’t fixed.

  • #13 / Oct 17, 2012 2:47pm

    Dan Decker

    7338 posts

    Hi Matt,

    Looks like we have you in email still. Following up over there it seems that Robin sorted out the Commenting issue.

    For the time being, keep working with us via email so as not get confused on where we can best help you.

    Once we have everything sorted, we will follow up here with the solution.

    Thanks!

.(JavaScript must be enabled to view this email address)

ExpressionEngine News!

#eecms, #events, #releases