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

Kale Kold
Caldari Deep Core Mining Inc.
|
Posted - 2009.07.08 20:28:00 -
[61]
Originally by: Skira Ranos I'll check if that is the issue.
Also, several modules don't show up on the killboard: biggest issue is Balmer tracking disruptors.
For this reason especially, it would be great if there was a "view original killmail" button...
There is an item called 'Balmer Series Targeting Inhibitor I' (typeid: 5320) on the database, is this the item you mean?
|

Kale Kold
Caldari Deep Core Mining Inc.
|
Posted - 2009.07.08 20:32:00 -
[62]
Originally by: Random Excess If you change line 74 of addcomment.php to: -
Print("window.location=\"".$Referrer."\";");
The add comment problem goes away. I'm not sure you need to urlencode the referrer value anyway, though I could be wrong.
Done. Your probably right, the referrer should already be encoded.
|

Kale Kold
Caldari Deep Core Mining Inc.
|
Posted - 2009.07.08 20:33:00 -
[63]
Originally by: Random Excess Is the updated.sql.gz file really supposed to be deleting the ransom table???
DROP TABLE IF EXISTS `loot_ransoms`; CREATE TABLE IF NOT EXISTS `loot_ransoms` ( `RansomID` char(32) NOT NULL, `Name` varchar(100) NOT NULL, `ISK` double NOT NULL, `Ship` varchar(100) NOT NULL, `Date` datetime NOT NULL, KEY `RansomID` (`RansomID`), KEY `Name` (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Glad I did that on a test server first 
Good call! The updated file has been removed.
|

Random Excess
|
Posted - 2009.07.09 10:56:00 -
[64]
Originally by: Kale Kold
Originally by: Skira Ranos I'll check if that is the issue.
Also, several modules don't show up on the killboard: biggest issue is Balmer tracking disruptors.
For this reason especially, it would be great if there was a "view original killmail" button...
There is an item called 'Balmer Series Targeting Inhibitor I' (typeid: 5320) on the database, is this the item you mean?
The problem here is that there are several items in the Pirate Ledger Database that have the wrong name for some reason. The DDO Photometry Tracking Disruptor I which is item ID 5322 has a completely different name in as far as the Ledger's DB is concerned and it is not the only one. There was a new data update from CCP a day or two ago so it might be time to update it?
I have done such an update on our DB and all items are showing up properly in killmails, even the ones that were previously submitted.
|

Zaine Maltis
Innsmouth Enterprises
|
Posted - 2009.07.09 12:19:00 -
[65]
Edited by: Zaine Maltis on 09/07/2009 12:19:59 Hey,
I've just written a Wordpress plugin which displays kills from the EDN Killboard as a widget on your blog (as I'm currently using that killboard) I'd like to expand the plugin to be able to pull kills from an install of the pirate ledger. Would that be ok?
Let me know and we can have a chat about it! 
More info about the plugin on this thread -- Innsmouth Enterprises |

Kale Kold
Caldari Deep Core Mining Inc.
|
Posted - 2009.07.11 22:31:00 -
[66]
Edited by: Kale Kold on 11/07/2009 22:31:48
Originally by: Random Excess The problem here is that there are several items in the Pirate Ledger Database that have the wrong name for some reason. The DDO Photometry Tracking Disruptor I which is item ID 5322 has a completely different name in as far as the Ledger's DB is concerned and it is not the only one. There was a new data update from CCP a day or two ago so it might be time to update it?
I have done such an update on our DB and all items are showing up properly in killmails, even the ones that were previously submitted.
Good call, all items have been updated in the main tables.sql.gz file and i've uploaded an updated items file to update an existing installation. See the first thread.
|

Kale Kold
Caldari Deep Core Mining Inc.
|
Posted - 2009.07.11 22:33:00 -
[67]
Originally by: Zaine Maltis
Hey, I've just written a Wordpress plugin which displays kills from the EDN Killboard as a widget on your blog (as I'm currently using that killboard) I'd like to expand the plugin to be able to pull kills from an install of the pirate ledger. Would that be ok?
Let me know and we can have a chat about it! 
More info about the plugin on this thread
Does this plugin read a RSS feed?
|

Zaine Maltis
Innsmouth Enterprises
|
Posted - 2009.07.12 13:43:00 -
[68]
Well, for EDN Killboard it just connects to the DB and pulls the kills directly. I could get it pulling them from rss feeds as an alternative method! Would work better for remote killboards!
Nice idea :D -- Innsmouth Enterprises |

Gnosis19
Caldari Ichizoku
|
Posted - 2009.07.20 15:14:00 -
[69]
Great software, just a few questions:
1. I tried to add a ransom involving a pirate who has no kills on our board. How do I do this?
2. Is API feed planned in future? As specified, trying to get everyone to post all their kills will be a logistics nightmare, not to mention losses.
3. How do I get portraits to show?
|

Random Excess
|
Posted - 2009.07.21 16:33:00 -
[70]
Originally by: Gnosis19 Edited by: Gnosis19 on 20/07/2009 15:26:42 Great software, just a few questions:
1. I tried to add a ransom involving a pirate who has no kills on our board. How do I do this?
You can't at the moment as far as I know.
Quote:
2. Is API feed planned in future? As specified, trying to get everyone to post all their kills will be a logistics nightmare, not to mention losses.
No clue on this one. Think it's been asked for before but not sure what the official answer is. Read through the posts ;)
Quote:
3. How do I get portraits to show?
This is covered in the original post.
Quote:
4. How do I change the page title from 'Pirate Ledger'? Would prefer to use something like 'Ichizoku Corporation Ledger'.
If you change the <title>Pirate Ledger</title> section of each PHP page to: -
<title><?php Print($Database->SiteName); ?></title>
it will use the SiteName variable you set up in the database configuration file. From memory, it works on all but one file with no further modifications necessary. The one file that it didn't work on needed to have said configuration file included or something like that though I don't think it was a page you ever see the title from anyway - I could be remembering wrongly though.
|

Gnosis19
Caldari Ichizoku
|
Posted - 2009.07.21 17:20:00 -
[71]
For point 3, I have tried logging into createaccount.php ingame but it doesn't work. It shows that I already have an account, but when I put in the password it just reloads the page.
|

Random Excess
|
Posted - 2009.07.22 06:44:00 -
[72]
Originally by: Gnosis19 For point 3, I have tried logging into createaccount.php ingame but it doesn't work. It shows that I already have an account, but when I put in the password it just reloads the page.
It's probably got something to do with this recent problem
The ledger uses CCP's server to download individual images so if there has been a problem there then that's why your portrait is not updated. I _think_ it should fix itself if you go to the craeteaccount.php page again from the ingame browser since the apparent portrait serving problem seems to be fixed.
|

Kale Kold
Caldari Deep Core Mining Inc.
|
Posted - 2009.07.22 20:58:00 -
[73]
Edited by: Kale Kold on 22/07/2009 21:01:31
Originally by: Gnosis19 1. I tried to add a ransom involving a pirate who has no kills on our board. How do I do this?
You can't unfortunately. To make things easy to use, the pilot list for ransoms is made up of everyone that has had a kill and is in a registered corporation (in the admin section). If i hadn't done it this way, you would have to either add everyone in your corp manually or type each name in separately when adding the ransom. I think this way is better. Look at it as a initiation ritual, you have to have killed before earning the right to be payed on a ransom. 
Originally by: Gnosis19 2. Is API feed planned in future? As specified, trying to get everyone to post all their kills will be a logistics nightmare, not to mention losses.
When we tested this killboard in our pirate corp over a 3 to 4 month period we had no trouble with people posting kills. In fact, if they didn't post their kill, they didn't get paid. Remember this is a pirate killboard for true pirates and especially for loot sharing. If they aren't on the board, their balance doesn't grow and they don't get paid. Also the api can only handle 100 kills per day(?) for the corp (http://wiki.eve-id.net/APIv2_Char_KillLog_XML). Sometimes we went way above this amount so manual posting was needed anyway. I don't know what the time interval is for the api updating, i seem to remember it's 24hours?
Losses on the other hand are a different matter. Even though we didn't really have a problem with people posting losses (i mean who really cares?) there was the odd one or two people who 'forgot'. I might look to add an api feed for losses only.
Originally by: Gnosis19 3. How do I get portraits to show?
I think there was a problem with the image server but it should be ok now. Try this link: http://img.eve.is/serv.asp?s=256&c=1328398712 If that shows your portrait, it's working. 
Originally by: Gnosis19 4. How do I change the page title from 'Pirate Ledger'? Would prefer to use something like 'Ichizoku Corporation Ledger'.
I've ammended all the source files in the Ledger.zip to read the page title from the 'includes/class.database.php' file. Change it in there and the whole site should then have that title. 
|

Random Excess
|
Posted - 2009.08.14 03:02:00 -
[74]
One of the users of our board has just pointed out a missing item in a kill. The item is in the killmail as "Beta Reactor Control: Diagnostic System I" but it is entered into the DB as simply "Beta Reactor Control", resulting in the slot showing up as empty in the kill report. It looks like the colon is being interpreted as something during the killmail process and text after it being removed. I haven't got a fix for it yet but will post if I get one done before you do ;)
|

Maia Istalindir
|
Posted - 2009.08.23 07:22:00 -
[75]
Anybody have an updated item database for this? Because with the latest patch, rigs aren't showing up on the killboard since they now have sizes. I figured I could write a script to copy all the rigs to small/medium/large, but that would require effort.
|

Kale Kold
Caldari Broken Skull
|
Posted - 2009.08.24 11:40:00 -
[76]
I am leaving EVE for a while so i can't provide any more updates to the Legder for a while. I will try to do what i can but don't count on it.
See if you can get another dev to contribute. 
Keep up the yarrr! 
|

Kale Kold
Caldari Broken Skull
|
Posted - 2009.08.24 11:41:00 -
[77]
I might try to get these latest issue solved but i need a few days (week?) as i've just reformatted my main dev machine.
|

Kale Kold
Caldari Broken Skull
|
Posted - 2009.08.25 23:18:00 -
[78]
Ok i've updated the database names, prices, images and all outstanding bugs in the source code for Apocrypha v1.5. See the first page for the downloads. Any problems, let me know. I have automated scripts to do this stuff, so it's easy for me. 
Have fun! 
|

TyphusMary
Minmatar Anubis Logistics and Services New Eden Research
|
Posted - 2009.08.27 18:10:00 -
[79]
Works nicely. Thanks alot |

Maulos
Caldari Cosmic Encounter
|
Posted - 2009.09.09 13:43:00 -
[80]
Nice work! Really great application!
Question, how do you reset balance when you paid member? I tried the manage balance of the admin panel, but I can't see the option to reset balance for the user (or for the ledger?)
I have an old version of the ledger (I will update the ledger tonight).
How do you do it?
|

Johnathan Roark
Caldari Quantum Industries RAZOR Alliance
|
Posted - 2009.09.09 23:21:00 -
[81]
Originally by: Kale Kold
Originally by: Gnosis19 2. Is API feed planned in future? As specified, trying to get everyone to post all their kills will be a logistics nightmare, not to mention losses.
When we tested this killboard in our pirate corp over a 3 to 4 month period we had no trouble with people posting kills. In fact, if they didn't post their kill, they didn't get paid. Remember this is a pirate killboard for true pirates and especially for loot sharing. If they aren't on the board, their balance doesn't grow and they don't get paid. Also the api can only handle 100 kills per day(?) for the corp (http://wiki.eve-id.net/APIv2_Char_KillLog_XML). Sometimes we went way above this amount so manual posting was needed anyway. I don't know what the time interval is for the api updating, i seem to remember it's 24hours?
Losses on the other hand are a different matter. Even though we didn't really have a problem with people posting losses (i mean who really cares?) there was the odd one or two people who 'forgot'. I might look to add an api feed for losses only.
Thats incorrect, you can do 100 kills per pull. You can pull a weeks worth of kills by using the beforeKillID parameter. You can also pull 100 every hour.
Quantum Industries is recruiting! |

Natasja Podinski
|
Posted - 2009.11.11 18:39:00 -
[82]
this very sexy killboard
Lexa Hellfury for CSM |

graves warship
Caldari THE INSURGENCY DEFI4NT
|
Posted - 2010.01.28 09:43:00 -
[83]
are you still developing this?
|

Mograph
Caldari Starscream Industries IDLE EMPIRE
|
Posted - 2010.01.30 17:59:00 -
[84]
love the killboard, its ace one thing though. with the new in game browser the createaccount.php thing doesnt work.
"Checks Not Complete
EVE In-game Browser:NoIn order to use this page you need to view it using the EVE Online in-game web browser.
"
is the message that appears. and if you are reading this you have reached the signature without noticing. |

Mograph
Caldari Starscream Industries IDLE EMPIRE
|
Posted - 2010.02.01 10:31:00 -
[85]
Originally by: Mograph love the killboard, its ace one thing though. with the new in game browser the createaccount.php thing doesnt work.
"Checks Not Complete
EVE In-game Browser:NoIn order to use this page you need to view it using the EVE Online in-game web browser.
"
is the message that appears.
and if you are reading this you have reached the signature without noticing. |

Kleve Klaw
Caldari
|
Posted - 2010.02.03 18:03:00 -
[86]
Any idea how to update the database with dominion seeins as Apoc 1.5 is the last listed?
|

Mograph
Caldari Starscream Industries IDLE EMPIRE
|
Posted - 2010.02.04 13:52:00 -
[87]
I'll have a look at how to update the tables with the new dominion DB
I'm going through the code at the minute fixing a few bugs.
I have fixed the create account.php file to work with new IGB.
and will upload a zip tonight with the changes. and if you are reading this you have reached the signature without noticing. |

Mograph
Caldari Starscream Industries IDLE EMPIRE
|
Posted - 2010.02.05 10:25:00 -
[88]
Updated SQL for Dominion 1.1.1 + New accountcreate.php that works with browser.
Thanks to kale who i emailed and has helped me greatly in providing this update. and understanding how it all works. Theres a few bugs still kicking about, but I'll do my best to iron them out and begin adding new features.
Updated
and if you are reading this you have reached the signature without noticing. |

Sjolus
Metafarmers MeatSausage EXPRESS
|
Posted - 2010.03.17 07:52:00 -
[89]
If you need a place to keep an svn of files I'll be glad to host it. Not that much of a programmer but I've hosted several projects before. Just drop me a line in-game.
|

Kale Kold
Caldari Broken Skull
|
Posted - 2010.03.18 16:10:00 -
[90]
The problem with hosting a project under SVN is that you can't give everyone commit rights or it will end up a mess. There always have to be admins to review the code. I've provided the source here as a stable package that won't change. |
| |
|
| Pages: 1 2 [3] 4 :: one page |
| First page | Previous page | Next page | Last page |