WoWRoster 1.7.3 Beta 1 Released

Requests, feedback, and general discussion about WoWRoster
DO NOT post topics about WoWRoster AddOns here!

WoWRoster 1.7.3 Beta 1 Released

Postby zanix » Sun Jan 21, 2007 8:29 pm

Roster 1.7.3 beta 1 is now out

For all you adventurous type, go ahead and get it
For all those a little skiddish about using beta software, please stay way and wait for the final release

The BETA Files

Remember, when using Beta software from WoWRoster.net, you are bound by the Beta Software Guidelines
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

WoWRoster 1.7.3 Beta 1 Released

Postby Blacksangre » Mon Jan 22, 2007 7:20 am

Hi Zanix...

Thanks so much for having such a KICK A$$ program... I know u r bussy But when you have a sec. Could I have you take a look at my roster... I went from the 1.7.2 to your new beta and cant get it to work... I have messed with it for some time now... my guess U will be able to tell me what I am doing wrong....

http://www.guildrazor.com/roster/index.php

error:
Database Error
1054: Unknown column 'honorpoints' in 'field list'
SQL:
SELECT `name`, `honorpoints` FROM `roster_players` ORDER BY `honorpoints` DESC LIMIT 0 , 1
File: hslist.php
Line: 109


It will let me go into the addmin to change any thing.
User avatar
Blacksangre
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Thu Dec 14, 2006 7:15 am

WoWRoster 1.7.3 Beta 1 Released

Postby zanix » Mon Jan 22, 2007 8:00 am

Are you sure you went from 1.7.2 to this?

This error looks like you went from 1.7.2 beta 2 to 1.7.3 beta 1
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

WoWRoster 1.7.3 Beta 1 Released

Postby Elethil » Mon Jan 22, 2007 11:42 am

Is 1.7.2 the same as R2 or is R2 going to be something different? just curious.

thanks.
User avatar
Elethil
WR.net Journeyman
WR.net Journeyman
 
Posts: 147
Joined: Wed Jul 05, 2006 10:28 pm

Re: WoWRoster 1.7.3 Beta 1 Released

Postby kaleyn » Mon Jan 22, 2007 12:40 pm

Sounds like you need to create an "honorpoints" column to your database.

Try this:

Code: Select all
ALTER TABLE `roster_players` ADD `honorpoints` INT( 11 ) NOT NULL DEFAULT '0';



And next time, don't forget to backup your database.
Johann Wolfgang Von Goethe --
Treat people as if they were what they ought to be and you help them to become what they are capable of being.
User avatar
kaleyn
WR.net Apprentice
WR.net Apprentice
 
Posts: 37
Joined: Mon Jan 08, 2007 7:59 pm

Re: WoWRoster 1.7.3 Beta 1 Released

Postby PleegWat » Mon Jan 22, 2007 1:40 pm

Elethil wrote:Is 1.7.2 the same as R2 or is R2 going to be something different? just curious.

thanks.


No. 1.7.2 is the current version. 1.7.3 is the version that's now going into beta. R2 is a completely new project, which will hopefully be blowing your minds away in a couple of months' time.
I <3 /bin/bash
User avatar
PleegWat
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 1636
Joined: Tue Jul 04, 2006 1:43 pm

WoWRoster 1.7.3 Beta 1 Released

Postby Blacksangre » Tue Jan 23, 2007 1:24 am

Sry for the delay in getting back to you... I drive for FedEx Ground... I might of had the 1.7.2 Beta and did not know it... If that is what it looks like then you must be right...

What I did tho was I did something to mess it up so I got rid of the whole roster and reuploaded it... When it went to install IF I REMEMBER right it was saying that I needed my user name and password to install it... So I used one of the old .php files and uploaded that so it would not ask me for that again...

So knowing what u know now... What would you tell me to fix my problem...

Thanks so much for your time in helping me fix my problem...
Black Sangre
Leader of RAZOR
Whisperwind
User avatar
Blacksangre
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Thu Dec 14, 2006 7:15 am

Re: WoWRoster 1.7.3 Beta 1 Released

Postby nyogtha » Tue Jan 23, 2007 7:28 am

kaleyn wrote:Sounds like you need to create an "honorpoints" column to your database.

Try this:

Code: Select all
ALTER TABLE `roster_players` ADD `honorpoints` INT( 11 ) NOT NULL DEFAULT '0';



And next time, don't forget to backup your database.


You also need to do

Code: Select all
ALTER TABLE `roster_players` ADD `arenapoints` INT( 11 ) NOT NULL DEFAULT '0';


I think.
nyogtha
WR.net Apprentice
WR.net Apprentice
 
Posts: 3
Joined: Wed Oct 11, 2006 2:04 pm

WoWRoster 1.7.3 Beta 1 Released

Postby Blacksangre » Tue Jan 23, 2007 9:06 am

Cool... thx for the help... But what .php doc do I add that to.

Code: Select all
ALTER TABLE `roster_players` ADD `honorpoints` INT( 11 ) NOT NULL DEFAULT '0';
Black Sangre
Leader of RAZOR
Whisperwind
User avatar
Blacksangre
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Thu Dec 14, 2006 7:15 am

Re: WoWRoster 1.7.3 Beta 1 Released

Postby Harshmage » Tue Jan 23, 2007 10:45 am

Blacksangre wrote:Cool... thx for the help... But what .php doc do I add that to.


You import that directly into your SQL database. Through one means or another..
Ho, Haha, Guard, Turn, Parry, Dodge, Spin, Ha, Thrust!
Image
User avatar
Harshmage
WR.net Apprentice
WR.net Apprentice
 
Posts: 43
Joined: Fri Sep 08, 2006 10:11 am
Location: Arizona, USA

Re: WoWRoster 1.7.3 Beta 1 Released

Postby Elethil » Tue Jan 23, 2007 1:30 pm

PleegWat wrote:
Elethil wrote:Is 1.7.2 the same as R2 or is R2 going to be something different? just curious.

thanks.


No. 1.7.2 is the current version. 1.7.3 is the version that's now going into beta. R2 is a completely new project, which will hopefully be blowing your minds away in a couple of months' time.


Yea I meant to say 1.7.3 :)

So 1.7.3 is just an updated version of 1.7.2 and R2 will be something completely different then? I am really looking forward to this R2! From the sounds of it, it will be pretty sweet.
User avatar
Elethil
WR.net Journeyman
WR.net Journeyman
 
Posts: 147
Joined: Wed Jul 05, 2006 10:28 pm

WoWRoster 1.7.3 Beta 1 Released

Postby Blacksangre » Fri Jan 26, 2007 8:04 am

QUESTION... about PROFESSIONS part of roster.
When I upload my guild, only one chr profile will upload... I saved em all off and logged out just like I had always dont B4... All then same... Might ya be able to take a look at it for me. http://guildrazor.com/roster/index.php Under the professions..

I can get BLACKSTARS to upload but not the rest of my toons... O ya... one more for ya... The honor points will not record... I got em turned ON under the admin...

Thx
Black Sangre
Leader of RAZOR
Whisperwind
User avatar
Blacksangre
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Thu Dec 14, 2006 7:15 am

WoWRoster 1.7.3 Beta 1 Released

Postby zanix » Sat Jan 27, 2007 12:02 am

Please read this http://www.wowroster.net/Forums/viewforum/f=22.html
And this http://www.wowroster.net/Forums/viewtopic/t=226.html
Before posting about issues with Roster

And since you are using beta software, direct posts to this forum http://www.wowroster.net/Forums/viewforum/f=7.html
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Re: WoWRoster 1.7.3 Beta 1 Released

Postby Blacksangre » Sat Jan 27, 2007 12:10 am

Ok cool... Thanks so much for directing me...
Black Sangre
Leader of RAZOR
Whisperwind
User avatar
Blacksangre
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Thu Dec 14, 2006 7:15 am

WoWRoster 1.7.3 Beta 1 Released

Postby Swiftfingers » Fri Feb 09, 2007 9:47 am

Where can I get hold of the latest Dragonfly port of roster?
User avatar
Swiftfingers
WR.net Apprentice
WR.net Apprentice
 
Posts: 2
Joined: Fri Jul 14, 2006 7:53 pm
Location: North East UK


Return to General Support & Feedback

Who is online

Users browsing this forum: No registered users and 1 guest

cron