forums.eqdkp.com: ItemStats v1.5 (English, German, French) - forums.eqdkp.com

Jump to content

  • (16 Pages) +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

ItemStats v1.5 (English, German, French) for DotClear, e107, EqDKP, Invision Power Board, Nuked Klan, PhpBB, Pu Rate Topic: ****- 4 Votes

#1 Guest_Yahourt_*

  • Group: Guests

Post icon  Posted 23 September 2006 - 03:16 AM

Last news : Itemstats 1.5.5 is available at http://itemstats.free.fr
But it is the last Itemstats version, I have no time to do this project anymore (I have stop playing World of Warcraft) to concentrate on my studies.


Hello !

I have resumed the Itemstats project.

At the beginning, I just translate the Itemstats 1.3.1 for French objects. But gradually, with the improvements and modifications, I have done a separate version.

However, the structure and base is similar, so the most adaptations for other forums and portals will work even so.

ItemStats works with object name in English, German and French, you can put the Blizzard Item id followed by "en", "de" or "fr" to specify the object language (for example : [item]867en[/item], [item]867de[/item] or [item]867fr[/item]).


Itemstats 1.5 is avaible for these portals / forums :-> More adaptations are planned, you can also ask me the adaptation you need by email.

And it searchs on these databases :Improvements and modifications in comparison with old Itemstats (1.0 and 1.3.1) :
  • You can search on severals database website (Allakhazam, Thottbot, Buffed, etc.), and it is completely customizable (look at here for example)
  • Add SOCKET connection (no need cURL or fopen anymore). Thanks to Aki Uusitalo
  • You can use [itemico] to display the item icon instead of the colored name.
  • You can use Blizzard Item id to display an object
  • There are most improvements on Database MySQL access
  • The search on Thottbot is repaired
  • Two pages are useful :
    about.php, you can see if an update is avaible directly on your website.
    view_cache.php : you can see your table "item_cache" (for an example look at here)
  • You can write and display your own object (example here)
  • Many others improvements
The website is available in English and French, all types of installation are described in tutorials (with a lot of images).

You can have more details at : http://itemstats.free.fr

#2 User is offline   kapli

  • Member
  • Pip
  • Group: Members
  • Posts: 71
  • Joined: 17-February 06

Posted 23 September 2006 - 04:57 AM

Failed to update item: Myitem (Table 'dkp_reckless.item_cache' doesn't exist)

Any idea how to fix this?

#3 Guest_Yahourt_*

  • Group: Guests

Posted 23 September 2006 - 05:32 AM

View Postkapli, on Sep 23 2006, 01:57 PM, said:

Failed to update item: Myitem (Table 'dkp_reckless.item_cache' doesn't exist)

Any idea how to fix this?


Yes it is when Itemstats can't create the table.
You just have to Execute this query (for example on phpMyAdmin) :

CREATE TABLE IF NOT EXISTS `item_cache`
(`item_name` varchar(100) NOT NULL DEFAULT '',
 `item_id` varchar(100) DEFAULT '0',
 `item_lang` varchar(2) DEFAULT '',
 `item_link` varchar(100) DEFAULT NULL,
 `item_color` varchar(20) NOT NULL DEFAULT '',
 `item_icon` varchar(50) NOT NULL DEFAULT '',
 `item_html` text NOT NULL,
 UNIQUE KEY `item_name` (`item_name`),
 FULLTEXT KEY `item_html` (`item_html`))



Normally it create automatically the table, but it arrive on certain host it can't.

#4 User is offline   kapli

  • Member
  • Pip
  • Group: Members
  • Posts: 71
  • Joined: 17-February 06

Posted 23 September 2006 - 07:26 AM

k got it to work but I get this error:

Warning: date() expects parameter 2 to be long, string given in /home/tsh/public_html/eqdkp/viewnews.php on line 45

It doesn't do anything, just ugly that it is there.

#5 Guest_Yahourt_*

  • Group: Guests

Posted 23 September 2006 - 09:46 AM

View Postkapli, on Sep 23 2006, 04:26 PM, said:

k got it to work but I get this error:

Warning: date() expects parameter 2 to be long, string given in /home/tsh/public_html/eqdkp/viewnews.php on line 45

It doesn't do anything, just ugly that it is there.


I check the code and line 45 hasn't be modified by my Itemstats, but in the light of EqDKP is pré-modified file, you can overwrite old files already modify by an other mod or hack.

So can you send me (itemstats[ AT ]free.fr) the files you have before you put Itemstats, and I check what you have to change.

Thanks

#6 User is offline   kapli

  • Member
  • Pip
  • Group: Members
  • Posts: 71
  • Joined: 17-February 06

Posted 23 September 2006 - 01:24 PM

What? didnt understand :P

I have not done anything to viewnews.php with any addon, I tried to copy over again and now it says almost the same:
Warning: date() expects parameter 2 to be long, string given in /home/tsh/public_html/eqdkp/viewnews.php on line 40

Btw when I did that itemstats doesnt work so itemstats must have done something to viewnews.php

#7 Guest_AEZimmerman_*

  • Group: Guests

Posted 23 September 2006 - 02:27 PM

I am happy to see this updated... but I'm still having some problems.. I've been to your website.. I did the install as described... although I wasn't positive on a couple of the steps...

I edited the config_itemstats.php file- (English site) but I forgot to this first.. and I am also using a different template for the forums-
Here's where I modded the config file:

//$GLOBALS["prio"][] = 'judgehype';
$GLOBALS["prio"][2] = 'allakhazam';
//$GLOBALS["prio"][3] = 'blasc';
//$GLOBALS["prio"][1] = 'wowdbu';
$GLOBALS["prio"][0] = 'thottbot';

// Language default for Item's Id when not specified
// Example : [item]17182[/item] will choose this language
// It can be : 'en', 'fr', 'de'
define('item_lang_default', 'en');

And here is where I changed the template file for overall_header.tpl

<!-- link rel="stylesheet" href="templates/wowHorde/{T_HEAD_STYLESHEET}" type="text/css" -->
{ITEMSTATS_REFS}
<link rel="stylesheet" href="itemstats/templates/itemstats.css" type="text/css"\><script type="text/javascript" src="itemstats/overlib/overlib.js"><!-- overLIB © Erik Bosrup --></script>


(I wasn't positive where to add stuff or not)

and here is my test post- HELP!! I tried empting the item_cache table.. still in french... can you point me in the right direction? I would really love to get this working..

http://piratesofthec...opic.php?p=1092

#8 Guest_Yahourt_*

  • Group: Guests

Posted 23 September 2006 - 04:49 PM

View Postkapli, on Sep 23 2006, 10:24 PM, said:

What? didnt understand :P

I have not done anything to viewnews.php with any addon, I tried to copy over again and now it says almost the same:
Warning: date() expects parameter 2 to be long, string given in /home/tsh/public_html/eqdkp/viewnews.php on line 40

Btw when I did that itemstats doesnt work so itemstats must have done something to viewnews.php


Sorry for my english ^^

Yes, but I don't modify this part (line 40), so we haven't the same original file. I'm based on the viewnews.php of EqDKP 1.3.1 official.

Can you send me the file you have before you install Itemstats, it allows me to see what have changed and produced the error.

#9 Guest_Yahourt_*

  • Group: Guests

Posted 23 September 2006 - 04:59 PM

View PostAEZimmerman, on Sep 23 2006, 11:27 PM, said:

I am happy to see this updated... but I'm still having some problems.. I've been to your website.. I did the install as described... although I wasn't positive on a couple of the steps...

I edited the config_itemstats.php file- (English site) but I forgot to this first.. and I am also using a different template for the forums-
Here's where I modded the config file:

//$GLOBALS["prio"][] = 'judgehype';
$GLOBALS["prio"][2] = 'allakhazam';
//$GLOBALS["prio"][3] = 'blasc';
//$GLOBALS["prio"][1] = 'wowdbu';
$GLOBALS["prio"][0] = 'thottbot';

// Language default for Item's Id when not specified
// Example : [item]17182[/item] will choose this language
// It can be : 'en', 'fr', 'de'
define('item_lang_default', 'en');

And here is where I changed the template file for overall_header.tpl

<!-- link rel="stylesheet" href="templates/wowHorde/{T_HEAD_STYLESHEET}" type="text/css" -->
{ITEMSTATS_REFS}
<link rel="stylesheet" href="itemstats/templates/itemstats.css" type="text/css"\><script type="text/javascript" src="itemstats/overlib/overlib.js"><!-- overLIB © Erik Bosrup --></script>
(I wasn't positive where to add stuff or not)

and here is my test post- HELP!! I tried empting the item_cache table.. still in french... can you point me in the right direction? I would really love to get this working..

http://piratesofthec...opic.php?p=1092


First, yout theme modification is almost good (but you had the Javascript and Styles twice), you can just put :
<!-- link rel="stylesheet" href="templates/wowHorde/{T_HEAD_STYLESHEET}" type="text/css" -->
{ITEMSTATS_REFS}


So, for unfound items, can you test this in itemstats config :
$GLOBALS["prio"][] = 'allakhazam';
$GLOBALS["prio"][] = 'thottbot';
//$GLOBALS["prio"][] = 'judgehype';
//$GLOBALS["prio"][] = 'blasc';
//$GLOBALS["prio"][] = 'wowdbu';

If it doesn't work, can you test with default itemstats config files ?

Finally if it is not good, please contact me by mail and we will see that together.

#10 Guest_AEZimmerman_*

  • Group: Guests

Posted 23 September 2006 - 11:20 PM

Quote

If it doesn't work, can you test with default itemstats config files ?

Finally if it is not good, please contact me by mail and we will see that together.


how do I test this? and when i mouse over it's in french lmao =)

Somehow I broke my phpRaid signups trying to fix itemstats lol so I just did a clean install.. let me know how I should test it... I've tried using all the sites and then just the english ones.

#11 Guest_Yahourt_*

  • Group: Guests

Posted 24 September 2006 - 08:24 AM

View PostAEZimmerman, on Sep 24 2006, 08:20 AM, said:

how do I test this? and when i mouse over it's in french lmao =)

Somehow I broke my phpRaid signups trying to fix itemstats lol so I just did a clean install.. let me know how I should test it... I've tried using all the sites and then just the english ones.


I have done severals modification, so if you can download again Itemstats1.5_core.rar on my website and replaces all your old files by new (except config.php that doesn't change).
It will give more information on the problem.

Do you have an old Itemstats on your site before ?
Because I think your website doesn't have Curl, it will explain your problem.

If this doesn't work, send me a mail.

#12 Guest_Nuphor_*

  • Group: Guests

Posted 26 September 2006 - 06:08 AM

Viewing any topic with the mod installed reveals the following error:

Posted Image

It appears to be tied to parser.php, but I have no idea how to fix it.

#13 Guest_Yahourt_*

  • Group: Guests

Posted 26 September 2006 - 06:24 AM

View PostNuphor, on Sep 26 2006, 03:08 PM, said:

Viewing any topic with the mod installed reveals the following error:

Posted Image

It appears to be tied to parser.php, but I have no idea how to fix it.


When do you have downloaded the Itemstats1.5 Core ?

Normally I have done an update of the PunBB Adaptation and I have tested it.
Can you give me more information ? Version of PunBB ?

#14 Guest_Nuphor_*

  • Group: Guests

Posted 26 September 2006 - 07:18 AM

I'm running PunBB 1.2.12 & the latest core downloaded from your site today. If you need any more info feel free to ask!

#15 Guest_Yahourt_*

  • Group: Guests

Posted 26 September 2006 - 09:41 AM

View PostNuphor, on Sep 26 2006, 04:18 PM, said:

I'm running PunBB 1.2.12 & the latest core downloaded from your site today. If you need any more info feel free to ask!


I find where is the error, I have update the Itemstats 1.5 Core.rar on my website.

I'm so sorry >< It was a character added by error ^^ after I do the test on PunbBB.


Thanks for using Itemstats :)

  • (16 Pages) +
  • 1
  • 2
  • 3
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users