vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Internet explorer cannont open the internet site [thread] Operation Aborted

This is a discussion on Internet explorer cannont open the internet site [thread] Operation Aborted within the Troubleshooting forums, part of the vBSEO SEO Plugin category; and this brings up the <base /> tag again! Operation Aborted // ShaunInman.com remember that?...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > Troubleshooting

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read

Reply

 

LinkBack Thread Tools
  #31  
Old 08-06-2008, 07:25 PM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,470
and this brings up the <base /> tag again!
Operation Aborted // ShaunInman.com

remember that?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #32  
Old 08-06-2008, 07:26 PM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,470
and since vbseo adds the base href, it explains why it happens when vbseo is on
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #33  
Old 08-06-2008, 07:28 PM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,470
faq - swfobject - Google Code - SWFObject FAQ

Quote:
4. How do I prevent Internet Explorer from crashing when a <base> tag is defined?

Including a closing </base> tag will prevent this bug in Internet Explorer being triggered. Because for HTML 4 compliant pages (a closing base tag is forbidden under HTML 4), you could use Internet Explorer conditional comments to keep your HTML valid and still include a closing base tag for HTML 4 documents:
<base href="http://www.yourdomain.com/"><!--[if IE]></base><![endif]-->
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #34  
Old 08-06-2008, 07:47 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,449
Blog Entries: 1
Yes, looks like there is a number of possible reasons.
Although vBSEO inserts self-closing <base> tag, please try to modify functions_vbseo.php file:
find:
PHP Code:
$newtext preg_replace('#<head>#i'"$0\n".'<base href="'.$vboptions['bburl2'].(defined('VBSEO_BASE_URL')?VBSEO_BASE_URL:'').'/" />'$newtext1); 
replace with:
PHP Code:
$newtext preg_replace('#<head>#i'"$0\n".'<base href="'.$vboptions['bburl2'].(defined('VBSEO_BASE_URL')?VBSEO_BASE_URL:'').'/" /><!--[if IE]></base><![endif]-->'$newtext1); 
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #35  
Old 08-07-2008, 01:58 AM
briansol's Avatar
Senior Member
vBSEO Pre-Release TeamDesign for SEOBig Board Administrator
 
Real Name: Brian
Join Date: Apr 2006
Location: Central CT, USA
Posts: 5,470
the self-closer might be a pain with ie still.

that will print
<base . . . . /></base>


perhaps, this shold be moved to include the is_browser() function as defined in vb's /includes/functions.php. Saves from relying on the IE conditional as well.


in functions_vbseo.php
@line 28

add with the other pre-page includes:
PHP Code:
include_once VBSEO_DIRNAME '/functions.php'
then
@line 1495-ish

replace the $newtext line with:

PHP Code:

if(is_browser('ie')) {
   
$newtext preg_replace('#<head>#i'"$0\n".'<base href="'.$vboptions['bburl2'].(defined('VBSEO_BASE_URL')?VBSEO_BASE_URL:'').'/"></base>'$newtext1);  
}
else
{
   
$newtext preg_replace('#<head>#i'"$0\n".'<base href="'.$vboptions['bburl2'].(defined('VBSEO_BASE_URL')?VBSEO_BASE_URL:'').'/" />'$newtext1);  

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #36  
Old 08-07-2008, 06:20 AM
Member
 
Real Name: Akasha
Join Date: Jul 2008
Posts: 33
Quote:
Originally Posted by Oleg Ignatiuk View Post
Yes, looks like there is a number of possible reasons.
Although vBSEO inserts self-closing <base> tag, please try to modify functions_vbseo.php file:
find:
PHP Code:
$newtext preg_replace('#<head>#i'"$0\n".'<base href="'.$vboptions['bburl2'].(defined('VBSEO_BASE_URL')?VBSEO_BASE_URL:'').'/" />'$newtext1); 
replace with:
PHP Code:
$newtext preg_replace('#<head>#i'"$0\n".'<base href="'.$vboptions['bburl2'].(defined('VBSEO_BASE_URL')?VBSEO_BASE_URL:'').'/" /><!--[if IE]></base><![endif]-->'$newtext1); 
So far that change seems to be working! I've managed to open the thread no problem, I will ask everyone else who was having problems to check too!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #37  
Old 08-07-2008, 12:05 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,449
Blog Entries: 1
Great! And thanks to Brian for discovering that
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #38  
Old 08-08-2008, 05:20 AM
Member
 
Real Name: Akasha
Join Date: Jul 2008
Posts: 33
Yes, thankyou Brian!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #39  
Old 08-09-2008, 10:28 AM
Senior Member
 
Real Name: Stewart
Join Date: Apr 2007
Posts: 184
I've done the change but still have people complaining even after clearing their cache.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #40  
Old 08-11-2008, 09:43 AM
losteddesirees's Avatar
Junior Member
 
Real Name: Maria
Join Date: Jul 2008
Location: Heaven
Posts: 2
same trouble there with IE7 , I replaced the code into functions_vbseo.php and nothing change :( .... simply when I`m activate vbseo some part of forum cant open .
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #41  
Old 08-30-2008, 02:00 AM
djawir's Avatar
Junior Member
 
Real Name: Adri
Join Date: Feb 2008
Location: Indonesia
Posts: 17
Send a message via Yahoo to djawir
already change code, when open new reply, new thread, register, send message still get "operation aborted" warning using IE7

help fix this
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42  
Old 09-04-2008, 03:25 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,449
Blog Entries: 1
Quote:
already change code, when open new reply, new thread, register, send message still get "operation aborted" warning using IE7
Does it work correctly with vBSEO disabled for you?
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43  
Old 09-04-2008, 06:26 PM
djawir's Avatar
Junior Member
 
Real Name: Adri
Join Date: Feb 2008
Location: Indonesia
Posts: 17
Send a message via Yahoo to djawir
problem solved for me

this issue caused lightbox for image resizer
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
About internet directories class101 General Discussion 5 12-30-2007 08:55 PM
Internet Explorer 7, beta 2 is available Mike General Discussion 30 06-13-2006 04:35 PM
404 errors in Internet Explorer - AFTER the page loads up Gav Troubleshooting 3 05-16-2006 06:21 PM


All times are GMT -4. The time now is 01:10 PM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.