| Pages: [1] 2 :: one page |
| Author |
Thread Statistics | Show CCP posts - 0 post(s) |

DeTox MinRohim
|
Posted - 2008.04.03 15:42:00 -
[1]
Edited by: DeTox MinRohim on 03/04/2008 15:44:28
Quote: Error Encountered
Sorry, you encountered a fatal error. Please contact the administrators about this if it continues.
This is what I get from the corp killlog since some times now. The char version seems to be working fine.
When reloading it, the xml is saying It's exhausted as if the first call worked.
Quote: Expected beforeKillID [1561991] but supplied [0]: kills previously loaded.
I thought that I broke my code at first but it's also from the GET calling the API straight from the browser. Anyone else having that? Annoying to debug since we can't call it more than once every hour. ------ This sig space is Read-only ! omgalink - Online Skillsheet |

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.03 15:42:00 -
[2]
Edited by: DeTox MinRohim on 03/04/2008 15:44:28
Quote: Error Encountered
Sorry, you encountered a fatal error. Please contact the administrators about this if it continues.
This is what I get from the corp killlog since some times now. The char version seems to be working fine.
When reloading it, the xml is saying It's exhausted as if the first call worked.
Quote: Expected beforeKillID [1561991] but supplied [0]: kills previously loaded.
I thought that I broke my code at first but it's also from the GET calling the API straight from the browser. Anyone else having that? Annoying to debug since we can't call it more than once every hour. ------ This sig space is Read-only ! omgalink - Online Skillsheet |

Gemineia
Rakeriku Otaku Invasion
|
Posted - 2008.04.03 17:32:00 -
[3]
Edited by: Gemineia on 03/04/2008 17:32:40 function fetchXMLsuppressCache($external, $internal,$hours=1) { $cache_time = mktime(date('H')-$hours, date('i'), date('s'), date('m'), date('d'), date('Y')); if (file_exists($internal)) { $file_modified_time = filemtime($internal); $file_time = mktime(date('H',$file_modified_time), date('i',$file_modified_time), date('s',$file_modified_time), date('m',$file_modified_time), date('d',$file_modified_time), date('Y',$file_modified_time)); $until_time = date('d-M-Y H:i:s',mktime(date('H',$file_modified_time)+$hours, date('i',$file_modified_time), date('s',$file_modified_time), date('m',$file_modified_time), date('d',$file_modified_time), date('Y',$file_modified_time))); $filename = strrev(substr(strrev($external),0,strpos(strrev($external),'/'))); if($cache_time > $file_time){ if (!copy($external, $internal)) { echo "<br />failed to copy to $internal...\r\n"; } } } else { if (!copy($external, $internal)) { echo "<br />failed to copy $internal...\r\n"; } } }
Above function is something I built for my own xml api stuff.
$external is the eve-o link to the xml you want $internal is the local location to store the xml $hours is used for determining if you should grab a new xml file from eve-o or just use the local copy.
Hope that helps. It's for php, but the principle remains...
|

Cori4n
principle of motion Interstellar Alcohol Conglomerate
|
Posted - 2008.04.03 19:23:00 -
[4]
Edited by: Cori4n on 03/04/2008 19:23:00
Originally by: Gemineia I didn't read the OP

Bugreport it.
|

Gemineia
Rakeriku Otaku Invasion
|
Posted - 2008.04.03 21:46:00 -
[5]
lol - skimmed & responded in a nubbin manner. Oh well...
|

DeTox MinRohim
|
Posted - 2008.04.04 07:14:00 -
[6]
Originally by: Cori4n Edited by: Cori4n on 03/04/2008 19:23:00
Originally by: Gemineia I didn't read the OP

Bugreport it.
Originally by: Gemineia lol - skimmed & responded in a nubbin manner. Oh well...
Hey at least you tried.  ------ This sig space is Read-only ! omgalink - Online Skillsheet |

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.14 20:20:00 -
[7]
A number of people using my mod for Eve-Killboards are getting this problem. One of them has kindly given me access to his board to try and locate the problem (at first, assumed it was some mistake on my part)
The full return from the server is:
Quote: HTTP/1.1 200 OK Connection: close Date: Mon, 14 Apr 2008 19:20:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 159
<html><body><h1>Error Encountered</h1><p>Sorry, you encountered a fatal error. Please contact the administrators about this if it continues.</p></body></html></myxml>
Thunk |

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.15 15:33:00 -
[8]
Originally by: Captain Thunk A number of people using my mod for Eve-Killboards are getting this problem. One of them has kindly given me access to his board to try and locate the problem (at first, assumed it was some mistake on my part)
The full return from the server is:
Quote: HTTP/1.1 200 OK Connection: close Date: Mon, 14 Apr 2008 19:20:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 159
<html><body><h1>Error Encountered</h1><p>Sorry, you encountered a fatal error. Please contact the administrators about this if it continues.</p></body></html></myxml>
Thunk
I filed a bug report some times ago and I had some feedback on it, mainly some investigating question as for the dev, all looks normal on his side but he's not giving up yet . We can confirm that it is not generalized, even more with that kind of statement on eve-dev:
Originally by: Rhaegor Same problem. Just added a new corporation to my alliance. Before it was only my corp. My API works fine. The new corp says the message above.
So from what we can get so far, something about the corp, the apikey or in a particular killmail is killing the server output. It's my guess tbh, otherwise, we wouldn't have the message for exhausted calls, etc if it really didn't work the first time.
------ This sig space is Read-only ! omgalink - Online Skillsheet |

Wipster
Righteous-Indignation Tygris Alliance
|
Posted - 2008.04.15 17:05:00 -
[9]
Well if it helps tracking it down, my corp with both mine and another directors API key have the same effect... if you are looking for similarities.
|

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.15 17:33:00 -
[10]
From what I've seen it seems to be related to Corporations rather than individuals or keys. It's been present for a few weeks so would assume that it's not certain killmails as I would expect them to have flushed through beyond the first 100 kills (certainly of the first XML page)
|

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.16 09:05:00 -
[11]
Checked my members roster, not much to be said, no new members with special characters, etc. Still corp related but not because of a specific member I guess.
------ This sig space is Read-only ! omgalink - Online Skillsheet |

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.16 09:17:00 -
[12]
Guys, give the name of the corps you know are having this problem, I'll update the OP. Maybe it'll help the dev pinpoint the glitch.
------ This sig space is Read-only ! omgalink - Online Skillsheet |

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.16 09:27:00 -
[13]
Edited by: Captain Thunk on 16/04/2008 09:28:55 Racketeers is affected by this bug.
You may want to check the thread on Eve-Dev and pick out the few others mentioning the problem - if not I'll sort through later. It's only the last few pages and was first reported to me on the 27th March, although I believe they indicated the bug was introduced with the patch a week or two before that.
Thunk
PS. Also add Righteous-Indignation to the list as one of the guys posted in this thread saying the corp was affected
|

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.16 09:48:00 -
[14]
Originally by: Captain Thunk Edited by: Captain Thunk on 16/04/2008 09:28:55 Racketeers is affected by this bug.
You may want to check the thread on Eve-Dev and pick out the few others mentioning the problem - if not I'll sort through later. It's only the last few pages and was first reported to me on the 27th March, although I believe they indicated the bug was introduced with the patch a week or two before that.
Thunk
PS. Also add Righteous-Indignation to the list as one of the guys posted in this thread saying the corp was affected
At work atm so can only spam forum but will do.  ------ This sig space is Read-only ! omgalink - Online Skillsheet |

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.16 10:01:00 -
[15]
Originally by: DeTox MinRohim
At work atm so can only spam forum but will do. 
Same 
|

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.16 10:31:00 -
[16]
Edited by: Captain Thunk on 16/04/2008 10:43:45
Another corp to add to list Blueprint Haus. I've got 3 other names reporting the same problem, just need to find the corps they're talking about or in.
Something that may help finding the fault. Two of the corps reported a bugged killmail (CCPs end) before or around the time the bug came. The killmail has no listed Involved parties (I think there was supposed to be an NPC party, but it's not listed in the mail ingame - can't get the XML of course as the bugs preventing it being sent)
Here's a quote of what the guy said:
Quote: 2008.03.24 12:37:00
Victim: Zagal'Swain Alliance: Absolute Guardians Syndicate Corp: The Ur'Quan Masters Destroyed: Catalyst System: LTT-AP Security: 0.0 Damage Taken: 2125
Involved parties:
Destroyed items:
Gleaming Alloy, Qty: 2 (Cargo) Precious Alloy, Qty: 21 (Cargo) Condensed Alloy, Qty: 2 (Cargo) Alpha Hull Mod Expanded Cargo, Qty: 2 Lucent Compound, Qty: 19 (Cargo) Motley Compound, Qty: 8 (Cargo) Small Tractor Beam I Sheen Compound, Qty: 3 (Cargo)
Dropped items:
Gleaming Alloy, Qty: 24 (Cargo) Dark Compound, Qty: 18 (Cargo) Precious Alloy, Qty: 3 (Cargo) Condensed Alloy, Qty: 4 (Cargo) Lustering Alloy, Qty: 2 (Cargo) Alpha Hull Mod Expanded Cargo Small Tractor Beam I, Qty: 3 Sheen Compound, Qty: 22 (Cargo) Crystal Compound, Qty: 8 (Cargo)
In real this guy was killed by NPC. I can't delete this killmail from game and mod don't work.
so...theoretically if you flush that mail out by achieving a further 100 kills/losses after it then the API should resume working again until you get another bugged mail.
Presumably, if this bugged mail is indeed the cause, the XML generation errors out as it wants to assign Involved Parties knowing that there should always be at least one, however in this bugs case there isn't with certain NPCs and so doesn't know what to do with itself and gives up.
A fix in this case would be to protect the XML generation for instances where no involved parties are listed (even though there should always be 1+) and to identify which NPCs aren't being listed and why. It would be reasonable to assume that when they are looked up in the database they aren't found for some reason.
Thunk
|

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.16 10:53:00 -
[17]
Originally by: Captain Thunk
In real this guy was killed by NPC. I can't delete this killmail from game and mod don't work.
so...theoretically if you flush that mail out by achieving a further 100 kills/losses after it then the API should resume working again until you get another bugged mail.
Presumably, if this bugged mail is indeed the cause, the XML generation errors out as it wants to assign Involved Parties knowing that there should always be at least one, however in this bugs case there isn't with certain NPCs and so doesn't know what to do with itself and gives up.
A fix in this case would be to protect the XML generation for instances where no involved parties are listed (even though there should always be 1+) and to identify which NPCs aren't being listed and why. It would be reasonable to assume that when they are looked up in the database they aren't found for some reason.
Thunk
Op updated!
I also have a few of these mails for MADH, everytimes the same: Killed by NPC, no involved parties. Can't say if the API failed exactly at that moment but will add that to my bugreport.
------ This sig space is Read-only ! omgalink - Online Skillsheet |

Wipster
Righteous-Indignation Tygris Alliance
|
Posted - 2008.04.16 11:23:00 -
[18]
Originally by: Captain Thunk Edited by: Captain Thunk on 16/04/2008 10:43:45 Something that may help finding the fault. Two of the corps reported a bugged killmail (CCPs end) before or around the time the bug came. The killmail has no listed Involved parties (I think there was supposed to be an NPC party, but it's not listed in the mail ingame - can't get the XML of course as the bugs preventing it being sent)
One way to test if this realy is the case, get the character who was killed and see if they can do a personal xml dump..... see if you get the same responce.
|

Opus Dai
|
Posted - 2008.04.16 11:37:00 -
[19]
Originally by: Wipster
One way to test if this realy is the case, get the character who was killed and see if they can do a personal xml dump..... see if you get the same responce.
Directors/Ceo's can check their corp losses ingame to confirm that they do have one of these mails and identify the pilot and ask him for help to see if his personal API sheet comes through. (I can't imagine that many of them wanting to come forward voluntaryily saying "HAI, I GOT SHOTTED BY THE NPC'S!!" )
Also if any affected corp doesn't have one of these mails in their losses then it disproves the theory anyway.
Thunk
|

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.16 11:39:00 -
[20]
Originally by: Wipster
One way to test if this realy is the case, get the character who was killed and see if they can do a personal xml dump..... see if you get the same responce.
Directors/Ceo's can check their corp losses ingame to confirm that they do have one of these mails and identify the pilot and ask him for help to see if his personal API sheet comes through. (I can't imagine that many of them wanting to come forward voluntaryily saying "HAI, I GOT SHOTTED BY THE NPC'S!!" )
Also if any affected corp doesn't have one of these mails in their losses then it disproves the theory anyway.
Thunk
|

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.16 12:06:00 -
[21]
Asked one of my guys to try it when he can... waiting for his answer. (He's at work too so it won't be an instant feedback). ------ This sig space is Read-only ! omgalink - Online Skillsheet |

Macdeth
Ephemeral Misgivings
|
Posted - 2008.04.17 04:05:00 -
[22]
My theory on this one is that the player kills the NPC, but NPC missiles already in flight then finish off the player. Couldn't attest to accuracy though, nor whether missiles do outlive the NPC since I'm usually not paying that close attention on the few occasions I'm killing them. |

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.17 10:37:00 -
[23]
Edited by: DeTox MinRohim on 17/04/2008 10:37:45
Originally by: Macdeth My theory on this one is that the player kills the NPC, but NPC missiles already in flight then finish off the player. Couldn't attest to accuracy though, nor whether missiles do outlive the NPC since I'm usually not paying that close attention on the few occasions I'm killing them.
Nah, unfortunatly, the 2 kills I remember are a shuttle and a hulk or something like that. So definitly killed by NPC but not because he was killing them.
Didn't get info from my corpmate yet.
------ This sig space is Read-only ! omgalink - Online Skillsheet |

Wipster
Righteous-Indignation Tygris Alliance
|
Posted - 2008.04.17 20:13:00 -
[24]
Well can our api dev go and make up a killmail for someone and delete the involved parties? be a little easier then trying to find one mail in a hundred. |

Yite
Gallente Blueprint Haus Intrepid Crossing
|
Posted - 2008.04.18 08:39:00 -
[25]
Originally by: Captain Thunk Edited by: Captain Thunk on 16/04/2008 10:43:45 Another corp to add to list Blueprint Haus.
Just confirming that we are indeed suffering from this issue at the moment.
|

Yite
Gallente Blueprint Haus Intrepid Crossing
|
Posted - 2008.04.21 10:02:00 -
[26]
Could we get a dev confirming that this is an issue or at least confirming they are investigating if it is an issue?
Thanks !
|

Captain Thunk
Captain Morgan Society
|
Posted - 2008.04.21 10:11:00 -
[27]
Originally by: Yite Could we get a dev confirming that this is an issue or at least confirming they are investigating if it is an issue?
Thanks !
Dev feedback of somekind on this issue would be reassurring.
Thunk
|

Yite
Gallente Blueprint Haus Intrepid Crossing
|
Posted - 2008.04.21 10:31:00 -
[28]
me for not reading the stickies
http://oldforums.eveonline.com/?a=topic&threadID=660049
Did anyone in this thread already fill out a bug report on this?
|

Wipster
Righteous-Indignation Tygris Alliance
|
Posted - 2008.04.21 11:51:00 -
[29]
Yeh I have, they know about it. Hopefully will be fixed soon :)
|

DeTox MinRohim
Madhatters Inc. Pure.
|
Posted - 2008.04.21 15:59:00 -
[30]
Had a bug report on this since April 4 and had a few answers to it from a dev and gave all information we have so far. But haven't got a new response for a small week now.
------ This sig space is Read-only ! omgalink - Online Skillsheet |
| |
|
| Pages: [1] 2 :: one page |
| First page | Previous page | Next page | Last page |