anyone?

EQDKP integration forum

anyone?

Postby swiftop » Tue Aug 29, 2006 2:41 pm

Does the EQdkp work with the Dragonfly CMS version?
swiftop
WR.net Apprentice
WR.net Apprentice
 
Posts: 1
Joined: Tue Jul 04, 2006 5:23 pm

anyone?

Postby Anaxent » Tue Aug 29, 2006 4:10 pm

I have modded the eqdkp sync script to work with DF but there is still a bit to do there and I would also wait to see what is coming.
User avatar
Anaxent
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 642
Joined: Tue Jul 04, 2006 6:27 am
Location: Phoenix, Az

Re: anyone?

Postby Defcon718 » Sat Dec 02, 2006 4:00 am

i got the script to work in no time, but i noticed it perform full one way sync. it will update my eqdkp with all new guild members, but will not delete the non existing members.
is this by design, a limitation, or am i doing something wrong?

thanx for the help
Defcon718
WR.net Apprentice
WR.net Apprentice
 
Posts: 1
Joined: Wed Nov 22, 2006 10:58 pm

Re: anyone?

Postby daddelkopp » Mon Feb 26, 2007 3:56 pm

For all german/french users of the bridge_eqdkp_roster_v0.5.zip

I fixed some errors with german "Umlaute" (UTF8).

With a German Roster, all "Jäger" (Hunter) was copied as "Unknown" into the dkp because reading of the database was not UTF8.

And if you have a GuildRank with Umlaute or UTF8 syntax (like è) there was an display error,too.

Here is the fix for sync_roster_members_with_eqdkp.php:

Find line 88:
Code: Select all
         echo "# RST> Processesing Roster GuildRank with guild_rank: " . $guildrank['guild_rank'] . " and guild_title: " . $guildrank['guild_title'] . " <BR>";


Change to:
Code: Select all
         echo "# RST> Processesing Roster GuildRank with guild_rank: " . $guildrank['guild_rank'] . " and guild_title: " . utf8_decode($guildrank['guild_title']) . " <BR>";


Find line 97:
Code: Select all
      $insertrosterrank['rank_name'] = $guildrank['guild_title'];


Change to:
Code: Select all
      $insertrosterrank['rank_name'] = utf8_decode($guildrank['guild_title']);


Find line 160:
Code: Select all
         echo "# RST> Processesing Roster Member with member_id: " . $rostermember['member_id'] . " and Name: " . $rostermember['name'] . " <BR>";


Change to:
Code: Select all
         echo "# RST> Processesing Roster Member with member_id: " . $rostermember['member_id'] . " and Name: " . utf8_decode($rostermember['name']) . " <BR>";


Find line 166:
Code: Select all
      if ($rostermember['guild_rank'] == 0) {


Change to:
Code: Select all
      if (utf8_decode($rostermember['guild_rank']) == 0) {


Find line 172:
Code: Select all
      $insertrosterrecord['member_class'] =   $rostermember['class'];


Change to:
Code: Select all
      $insertrosterrecord['member_class'] =   utf8_decode($rostermember['class']);


Find line 173:
Code: Select all
      $insertrosterrecord['member_class_id'] = checkclass ($rostermember['class'], $rostermember['level']);



Change to:
Code: Select all
      $insertrosterrecord['member_class_id'] = checkclass (utf8_decode($rostermember['class']), $rostermember['level']);



Sorry for my english. Have fun
daddelkopp
User avatar
daddelkopp
WR.net Journeyman
WR.net Journeyman
 
Posts: 99
Joined: Wed Jan 03, 2007 10:22 am

anyone?

Postby Arkel » Sat Sep 15, 2007 1:50 am

ok trying to get this all to work here.

Anaxent a Q for you do you have this working yet for DF? From what I can tell everything is in it's proper place it just will not populate at all.

Please let me know what I need to list up here for you to take a look at...

Thank you
[url=http://www.bronzedragonlords.com]Image
[/url]
User avatar
Arkel
WR.net Journeyman
WR.net Journeyman
 
Posts: 112
Joined: Thu Sep 07, 2006 8:42 am

anyone?

Postby Arkel » Sun Sep 16, 2007 2:20 am

I hope I can get a little help here.
This is my config.inc.php file.
I do run:
Dragonfly CMS Version 9.1.2.1
PHP Version 4.3.4
MySQL Version 4.1.18-standard (client: 3.23.49)
WowRoster 1.7.3

Code: Select all
<?

$eqdkp_db        = "eqdkp";
$eqdkp_prefix    = "eqdkp_";
$eqdkp_host      = "mysql01.discountasp.net";
$eqdkp_user      = "********";
$eqdkp_password  = "*******";

$roster_db       = "roster";
$roster_prefix   = "roster_";
$roster_host     = "mysql01.discountasp.net";
$roster_user     = "*******";
$roster_password = "********";
$roster_guildid = 1;

$debug = 1;
$sqldebug = 0;

?>


Now I get a blank screen when I run: sync_roster_members_with_eqdkp.php

I have also tried:

Code: Select all
$roster_db       = "cms_wowrosterdf_roster";
$roster_prefix   = "cms_wowrosterdf_roster_";


Now if I am right the the username & password is the ones to the database...

I would really like to get this going please. I know you all are hard at work on 2.0 and the new addons for it....

Thank you
[url=http://www.bronzedragonlords.com]Image
[/url]
User avatar
Arkel
WR.net Journeyman
WR.net Journeyman
 
Posts: 112
Joined: Thu Sep 07, 2006 8:42 am

Previous

Return to EQDKP

Who is online

Users browsing this forum: No registered users and 0 guests

cron