• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

PHPraiderViewer

 

Project Updated:
Files Updated: Sun, Oct 25 2009
Supports Game Version: 3.1.0
Category: Boss Encounters
Tags:

, and [Edit Tags]

Project Manager: flintman
Additional Authors: No additional authors
Current Version: Phpraider 1.0.8
License: All Rights Reserved
Development Site: CurseForge.com
Avg Daily DL (last 30 days): 10
Downloads Total: 23,437
Favorites: 61
Comments: 59
  • About PHPraiderViewer
  •  

ANY ISSUES PLEASE EMAIL ME I HAVE ALOT OF PROJECTS IM DOING SO PLEASE SUBJECT 'PHPRAIDERVIEWER' Thanks

This is the updated viewer to take the changes to phpraider Download the the phpraiderviewer and add to your interface/addons folder. Then select the download for the website inviter either phpraider or phpraid


WORLD OF WARCRAFT ADDON ___________________________________________________

PhpraiderViewer 4.2 Updated to 3.1.x

Phpraiderviewer 4.1 Beta Accepts the changes to 3.0.3 Added DeathKnight


Phpraiderviewer 4.0 Beta Accepts the changes to 3.0.2 If any issues please email them to flintman@thenoblealliance.com


Phpraiderviewer 3.5 Beta repaired errors and not displaying when over 5 roles. Moved All Config Options to another Frame

PhpraiderViewer 3.6 BETA repaired an error with pulling roles from phpraider KNOWN ISSUE if your roles id from the database is greater then 9 you can't invite via ROles only by class

PhpraiderViewer 3.7 Beta Updated TOC Added in check for raids on lua if none then a message will display


WEBSITE SIDE FILES TO GET THE LUA ____________________________________________________

EQDKP plus RaidPlan4.0.0 (filename raidplan4BETA) The files needed to be able to get the lua output for the ingame inviter http://www.eqdkp-plus.com/news.php

Phpraider V 1.0.7DK BETA Added Dk to the LUA file. Need to add a class and name it 'dk'

Phpraider V 1.0.7b BETA Changed the way pulles Roles from phpraider. Now the Role ID doesn't matter if it's out of order

phpraider V1.0.7 Beta The files needed to be able to get a lua output for the ingame inviter. And added in the French Language File

Phpraider V1.0.6c Repairs the issue with names being close together and in the same account as mefistofeles stated below


Phpraid 3.0.9.2 The files need to be replaced for phpraid 3.0.9.2 in order to get the lua output for the ingame inviter

I REMOVED SOME OF THE OLDER FILES TO MAKE FILES EASIER TO FINE I STILL HAVE THE OLD FILES IF NEED EMAIL ME (FLINTMAN@THENOBLEALLIANCE.COM) I CAN SEND IT OUT

  • Downloads (7)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  PHPraiderViewer Phpraider 1.0.8 Release 3.1.0 180 10/25/2009
  PHPraiderViewer PhpRaidViewer 4.2 Release 3.1.0 901 6/3/2009
  PHPraiderViewer Phpraider 1.0.7 DK Support Beta 3.0.3 270 11/26/2008
  PHPraiderViewer Phpraider 1.0.7 DK Support Beta 3.0.3 51 11/26/2008
  PHPraiderViewer PhpRaiderView 4.1 Beta 3.0.3 487 11/26/2008
  • Screenshots (2)
  •  
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • little fix:

    open phpRaidViewer.lua

    change on line 525

    signup_count = phpRaid_Data["raids"][i]["druids_count"] + phpRaid_Data["raids"][i]["hunters_count"] + phpRaid_Data["raids"][i]["mages_count"] + phpRaid_Data["raids"][i]["paladins_count"] + phpRaid_Data["raids"][i]["priests_count"] + phpRaid_Data["raids"][i]["rogues_count"] + phpRaid_Data["raids"][i]["warriors_count"] + phpRaid_Data["raids"][i]["warlocks_count"] + phpRaid_Data["raids"][i]["shaman_count"] + phpRaid_Data["raids"][i]["deathknight_count"]

    to

    signup_count = phpRaid_Data["raids"][i]["druids_count"] + phpRaid_Data["raids"][i]["hunters_count"] + phpRaid_Data["raids"][i]["mages_count"] + phpRaid_Data["raids"][i]["paladins_count"] + phpRaid_Data["raids"][i]["priests_count"] + phpRaid_Data["raids"][i]["rogues_count"] + phpRaid_Data["raids"][i]["warriors_count"] + phpRaid_Data["raids"][i]["warlocks_count"] + phpRaid_Data["raids"][i]["shamans_count"] + phpRaid_Data["raids"][i]["deathknights_count"]

    on line 605

    PRV_MainFrameShamanLabel:SetText(TEXT_UI_SHAMAN.." ("..phpRaid_Data["raids"][cur_raid_id]["shaman_count"]..")")

    to

    PRV_MainFrameShamanLabel:SetText(TEXT_UI_SHAMAN.." ("..phpRaid_Data["raids"][cur_raid_id]["shamans_count"]..")")

    on line 606

    PRV_MainFrameDeathknightLabel:SetText(TEXT_UI_DK.." ("..phpRaid_Data["raids"][cur_raid_id]["deathknight_count"]..")")

    to

    PRV_MainFrameDeathknightLabel:SetText(TEXT_UI_DK.." ("..phpRaid_Data["raids"][cur_raid_id]["deathknights_count"]..")")

    on line 617

    PRV_AddClassToList("shaman")

    to

    PRV_AddClassToList("shamans")

    on line 618

    PRV_AddClassToList("deathknight")

    to

    PRV_AddClassToList("deathknights")

    after the changes it will work

    Reply Report Permalink
  • Discovered an error related to the phpRaid_Data.lua that is generated by the Wow Raid Manager version 4.03
    In the addon all of the classes except Shaman and Deathknight ends with 'S'
    And the classes generated with Wow Raid Manager version 4.03 makes all classes end with 'S'

    This is what WRM is generates(changed the order so its easyer to see)
    ["deathknights_count"] = "0",
    ["shamans_count"] = "0",
    ["druids_count"] = "0",
    ["hunters_count"] = "0",
    ["mages_count"] = "0",
    ["paladins_count"] = "0",
    ["priests_count"] = "0",
    ["rogues_count"] = "0",
    ["warlocks_count"] = "0",
    ["warriors_count"] = "0",

    And this is what the addon looks for(changed the order so its easyer to see)
    ["deathknight_count"] = "0",
    ["shaman_count"] = "0",
    ["druids_count"] = "0",
    ["hunters_count"] = "0",
    ["mages_count"] = "0",
    ["paladins_count"] = "0",
    ["priests_count"] = "0",
    ["rogues_count"] = "0",
    ["warlocks_count"] = "0",
    ["warriors_count"] = "0",

    Not sure how to fix this,tried to replace Shaman and Deathknight with Shamans and Deathknights in all the files,but it didnt work.
    Any suggestion on how to make this work with WRM?

    Reply Report Permalink
  • Ludolink said 

    after many hours of crying because the addon does'nt work with my french client, i see that the Lua output give me this:
    phpRaid_Data = {
    ["lua_version"] = "40",

    or, with the PHPraiderViewer PhpRaiderView 4.1, the good lua_version is the "41". So, that's work now but i have to edit all of the time the "40" by "41". No more simple solution?
    My version of Phpraider is the 1.0.8a

    Reply Report Permalink
  • Can you make this work with the current CONFIRMED/AVAILABLE/NOT AVAILABLE up to date with latest phpRaider. The addon and webside part are both still showing as AVAILABLE, QUEUED, NOT AVAILABLE. Thanks

    Reply Report Permalink
  • amishh said 

    Well. PHPraiderViewer Phpraider 1.0.7 DK hasn't really worked properly, i have had to fix a few bugs in code. you should download my version of update from here http://www.heartofeurope.biz/LUAOUTPUTHOE.zip. Works fine now.

    Reply Report Permalink
  • Aronoded said 

    Currently using version 4.1 (beta) but still no import from eqdkp-plus (latest stable + RaidPlaner 4.12) in game. Any Ideas ?

    The addon works now but generates a error when wow starts.

    [2008/12/13 15:22:55-442-x1]: Interface\FrameXML\GameTooltip.lua:79: attempt to index local 'self' (a nil value):
    :"*:OnLoad":1: in function <[string "*:OnLoad"]:1>

    ---

    and

    [2008/12/13 15:23:10-442-x1]: phpRaidViewer\phpRaidViewer.lua:521: attempt to perform arithmetic on field 'dk_count' (a nil value)
    Interface\FrameXML\UIDropDownMenu.lua:51: in function `UIDropDownMenu_Initialize':
    phpRaidViewer\phpRaidViewer.lua:542: in function `PRV_RaidDropDown_OnShow'
    phpRaidViewer\phpRaidViewer.lua:590: in function `PRV_LoadList'
    phpRaidViewer\phpRaidViewer.lua:470: in function `PRV_Initialize'
    phpRaidViewer\phpRaidViewer.lua:214: in function `PRV_OnEvent'
    :"*:OnEvent":1: in function <[string "*:OnEvent"]:1>

    ---
    ---

    Reply Report Permalink
  • I'vejsut downloaded the latest version and seem to be unable to call the addon using /prv, any ideas?

    Reply Report Permalink
  • Sorry, I really should post these things when I'm more coherent.

    Currently using version 4.1

    Reply Report Permalink
  • flintman said 

    sorry but have to ask is it enabled?

    Reply Report Permalink
  • Yeah mate it was enabled, I've just reinstalled it for like the 6th time and it's working.

    I checked it was enabled like 5 times, really dunno what was happening with it.

    Reply Report Permalink
  • DCUI said 

    The addon works now but generates a error when wow starts.

    [2008/11/03 14:04:33-2989-x1]: Interface\FrameXML\GameTooltip.lua:79: attempt to index local 'self' (a nil value):
    :"*:OnLoad":1: in function <[string "*:OnLoad"]:1>

    ---

    Reply Report Permalink
  • Ok, i have found a fix for the phpraider 1.0.7b

    Go to your INSTALLDIR/components/com_lua_output/
    Choose the lua_output.php and open it with your favorite php-editor
    Search for "lua_version" and change the value from 30 to 40
    Save the changes and upload the file to your server
    Next time you use the funtion lua output, your data created by the site will be compatible to the new raiderviewer

    Thanks to biskop for the hint, but why changing every luaoutput when you can change the generator?

    Reply Report Permalink
  • biskop said 

    Fixed mine lua output file.

    Enter your "lua_output_data.php" on your URL
    and change the nummer from 30 to 40 at:
    function Output_Lua()
    {
    global $db_raid, $text, $phpraid_config;

    $lua_version = "40";


    This will fix your problem too :)

    Reply Report Permalink
  • zeldra said 

    Same with lyonthedragon

    Reply Report Permalink
  • what about the lua output? I tried to load my raiddata, but the addon told me, that my luaoutput ist outdatet. I downloaded the luaoutput from this site, but nothing changed. I use phpraider 1.0.7b. Is there an update to the luaoutput??? pls answer

    Reply Report Permalink
  • biskop said 

    Update for 3.02??

    Reply Report Permalink
  • ltdeta said 

    update for 3.02?

    Reply Report Permalink
  • I am sure it is possible but a lot of work that he has already done would have to be done again in the form of a vb script. He has it written in the webpage to update the file PHPRaid_Data.lua when you go to the update webpage. Translate that webpage to vb and your all set. More work then i have time to get into. Just set auto refresh on the webpage he made and leave it open from any computer and it should update for everyone that uses the script.

    Oh.. and for 64 bit users you may have to change strWOWC = "C:\Program Files\World of Warcraft" to strWOWC = "C:\Program Files (x86)\World of Warcraft"

    Reply Report Permalink
  • flintman said 

    well i did upload the file takes about 24 to show up if anyone needs email me at flintman@thenoblealliance.com Ill send it along

    Reply Report Permalink
  • flintman said 

    fixed the issue with only pulling 1 queue 1 member. with 1.0.6b should also take care of your problem too subxero

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 28,439 Deadly Boss Mods Boss Encounters, and Combat
  2. 7,015 BigWigs Bossmods Boss Encounters, and Combat
  3. 3,822 Omen Threat Meter Boss Encounters, and Combat
  4. 3,182 Decursive Buffs & Debuffs, Boss Encounters...
  5. 1,767 Deadly Boss Mods - Burning Crusade mods Boss Encounters, and Combat