Dragonfly Guild application form

Dragonfly integration forum

Dragonfly Guild application form

Postby cynthetiq » Tue Jan 30, 2007 10:39 am

I got it to work with phpbb the way that I had envisioned. The problem I had with it just forwarding to a group of emails via gmail is that then someone still needs to post it into a thread so that everyone can look at the application and make a group decision.

I have the application sending an email, and I have a mod called Mail2Forum. The mod watches a particular mailbox and then takes the email and posts it into a specified forum.

All officers get an email of that post, and can either post in the forum or reply to the received email.

All discussion is posted to the forum.
cynthetiq
WR.net Apprentice
WR.net Apprentice
 
Posts: 29
Joined: Sat Oct 21, 2006 10:09 am

Re: Dragonfly Guild application form

Postby johnnydement » Tue Jan 30, 2007 1:36 pm

gratz, shame there is no df version of this nor a way to make it work :(
johnnydement
WR.net Apprentice
WR.net Apprentice
 
Posts: 66
Joined: Wed Jul 12, 2006 5:50 pm

Dragonfly Guild application form

Postby Kieeps » Tue Feb 06, 2007 2:20 pm

I can't seem to get this to work. i know why though...I use an relay SMTP server that requires SMTP username/pass...can't find any fields and any attempts to add this to the script just turned out to do nothing different at all :/
Kieeps
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jan 08, 2007 5:53 pm

Dragonfly Guild application form

Postby vbdh » Sat Feb 10, 2007 1:03 pm

I have made one using the stand alone one and made it into an addon u can see it here

Apply

it works well as we only use the roster as the website. if anyone would like it let me know :thumright: could use help with background
Last edited by vbdh on Sat Feb 10, 2007 1:22 pm, edited 1 time in total.
Long Live The Fighters
User avatar
vbdh
WR.net Apprentice
WR.net Apprentice
 
Posts: 45
Joined: Wed Jan 03, 2007 12:48 pm

Re: Dragonfly Guild application form

Postby robojerk » Sun Feb 25, 2007 3:19 am

I kind of gave up on this project since other people who are better programmers than myself have taken it on and want to add the same features I was interested in.

However since some of you have asked me to update mine for TBC I have done so.

I update the Reputations, Instance Keys, added Paladin to Classes, and added Jewel Crafting to professions.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Re: Dragonfly Guild application form

Postby robojerk » Sun Feb 25, 2007 3:38 am

vbdh wrote:I have made one using the stand alone one and made it into an addon u can see it here

Apply

it works well as we only use the roster as the website. if anyone would like it let me know :thumright: could use help with background



If you want black background with white text, change this.

Code: Select all
<style type="text/css">
/*<![CDATA[*/<!--
.
style1 {color#FF0000}
-->
/*]]>*/
</style


to

Code: Select all
<style type="text/css">
/*<![CDATA[*/<!--
.
style1 {color#FF0000}
body{
color:#FFFFFF;
background-color:#000000;
}
-->
/*]]>*/
</style


If you need help with CSS styles you can search on google, or use a HTML editor like Nvu.
Last edited by robojerk on Sun Feb 25, 2007 4:14 am, edited 1 time in total.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Dragonfly Guild application form

Postby robojerk » Sun Feb 25, 2007 4:13 am

If you want to have the 5 man keys instead of the 25 man raid keys, please do the following..


Open index
Replace this
Code: Select all
<td><input name="mc" type="checkbox" id="mc" value=
"Karazhan, " />
  Karazhan <br />
  <input name="ony" type="checkbox" id="ony" value=
"The Tempest Key, " />
  The Tempest Key <br />
  <input name="bwl" type="checkbox" id="bwl" value=
"Serpentshire Cavern, " />
  Serpentshire Cavern <br />
  <input name="nax" type="checkbox" id="nax" value=
"Mt. Hyjal" />
  Mt. Hyjal</td>


With this
Code: Select all
<td>
  <input name="fk" type="checkbox" id="fk" value=
"Flamewrought Key" />
  Flamewrought Key <br />
  <input name="rk" type="checkbox" id="rk" value=
"Reservoir Key, " /> 
  Reservoir Key <br />
  <input name="wk" type="checkbox" id="wk" value=
"Warpforged Key, " />
  Warpforged Key <br />
  <input name="shk" type="checkbox" id="shk" value=
"Shattered Halls Key, " />
  Shattered Halls <br />
    <input name="slk" type="checkbox" id="slk" value=
"Shadow Labryinth Key" />
  Shadow Labryinth <br />
  <input name="kot" type="checkbox" id="kot" value=
"Key of Time" />
  Key of Time <br />
  <input name="tk" type="checkbox" id="tk" value=
"The Tempest Key, " />
  The Tempest Key <br />
  <input name="ak" type="checkbox" id="ak" value="Auchenai Key, " />
  Auchenai Key <br />
  <input name="kara" type="checkbox" id="kara" value=
"Karazhan, " />
  Karazhan</td>


Close index

Open apply
Replace this (yes i just recycled the old variables)
Code: Select all
$mc = ($_POST['mc']);
$ony = ($_POST['ony']);
$bwl = ($_POST['bwl']);
$nax = ($_POST['nax']);


with this
Code: Select all
$fk = ($_POST['fk']);
$rk = ($_POST['rk']);
$wk = ($_POST['wk']);
$shk = ($_POST['shk']);
$slk = ($_POST['slk']);
$kot = ($_POST['kot']);
$tk = ($_POST['tk']);
$ak = ($_POST['ak']);
$kara = ($_POST['kara']);


then replace this
Code: Select all
Instance Keys: $mc$ony$bwl$nax


with this
Code: Select all
Instance Keys: $fk$rk$wk$shk$slk$kot$tk$ak$kara
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Previous

Return to Dragonfly

Who is online

Users browsing this forum: No registered users and 1 guest

cron