IE 8 cursor textbox thingy...

Get help with installation and running phpBB 3.0.x here. Please do not post bug reports, feature requests, or MOD-related questions here.
Scam Warning
Forum rules
END OF SUPPORT: 1 January 2017 (announcement)
HAPDev
Registered User
Posts: 205
Joined: Fri Jul 25, 2008 7:36 pm

IE 8 cursor textbox thingy...

Post by HAPDev »

Apologies if this has been asked before.

This seems to happen on other PHPBB forums I am a member on as well.

Happens on my site too 3.0 phpbb.

Doesn't seem to happen here.

Composing a private message, after getting about 50 lines down in a post, the scrollbar forceably jumps to the top of the text input window repeatedly.

Im unable to see what I am typing. As I type, it pops down to the cursor location for the moment that i hit the key, then pops back up to the top again.

Only started happening after I got on Vista and IE8.

I assume this also happens with posting messages on the forum, and other text input boxes.

Any idea?
Last edited by Pit$Bull on Mon Aug 31, 2009 8:28 pm, edited 1 time in total.
Reason: Topic icon changed
Pit$Bull
Former Team Member
Posts: 23099
Joined: Sat Dec 02, 2006 4:08 pm
Name: Can't Remember

Re: IE 8 cursor textbox thingy...

Post by Pit$Bull »

Add this

Code: Select all

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

to your overall_header.html

I suggest you update to the latest version 3.0.5
User avatar
jake_ie8team
Registered User
Posts: 2
Joined: Fri Aug 28, 2009 6:54 pm

Re: IE 8 cursor textbox thingy...

Post by jake_ie8team »

It's possible that this site isn't fully standards compliant. In that case, activate IE 8's Compatibility View by clicking the icon next to the address bar that looks like a broken piece of paper. This will force IE 8 to render the page like IE 7 does, which may fix this issue. IE 8 will then conveniently continue to turn on Compatibility View whenever you visit this domain.

If that doesn't solve your problem, it may be an issue with IE 8 and Vista. Consult this guide to see if there is a solution there - How to troubleshoot Internet Explorer issues in Windows Vista and in Windows XP - http://support.microsoft.com/kb/936215

I hope one of these suggestions helps.

- Jake

MSFT Internet Explorer Outreach Team
HAPDev
Registered User
Posts: 205
Joined: Fri Jul 25, 2008 7:36 pm

Re: IE 8 cursor textbox thingy...

Post by HAPDev »

I spose an example is in order just to see if we can actually come up with a solid reason:

http://forum.videohelp.com

Username: phpbb1
Password: phpbb

Compose a new post and just paste this text in:

Before you post please observe our following tips and rules

•Please try to do some basic research before posting. Most fundamental questions are answered on the How To's on this site.

•Using the Forum search feature can yield rich rewards as most questions have already been previously answered.

Forum post rules
•Do NOT give, link, ask, provide or advocate WAREZ.

•Warez includes downloaded copyrighted movies and TV-series/shows and copying rented movies.

•Do NOT post the same topic on several forums. Once is enough. If you are not sure which forum to post in, pick one. If it is wrong, a mod will move it.

•Please try to post in the right forum. This forum is for Latest Video News.
•Choose a subject that describes your topic. Do not use subjects like Help me!!! or only Problems.
•Try to frame your question clearly with details on what you've done. No one here is psychic...

If you don't follow our rules your post may be removed without notice or you may get banned without notice. You find our complete Forum rules / Acceptable Use Policy(AUP) here.


Then just put your cursor at the end of that text and tpe something. You'll see the scrollbar jump around every letter you type. But it always jumps to the top so you cant see what you're typing.

This is not my web site but the same thing happens on my sites.
User avatar
stevemaury
Support Team Member
Support Team Member
Posts: 52797
Joined: Thu Nov 02, 2006 12:21 am
Location: The U.P.
Name: Steve

Re: IE 8 cursor textbox thingy...

Post by stevemaury »

This is a known IE bug which is fixed in version 3.0.5. So just update.
I can stop all your spam. I can upgrade or update your Board. PM or email me. (Paid support)
HAPDev
Registered User
Posts: 205
Joined: Fri Jul 25, 2008 7:36 pm

Re: IE 8 cursor textbox thingy...

Post by HAPDev »

Thanks.
chris.h
Registered User
Posts: 22
Joined: Wed May 23, 2007 11:27 am
Location: Evesham

Re: IE 8 cursor textbox thingy...

Post by chris.h »

stevemaury wrote:This is a known IE bug which is fixed in version 3.0.5. So just update.
I'm using 3.0.5 and getting this problem?
KFCSmitty
Registered User
Posts: 10
Joined: Tue Jul 13, 2004 7:02 pm

Re: IE 8 cursor textbox thingy...

Post by KFCSmitty »

*edit* Nevermind, fixed it.
User avatar
beggers
Registered User
Posts: 1257
Joined: Fri Nov 23, 2001 8:19 pm
Location: Las Vegas

Re: IE 8 cursor textbox thingy...

Post by beggers »

KFCSmitty wrote:*edit* Nevermind, fixed it.
Could you please post the exact solution? I'm having this problem, too (and I can't update yet). Thanks.
chris.h
Registered User
Posts: 22
Joined: Wed May 23, 2007 11:27 am
Location: Evesham

Re: IE 8 cursor textbox thingy...

Post by chris.h »

stevemaury wrote:This is a known IE bug which is fixed in version 3.0.5. So just update.
I keep reading this however I'm using version 3.0.5 and having this issue still? do i need to update the original version 3.0.5 I downloaded?
KFCSmitty
Registered User
Posts: 10
Joined: Tue Jul 13, 2004 7:02 pm

Re: IE 8 cursor textbox thingy...

Post by KFCSmitty »

Hey, sorry. I had to change it in my template.

In your template directory change posting_body.html

\Styles\<StyleName>\template\posting_body.html

Look for the input box for the message..it should have {MESSAGE} in the code and replace that code with.

Code: Select all

<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>
User avatar
beggers
Registered User
Posts: 1257
Joined: Fri Nov 23, 2001 8:19 pm
Location: Las Vegas

Re: IE 8 cursor textbox thingy...

Post by beggers »

KFCSmitty wrote:Hey, sorry. I had to change it in my template.

In your template directory change posting_body.html

\Styles\<StyleName>\template\posting_body.html

Look for the input box for the message..it should have {MESSAGE} in the code and replace that code with.

Code: Select all

<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>
KFCSmitty, you are a GOD! This actually solved the berserk cursor problem in IE8! My hat's off to you. I really appreciate your help. :D
Elglobo
Former Team Member
Posts: 838
Joined: Mon May 22, 2006 5:16 pm
Location: France
Name: Mickaël SALFATI

Re: IE 8 cursor textbox thingy...

Post by Elglobo »

Hi,

I had exactly the same issue with phpBB 3.0.5. I checked my overall_header and I have:

Code: Select all

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
I have already the code submited by KFCSmitty in my template.

Any other Idea ?
phpBB-Services.com: L'hébergement et l'assistance de votre forum phpBB en toute tranquillité.
Paul
Infrastructure Team Leader
Infrastructure Team Leader
Posts: 28948
Joined: Sat Dec 04, 2004 3:44 pm
Location: The netherlands.
Name: Paul Sohier

Re: IE 8 cursor textbox thingy...

Post by Paul »

Its a issue with IE8, if the above tag doesnt work, the only solution probarly is changing browser.
User avatar
rphMedia
Registered User
Posts: 166
Joined: Sun Oct 22, 2006 3:03 pm
Location: Maine, USA

Re: IE 8 cursor textbox thingy...

Post by rphMedia »

Paul wrote:Its a issue with IE8, if the above tag doesnt work, the only solution probarly is changing browser.
FWIW, this is still an issue (3.0.6).

Is this really the only solution? Has anyone figured out why this happens?
Regards,

Ron

Return to “[3.0.x] Support Forum”