Guild Bank

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

Guild Bank

Postby azmyth » Tue Jul 04, 2006 11:30 pm

I installed version 1.70 and everything is working great, except for when I click on the guild_ link which seems like the guild bank. I just get a blank page. How do I set up the bank in wow roster?
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Guild Bank

Postby darkgoth » Wed Jul 05, 2006 12:39 am

go to the config file and put a note of guild bank on the toon
User avatar
darkgoth
WR.net Apprentice
WR.net Apprentice
 
Posts: 14
Joined: Tue Jul 04, 2006 7:10 pm

Re: Guild Bank

Postby azmyth » Wed Jul 05, 2006 1:02 am

can u elaborate further? I don't quite understand. I opened the config file as a text document, but I don't see anything about guildbank. can u copy and paste the text I change? or go into more detail.
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Re: Guild Bank

Postby lithanos » Wed Jul 05, 2006 1:13 am

# Text match for banker selection
$banker_rankname = "Bank";
# What database field "$banker_rankname" is searched in
# Choices { 'name' | 'note' | 'officer_note' | 'guild_title'(default) }
$banker_fieldname = 'note';

see hwere it says bank? what ever note you have for your bank in game put that note there. you can also change it to pick up the officers note guild title blah blah blah. its in the config.php file
lithanos
WR.net Apprentice
WR.net Apprentice
 
Posts: 18
Joined: Tue Jul 04, 2006 7:34 pm

Guild Bank

Postby azmyth » Wed Jul 05, 2006 1:18 am

is this in the "Admin" config file or the "guildbank" config file?
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Re: Guild Bank

Postby azmyth » Wed Jul 05, 2006 1:23 am

Ok, I looked in all my conf files.. and I cannot locate any of the text u posted.

my roster is at www.enigmarata.com u can look at it and see how it shows up.

<?php
/******************************
* WoWRoster.net Roster
* Copyright 2002-2006
* Licensed under the Creative Commons
* "Attribution-NonCommercial-ShareAlike 2.5" license
*
* Short summary
* http://creativecommons.org/licenses/by-nc-sa/2.5/
*
* Full license information
* http://creativecommons.org/licenses/by- ... /legalcode
* -----------------------------
*
* $Id: conf.php 57 2006-06-14 21:11:52Z mathos $
*
******************************/

/////////////////////////// CONFIGURATION OPTIONS /////////////////////////////
// Number of columns per category row
$row_columns = 18;
// Show color border
$color_border = 1; // 0 = No, 1 = Yes
// Do you want categories with no items to appear?
$show_empty = 1; // 0 = No, 1 = Yes
////// ItemLink Site
// 1=Thottbot,
// 2=Allakhazam for 'enUS' and blasc.de for 'deDE'.
$searchtype = 1;
// The order the tables will display in the guildbank page
// You can exclude items you don't want to appear
$display_order = array(20,21,22,18,3,4,5,6,7,8,31,19,1,2,11,12,15,17,16,14,13,32,
10,26,24,25,9,23,27,28,30,29);

// The header name for each category that will appear
$bankitem[1]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_1'];
$bankitem[2]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_2'];
$bankitem[3]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_3'];
$bankitem[4]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_4'];
$bankitem[5]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_5'];
$bankitem[6]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_6'];
$bankitem[7]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_7'];
$bankitem[8]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_8'];
$bankitem[9]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_9'];
$bankitem[10]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_10'];
$bankitem[11]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_11'];
$bankitem[12]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_12'];
$bankitem[13]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_13'];
$bankitem[14]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_14'];
$bankitem[15]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_15'];
$bankitem[16]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_16'];
$bankitem[17]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_17'];
$bankitem[18]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_18'];
$bankitem[19]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_19'];
$bankitem[20]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_20'];
$bankitem[21]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_21'];
$bankitem[22]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_22'];
$bankitem[23]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_23'];
$bankitem[24]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_24'];
$bankitem[25]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_25'];
$bankitem[26]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_26'];
$bankitem[27]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_27'];
$bankitem[28]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_28'];
$bankitem[29]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_29'];
$bankitem[30]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_30'];
$bankitem[31]['msg'] = $wordings[$roster_conf['roster_lang']]['bankitem_31'];

include($addonDir.'searcharrays.php');

switch ($searchtype) {
case 2:
// Allakhazam / blasc.de
$itemlink['enUS']='http://wow.allakhazam.com/search.html?q=';
$itemlink['deDE']='http://blasc.planet-multiplayer.de/?i=';
break;
default:
// Thottbot
$itemlink['enUS']='http://www.thottbot.com/index.cgi?i=';
$itemlink['deDE']='http://www.thottbot.com/de/index.cgi?i=';
}

?>

this is all thats in my guildbank conf file.
Last edited by azmyth on Wed Jul 05, 2006 1:26 am, edited 1 time in total.
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Re: Guild Bank

Postby Tsikura » Wed Jul 05, 2006 1:29 am

lithanos wrote:# Text match for banker selection
$banker_rankname = "Bank";
# What database field "$banker_rankname" is searched in
# Choices { 'name' | 'note' | 'officer_note' | 'guild_title'(default) }
$banker_fieldname = 'note';

see hwere it says bank? what ever note you have for your bank in game put that note there. you can also change it to pick up the officers note guild title blah blah blah. its in the config.php file


That is for Roster 1.60


For roster 1.70

To get the guild bank toons to show up, you will need to click at the top

http://inamorataroster.orgfree.com/wowr ... config.php

Login

Config Menu to the left, select Guild Bank. Play with the settings there as you please.



Edit: I see what you mean now with the whole Guild_ thing. I am not sure what the devs would recommend but I would make sure you uploaded all the files and that you didnt miss any.
Last edited by Tsikura on Wed Jul 05, 2006 1:31 am, edited 1 time in total.
Image
User avatar
Tsikura
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Tue Jul 04, 2006 1:49 pm
Location: New York

Re: Guild Bank

Postby lithanos » Wed Jul 05, 2006 1:33 am

yes Tsikura i apoligize i missed that part where he said what version he was using. that my stupidity. im currently working to install 1.7.
Last edited by lithanos on Wed Jul 05, 2006 1:41 am, edited 1 time in total.
lithanos
WR.net Apprentice
WR.net Apprentice
 
Posts: 18
Joined: Tue Jul 04, 2006 7:34 pm

Re: Guild Bank

Postby azmyth » Wed Jul 05, 2006 1:36 am

Ok, I am in the config.. but I don't see very many options...

here is a screenshot for your perusal. I'd really like to use the guild bank within wowroster without having to use additional scripts.
Attachments
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Re: Guild Bank

Postby lithanos » Wed Jul 05, 2006 1:59 am

try re-uploading the guild bank folder located in the addon maybe that will help
Last edited by lithanos on Wed Jul 05, 2006 1:59 am, edited 1 time in total.
lithanos
WR.net Apprentice
WR.net Apprentice
 
Posts: 18
Joined: Tue Jul 04, 2006 7:34 pm

Re: Guild Bank

Postby azmyth » Wed Jul 05, 2006 2:14 am

nope, that didn't help. still got guild_
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Guild Bank

Postby azmyth » Wed Jul 05, 2006 2:46 am

the page its going to when I click on the button for guild bank.. says guild_2.php. Yet I don't see that file anywhere in the directory. I manually went to guildbank.php and it shows something, but everything related to guild bank still has guild_. I did download the files from a former GM, because the site had gone down to get them from the source.. I wonder if that could be the issue.
User avatar
azmyth
WR.net Apprentice
WR.net Apprentice
 
Posts: 21
Joined: Tue Jul 04, 2006 11:19 pm

Guild Bank

Postby Anaxent » Wed Jul 05, 2006 2:49 am

ah that is the issue then. Go ahead and redownload the roster 1.7 package from the download section of th esite here and upload over writting the files there if needed it can upgrade from a previous install but im thinking you are just missing some files that are needed to this all to fully function.
User avatar
Anaxent
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 642
Joined: Tue Jul 04, 2006 6:27 am
Location: Phoenix, Az

Guild Bank

Postby Tsikura » Wed Jul 05, 2006 2:50 am

Just re-download the rosterpack and just have it upload files that dont exist in the directory.
Image
User avatar
Tsikura
WR.net Apprentice
WR.net Apprentice
 
Posts: 13
Joined: Tue Jul 04, 2006 1:49 pm
Location: New York

Guild Bank

Postby Anaxent » Wed Jul 05, 2006 3:03 am

have it upload all files over writting the files that are there it will take too much time to figure out what is really missing and these files should not have been modified at all so by just reuploading and then over wittting this should fix the issues. All the very imortant data is now with in the database.
User avatar
Anaxent
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 642
Joined: Tue Jul 04, 2006 6:27 am
Location: Phoenix, Az

Next

Return to General Support & Feedback

Who is online

Users browsing this forum: No registered users and 1 guest

cron