![]() |
Yeah, what Sweede said..
|
Quote:
|
Quote:
|
Quote:
i'll look at it tonight after my wife goes to bed and i'm up wasting time so i dont ruin my sleep schedule. |
Quote:
The only cool thing i like about the wowdb site is the wishlist builder thing. everything else is exactly like wowhead except flashier and "larger". wowhead.com is also am infinetly faster website. The original creator of the website did not get the full value of the website when he sold it. |
Anyone have this running on 3.7?
|
works fine on 3.7 , when i added this to vb.org 3.7 wasnt out. i didnt feel the need to create a duplicate entry for vbb 3.7
|
Does this version do spell linking as well?
|
Any instructions on install? Very new to all this. Thanks.
|
Never mind got it!!
|
Quote:
|
Quote:
I ended up fixing it by just caching the external JavaScript locally for now. Looking into a more elegant solution presently. |
This was more insidious than I had imagined. Not only is there a conflict with base and the external script, but apparently modifying the headers while a page is loading (which is exactly what this plugin attempts to do) causes the operation aborted error as well.
More details here: http://shauninman.com/archive/2007/0...ration_aborted |
I don't know why, but i am completly unable to reproduce the issue in IE 7.0. It really limits my ability to test and debug this issue completly.
Also, my plugin doesnt modify the headers in IE. It modifies the headers in PHP memory before IE even knows it exists. This isn't the source of the error. It's the wowhead javascript file that is the apparent problem. It also appears that a possible solution is simply adding a </base> tag to close off the <base> tag. For those who do and can reproduce this issue, try modifying the wowhead_headerinclude template and add </base> to the very first line (before <!-- WoWHead Mouseover-Tooltips --> ) and let me know how that works for you ? |
I found that users with different permissions for photoplog also caused the error.
I'm just installing the vbsurvey tool atm, will try your fix after that's done. |
Quote:
Trying your fix now as well. I'll report back here with results. |
Adding </base> at the top of the default template worked for me. Dirty workaround though. :)
|
it doesnt seem to be an issue with IE7 except in rare rare instances, this seems to be pointed to older IE such as IE 6 which apparently quite of my users still use.
|
I am also seeing the vbulletin SQL_DB::escape_string_like errors. A Fix for this would be greatly appreciated.
Unless most of the functions that are defined in vbulletin_wowhead.php (that are duplicated by the vbulletin plugin) are commented out, you get duplicate defined functions. With the functions commented, SQL_DB::escape_string_like errors occur. This appears to indicate the use of EQDKP hack and the use of the vbulletin mod are mutually exclusive. |
Is there a way that the items can be shown in German?
|
Quote:
The error is most likely because the database class object in EqDKP and Vbulletin share the same name ($db). to work around this, i unset the $db variable and reference the vbulletin DB exclusivly , $vbulletin->db-> Since i do not care about eqdkp data, I had to some how force eqdkp to go into the vbulletin class to pull the data from the database. Since most likely your EqDKP installation and your vbulletin installation will be in different directories (i.e. /forums and /eqdkp ), i have to change the php script local path (via chdir) to the vbulletin directroy, run all of the stuff i need to, then change back to EqDKP. Currently i have on line 25, PHP Code:
Please try removing line 25 and placing the following; before line 13. PHP Code:
PHP Code:
|
Quote:
the plugin works as follows; https://vborg.vbsupport.ru/showpost....4&postcount=36 the question i would have for you, is that if you visit wowhead.com, is the website in german or english ? |
Quote:
|
For those that are having issues, would you please revert any work aroudns you may have done and try the following.
Plugins & Products -> Add New Plugin Product WoW Head ItemStats Hook Location global_complete Title Wowhead Itemstats base tag fix Plugin PHP Code Code:
$output = preg_replace("/(<base href=\".*\">)/", Thank you. |
If you edit a post the item bold disapears.
Also I tried doing the above edit however is there a way to avoid the IE error if the page has not finished loading? Is there a way to make it so the links dont function till the page loads. |
Quote:
https://vborg.vbsupport.ru/showpost....2&postcount=21 The Ajax editor doesnt understand what is going on since i take the item bbcode and turn it into a URL. when you edit or make a post with the WYSIWYG editor interface, it just thinks your making a normal URL type bbcode tag and drops the css information about the item link |
So any advice on how to avoid the IE crashes when u mouseover a link?
|
Installed this mod on 3.6.9 and it's buggered the site, can't access it or the admin panel, error get is:
Fatal error: Cannot redeclare http_get() in ......../includes/init.php(336) : eval()'d code on line 60 Can any help me getting this fixed pleasE? |
OLDrCF is your host not allowing remote file calls?
|
According to them Fsockopen was enabled (if that's the one) but not sure otherwise ... I just want to remove the mod and get the forums working at this stage and will investigate further afterwards.
|
Your issue has nothing to do with remote file calls, but something that i should not have done in the first place.
First, lets get rid of your issue. To do this we're going to have to disable the plugin in SQL itself. Open up phpmyadmin or some other tool to log into your vbulletin forum database. Run the following: Code:
UPDATE PREFIX_plugin SET active = 0 WHERE product = "wowhead_itemstats" Once this is done, you should be able to log into your admin panel once again. I have updated my product so that if you have an existing plugin that already contains a function called "http_get" you wont run into the same issue as OLDrCE. |
Quote:
Unfortunately i do not. I have not been able to reproduce the issue effectively enough to properly create a work around. Look through this thread though, there might be some info buried in here that i may have missed. |
Well I ended up just nuking the site and going from an older backup. I'll have another crack at it this week and let you know how I get on sweede - although this time I'll be backing up before I do anything :D.
|
I'm assuming that this requires EqDKP to be installed?
|
it does not ned eqdkp at all.
|
Quote:
|
My problem is that in IE 8.0 (even in IE 7.0 compat mode), it does NOT cause an operation aborted error. even before, my page loads were always -very- fast as i never used graphics heavy skins.
http://support.microsoft.com/default.aspx/kb/927917 However, IE 8.0 always displays this inconsistancy so i can test possibilities until the error goes away. So, reading the KB article and another source, the script tag in HTML 4.0 has an attribute called "DEFER" http://www.htmlcodetutorial.com/scri...IPT_DEFER.html Loading up the wowhead_headerinclude template and simply adding "DEFER" in the script tag caused the error message to go away. HTML Code:
<script DEFER src="http://www.wowhead.com/widgets/power.js" type="text/javascript"></script> |
Quote:
I will though, be adding EqDKP back to my test site and re-writing some of EqDKP to better intergrate with this mod for those that use both on their guild sites. |
Sweede, GENIUS. It works wonders. Got it working on my test sie with the code.
Also not after doing some research I believe the proper way is to use: Quote:
|
Hey Sweede --
The BBCode icon for the [item] tag is now broken. Apparently the wowhead link is no longer valid. Can you please let me know where I should update the link and what I should update it to? Thanks. |
All times are GMT. The time now is 07:35 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|