This really needs to be fixed on the client. But for those of you that don't feel like recompiling the source like I did, you can create a temporary fix by changing a database entry on your server. Change the value of the "set_name" column from "RETRDATAFROMSITE" to "RETRDATA" and it should work. Note that the client still behaves a little funny (a checkbox seems to randomly disappear sometimes) but it seems to be working now.
Here's the sql command to make this change on the server:
- Code: Select all
update uniadmin_settings set set_name="RETRDATA" where set_name="RETRDATAFROMSITE";
EDIT: Another fix that's needed to modify settings on the server after you change the database...
include/dba1/structure/mysql_data.sql:
- Code: Select all
('DELAYUPLOAD', '0', '0', 'advanced', 'radio{yes^1|no^0'),
('DELAYSECONDS', '5', '0', 'advanced', 'text{250|10'),
('RETRDATAFROMSITE', '1', '0', 'advanced', 'radio{yes^1|no^0'),
('RETRDATAURL', 'http://yourdomain.com/web_to_wow.php', '0', ...
('WEBWOWSVFILE', 'SavedVariables.lua', '0', 'advanced', ...
Change "RETRDATAFROMSITE" to "RETRDATA".
Change to:
- Code: Select all
('DELAYUPLOAD', '0', '0', 'advanced', 'radio{yes^1|no^0'),
('DELAYSECONDS', '5', '0', 'advanced', 'text{250|10'),
('RETRDATA', '1', '0', 'advanced', 'radio{yes^1|no^0'),
('RETRDATAURL', 'http://yourdomain.com/web_to_wow.php', '0', ...
('WEBWOWSVFILE', 'SavedVariables.lua', '0', 'advanced', ...
I suggest that for the next UniUploader release, this be fixed on the client side instead (since it really looks like a client bug).
To fix it on the client side:
Form1.css:
Change
- Code: Select all
case "RETRDATA":
if (settingSplit[1] == "1"){retrdat...
else{retrdatafromsite.Checked=false;re...
break;
To
- Code: Select all
case "RETRDATAFROMSITE":
if (settingSplit[1] == "1")
{
retrdatafromsite.Checked=true;
retrDataUrl.Enabled=true;
chWtoWOWafterUpload.Enabled=true;
chWtoWOWbeforeWOWLaunch.Enabled=true;
btnWtoWOWDownload.Enabled=true;
chWtoWOWbeforeUpload.Enabled=true;
webToWowLbl.Enabled=true;
webWoWSvFile.Enabled=true;
} else {
retrdatafromsite.Checked=false;
retrDataUrl.Enabled=false;
chWtoWOWafterUpload.Enabled=false;
chWtoWOWbeforeWOWLaunch.Enabled=false;
btnWtoWOWDownload.Enabled=false;
chWtoWOWbeforeUpload.Enabled=false;
webToWowLbl.Enabled=false;
webWoWSvFile.Enabled=false;
}
break;
Thanks for this awesome software. My guild and I are addicted to it!!!