Help whats going on people

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

Help whats going on people

Postby jc230285 » Thu Jul 13, 2006 5:30 pm

Problems with updating guild after update to 1.7

SQL Showing.
SELECT `config_name`, `config_value` FROM `roster_config` ORDER BY `id` ASC;

Nothing in Upload Log

Other people have had this problem but nothing found after this site update.

Home Page Roster
Attachments
characterprofiler.lua
My LUA Password is guild
(186.15 KiB) Downloaded 187 times
jc230285
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Thu Jul 13, 2006 5:08 pm

Re: Help whats going on people

Postby zeryl » Thu Jul 13, 2006 8:45 pm

That's quite interesting, nothing i've seen before.

Check to see if mod-security is installed (it's an apache module). NO clue if this would cause it, but hey, if it's installed, maybe it's a starting point?

I'm sorry :sad:
User avatar
zeryl
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 194
Joined: Tue Jul 04, 2006 12:59 pm
Location: Saint Louis

Help whats going on people

Postby zanix » Fri Jul 14, 2006 12:22 am

Moved to approprite forum
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

Help whats going on people

Postby DeadlySinner » Tue Jul 18, 2006 8:11 am

Id be interested in an answer if you get one. I have the same problem. I have made sure to copy the names of the realm and guild from cp, and use the pswd for upload. I know the cp works as the guild i am a member of uses it and it uploads fine w/ current info. Just not sure what im doing wrong in setting it up. A nudge in the right direction would be great :) Thanks!!

I attached screens:

Image
Image
User avatar
DeadlySinner
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jul 17, 2006 8:48 am

Help whats going on people

Postby zanix » Tue Jul 18, 2006 9:25 am

Is there any warning or notice messages near the top of the page when the log pops up?
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

Help whats going on people

Postby DeadlySinner » Tue Jul 18, 2006 9:53 am

hrmmm.. nope.
Screen Here

Though in poking around I did find this

Pretty much everything under the /lib has the note MD5 String does NOT match - when I run the roster diag.

I did do the dl and update for the phpbb - but after I still get it as a critical.
See a larger version here

Don't know if it will help or not:
MySQL - 4.1.18
phpMyAdmin - 2.8.0.1
phpNuke - 7.8
host: powweb.com

I have tried poking around over in the integration section but thats waaaay over my head.

-- so..... how bad did I screw this up? *grin*
User avatar
DeadlySinner
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jul 17, 2006 8:48 am

Help whats going on people

Postby zanix » Tue Jul 18, 2006 9:59 am

Are you uploading the correct CP.lua file?
*WoWDir*/WTF/Account/*ACCOUNTNAME*/SavedVariables/CharacterProfiler.lua
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

Help whats going on people

Postby DeadlySinner » Tue Jul 18, 2006 10:16 am

yep (i am a member of a guild on dif. server and it works to upload there so...), I have been working on this for probably close to 10 hrs - scouring to see what I can find that I can try. I have followed every walk through/screen I can find. Deleted and re-uploaded serveral times thinking I must have installed it wrong. I have double and tripple checked everything I could find that I understood.

Now that I open up all the sections in the diag - they all say that same md5.... then if I click on the box, I get three boxes

one that says:
MD5 Information for file: ./admin/config.php <--insert whatever file I clicked on
Remote: 4b70aa3420b71d724530f287eef91629
Local: a350d36dec720b975022b68234253cab
and the values change but format is the same

one that says:
File Differences for file: ./admin/config.php
Type Local File CVS File
Changed 1
2
1
2


and one that allows me to go back
User avatar
DeadlySinner
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jul 17, 2006 8:48 am

Help whats going on people

Postby zanix » Tue Jul 18, 2006 10:21 am

The md5's are different because of the way some ftp programs upload files
If you upload all files in binary mode, they will match

As for update not working, try something for me

Open update.php, insert this line
Code: Select all
error_reporting(E_ALL); 


After these lines
Code: Select all
$subdir '../';
require_once( 
$subdir.'settings.php' );
require_once( 
ROSTER_BASE.'lib'.DIR_SEP.'luaparser.php' ); 


So it looks like this
Code: Select all
$subdir '../';
require_once( 
$subdir.'settings.php' );
require_once( 
ROSTER_BASE.'lib'.DIR_SEP.'luaparser.php' );
error_reporting(E_ALL); 


Then try to upload again

And report any error messages at the top of the page, they will display above the header logo
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

Help whats going on people

Postby DeadlySinner » Tue Jul 18, 2006 10:37 am

so I retried the before just to see what was above the header and nothing...

~~then I did what you tried and as soon as I clicked the update profile button I got:
Notice: Undefined variable: uploadData in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 111

Notice: Undefined variable: uploadData in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 119

Notice: Undefined variable: uploadData in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 124

Notice: Undefined variable: authFields in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 352

~~Right above the update file (btwn the upload box and the upload.php statement) I got:
Notice: Undefined variable: uploadFound in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 395

~~Did an upload and got:

Top:
Notice: Undefined variable: uploadData in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 111

Notice: Undefined variable: uploadData in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 119

Notice: Undefined variable: uploadData in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 124

Notice: Undefined variable: authFields in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 352

Btwn update.php and the update box:
Notice: Undefined variable: updateMessages in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 425

Notice: Undefined variable: updatePvPMessages in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 426

Notice: Undefined variable: rosterUpdateMessages in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 427


Right Above Save Update Log button:
Notice: Undefined variable: updateMessages in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 434

Notice: Undefined variable: updatePvPMessages in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 434

Notice: Undefined variable: rosterUpdateMessages in /hermes/web06/b2302/pow.stepmar/htdocs/dawnofredemption/dawnphp/roster/admin/update.php on line 434
User avatar
DeadlySinner
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jul 17, 2006 8:48 am

Help whats going on people

Postby zanix » Tue Jul 18, 2006 11:12 am

Hmmmmm, that doesn't help any, just useless notices....

Crap...
Do you have any apache or php error logs from your site?
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

Help whats going on people

Postby DeadlySinner » Tue Jul 18, 2006 7:01 pm

User avatar
DeadlySinner
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jul 17, 2006 8:48 am

Re: Help whats going on people

Postby Freshbite » Thu Jul 20, 2006 1:41 am

Try this; http://www.wowroster.net/Forums/viewtop ... .html#1188

Worked fine for me! Much <3 to Keldrak! :)
Freshbite
WR.net Apprentice
WR.net Apprentice
 
Posts: 4
Joined: Wed Jul 12, 2006 7:07 pm

Help whats going on people

Postby zanix » Thu Jul 20, 2006 4:16 am

Very weird

Check that post that Freshbite posted...and tell me if that works
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

Help whats going on people

Postby DeadlySinner » Thu Jul 20, 2006 8:33 am

nope.. but i had someone whos much better at this than me take a quick look and thinks its a connection w/ the database and is going to look at it later in greater detail so hopefully that will be the issue. Much appreciate all your guys help though... thank you!
User avatar
DeadlySinner
WR.net Apprentice
WR.net Apprentice
 
Posts: 12
Joined: Mon Jul 17, 2006 8:48 am

Next

Return to General Support & Feedback

Who is online

Users browsing this forum: No registered users and 1 guest

cron