Guild upload Problems

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

Guild upload Problems

Postby Kringe » Tue Jul 11, 2006 12:38 am

I have had no problems with the WOW Roster in the past for the exception of images not showing up but now its the opposite way around, I have the images but I am unable to update the roster or for that matter even load it up.

I am using www.carnageserver.net/ for my host
Operating system: Linux , Apache version: 1.3.36 (Unix), PHP version: 5.1.4 , MySQL version: 5.0.21-standard

Here are the images I took of the Roster Diagnostics:

Image
Image





I have followed your instructions in the post: www.wowroster.net/inde...topic&t=61 and still nothing is working, any help you can give me with this matter would be appreciated.

Kringe
acestrump@houston.rr.com
User avatar
Kringe
WR.net Apprentice
WR.net Apprentice
 
Posts: 6
Joined: Thu Jul 06, 2006 6:42 pm

Guild upload Problems

Postby Anaxent » Tue Jul 11, 2006 2:36 am

What kind of errors are you recieving when trying to upload? What is outputted in the update log.
User avatar
Anaxent
WoWRoster.net Dev Team
WoWRoster.net Dev Team
 
Posts: 642
Joined: Tue Jul 04, 2006 6:27 am
Location: Phoenix, Az

Re: Guild upload Problems

Postby Kringe » Tue Jul 11, 2006 3:58 pm

Anaxent wrote:What kind of errors are you recieving when trying to upload? What is outputted in the update log.


Nothing...nothing happens at all.....and when I try to upload my individual profile it tells me that I need to upload the guild first... I am so confused :shaking2:

Kringe
User avatar
Kringe
WR.net Apprentice
WR.net Apprentice
 
Posts: 6
Joined: Thu Jul 06, 2006 6:42 pm

Guild upload Problems

Postby Kringe » Wed Jul 12, 2006 9:57 pm

::BUMP::
User avatar
Kringe
WR.net Apprentice
WR.net Apprentice
 
Posts: 6
Joined: Thu Jul 06, 2006 6:42 pm

Guild upload Problems

Postby nightfighter » Thu Jul 13, 2006 12:10 am

The only time I have had that heppen is when I have not entered my password for uploading the guild list. If you don't do this then all that will be uploaded is your characters and when your character is not in the member's table then the upload software will not put in the characters to the guild.
User avatar
nightfighter
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 169
Joined: Wed Jul 05, 2006 11:25 pm
Location: Boise, Idaho, USA

Re: Guild upload Problems

Postby Slyver » Thu Jul 13, 2006 12:33 am

When you click Roster are there any names listed in it? When that message pops up it usually indicates that the wow roster does not have any guilds setup to associate the cp.lua file to.
Slyver
WR.net Apprentice
WR.net Apprentice
 
Posts: 31
Joined: Tue Jul 11, 2006 10:27 pm

Guild upload Problems

Postby filanojr » Thu Jul 13, 2006 8:52 am

I have a problem similar to this one.
--
Server Software Microsoft-IIS/6.0
MySQL Version 4.1.18-nt-max
PHP Version 4.4.3RC2-dev
Roster 1.70
--
I have followed this page:
http://www.wowroster.net/wiki/index.php ... WoW_Addons
To where I upload the Guild profile via the characterprofiler.lua

I browse to and select. i'm positive (100%) that I use the admin password.

Hit update and I get a blank update log.
ideas?
filanojr
WR.net Apprentice
WR.net Apprentice
 
Posts: 3
Joined: Wed Jul 12, 2006 2:24 am

Re: Guild upload Problems

Postby keldrak » Thu Jul 13, 2006 6:33 pm

I had a similar problem and posted this on the old boards (darn hackers!)

My server had a problem with the upload file and doing a "file_exists" check on it.

in lib/luaparser.php find:
Code: Select all
   if(file_exists($filename))
   {
      if( $mode == 'gz' )
      {
         $file_as_array = gzfile($filename);
      }
      else
      {
         $file_as_array = file($filename);
      }

      return(ParseLuaArray($file_as_array));
   }

and comment out the first if statement, should look like :

Code: Select all
//   if(file_exists($filename))
//   {
      if( $mode == 'gz' )
      {
         $file_as_array = gzfile($filename);
      }
      else
      {
         $file_as_array = file($filename);
      }

      return(ParseLuaArray($file_as_array));
//   }
User avatar
keldrak
WR.net Apprentice
WR.net Apprentice
 
Posts: 8
Joined: Wed Jul 05, 2006 5:14 pm

Guild upload Problems

Postby filanojr » Thu Jul 13, 2006 6:49 pm

keldrak, that worked perfectly.

thanks for the code!
filanojr
WR.net Apprentice
WR.net Apprentice
 
Posts: 3
Joined: Wed Jul 12, 2006 2:24 am

Re: Guild upload Problems

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

So grateful for this! Solved everything! Thanks! <3
Freshbite
WR.net Apprentice
WR.net Apprentice
 
Posts: 4
Joined: Wed Jul 12, 2006 7:07 pm

Guild upload Problems

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

This kinda sucks, it's good practice to check for the existance for a file before you try to do anything with it

But, I do see the benifit of restricting file_exists() access to php's tmp directory
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

Guild upload Problems

Postby kenn » Thu Jul 20, 2006 2:57 pm

So, this isn't working for me. I'm trying to re-install RPGCO and RPGGO and try again.

Edit: Yeah even with the new addons, and the little change in the luaparser.php file, I'm still not able to update. Please help.
Last edited by kenn on Thu Jul 20, 2006 3:22 pm, edited 1 time in total.
kenn
WR.net Apprentice
WR.net Apprentice
 
Posts: 4
Joined: Thu Jul 20, 2006 9:38 am

Re: Guild upload Problems

Postby keldrak » Thu Jul 20, 2006 5:45 pm

zanix wrote:This kinda sucks, it's good practice to check for the existance for a file before you try to do anything with it

But, I do see the benifit of restricting file_exists() access to php's tmp directory


It's strange. I'm sure there's a reason the server doesn't let it work. Most of the time I've seen programmers use open || die syntax for file existance as a failed open is usually the same as non-existance. *shrug*

I'm seeing more posts to this problem, I'd bet most of them are on windows IIS servers.
User avatar
keldrak
WR.net Apprentice
WR.net Apprentice
 
Posts: 8
Joined: Wed Jul 05, 2006 5:14 pm

Re: Guild upload Problems

Postby keldrak » Thu Jul 20, 2006 5:46 pm

kenn wrote:So, this isn't working for me. I'm trying to re-install RPGCO and RPGGO and try again.

Edit: Yeah even with the new addons, and the little change in the luaparser.php file, I'm still not able to update. Please help.



can you provide more information by chance? I'm sure the mods would point you to
http://www.wowroster.net/Forums/viewtopic/t=2.html
User avatar
keldrak
WR.net Apprentice
WR.net Apprentice
 
Posts: 8
Joined: Wed Jul 05, 2006 5:14 pm

Re: Guild upload Problems

Postby AnthonyB » Thu Jul 20, 2006 7:35 pm

keldrak wrote:I'm seeing more posts to this problem, I'd bet most of them are on windows IIS servers.


Why do you say that?

I run IIS6 with PHP 5.1.4 in a very standard configuration and haven't come across any upload problems in testing?
Last edited by AnthonyB on Thu Jul 20, 2006 7:36 pm, edited 1 time in total.
Roster 2.0.2 svn [latest] latest trunk SVN svn [latest] running on IIS7/Windows Server 2008 SP2 | MySQL 5.0.85 | PHP 5.2.10 | Yes, Roster and PHP rocks on IIS! Even run as FastCGI extension!
User avatar
AnthonyB
Gimpy Developer
Gimpy Developer
 
Posts: 346
Joined: Tue Jul 04, 2006 2:44 pm
Location: Sydney, Australia

Next

Return to General Support & Feedback

Who is online

Users browsing this forum: No registered users and 1 guest

cron