Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.05 12:31:00 -
[1]
Couple of bugs I've found and fixed
In track.php Line 52, $_GET['highlight'] errors when highlight isn't set. Replace: -
if ( ($_GET['highlight']) == $row['pos_id'] ) { $bgcolor = $edited_background_color; $textcolor = $edited_text_color; }
with
if ( ISSET($_GET['highlight']) ) { if ( ($_GET['highlight']) == $row['pos_id'] ) { $bgcolor = $edited_background_color; $textcolor = $edited_text_color; } }
In fuel_calculator.php Line 14, 40 & 47 all reference an unknown variable $n
In functions.php Line 61 - 63, causes errors if a POS has no structures. Change if (mysql_num_rows($result) != 0) { $current_pg = "0"; $current_cpu = "0";
to
$current_pg = "0"; $current_cpu = "0"; if (mysql_num_rows($result) != 0) {
editpos.php Lines 205 & 206, errors when viewing through non IGB Notice: Undefined index: HTTP_EVE_CHARNAME in editpos.php on line 205 Notice: Undefined index: HTTP_EVE_CHARID in editpos.php on line 206
If I can be of assistance, EVE-Mail me and I'll send you my sourceforge ID. Failing that, I'll keep spamming this thread as I find and fix more errors. 
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.05 12:47:00 -
[2]
Some more...
editpos.php Line 242, causes an error if charters are not needed by not passing a value Replace: - }
with } else { echo "<input type=\"hidden\" name=\"charters\" value=\"0\">"; }
From previous post editpos.php Lines 205 & 206, EVE_NAME and EVE_ID errors when not using IGB Replace:- $new_owner = $_SERVER['HTTP_EVE_CHARNAME']; $new_owner_id = $_SERVER['HTTP_EVE_CHARID'];
with $new_owner = $_SESSION['name']; $new_owner_id = $_SESSION['id'];
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.05 13:40:00 -
[3]
Can you tell I'm bored???
pos-transactions.php Line 158, App doesn't delete structures when POS deleted Replace: - $sql = "DELETE FROM pos_structures WHERE id = '" . my_escape($_POST['s_id']) . "'";
With $sql = "DELETE FROM pos_structures WHERE pos_id = '" . my_escape($_POST['s_id']) . "'";
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.07 14:51:00 -
[4]
Another one.. user-transaction.php, line 36 - Remove line 'session_start();' as it's alread on line 5.
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.07 14:53:00 -
[5]
Suggestion: - Some people might have more than one POS in a system. How about adding a Planet and Moon field as well as the System field.
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.07 15:02:00 -
[6]
Okay I'm back again...
editpos.php, Line 207 - Getting "Notice: Undefined index: eve_id in editpos.php on line 207" Replace: - $new_owner_id = $_SESSION['eve_id'];
With $new_owner_id = $_SESSION['id'];
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.08 14:48:00 -
[7]
Originally by: Utoxin Please remember that my goal for 1.0 is to get the current codebase to a 'usable' state, and eliminate as many bugs as I can. I think we're very close to that state right now. In fact, there's only a few things left to do.
Thanks Utoxin. Suggestion for v2.0, either have a user defineable prefix for the tables, or what would be better is user definable table/variable names in the config.php and details on how to alter an existing table to have the correct fields in that POS Tracker needs.
The reason I say this is because there may be lots of corps out there that have current websites and want to intergrate POS Tracker into them without having a seperate User table, or having to re-write either POS Tracker or their own user database to match them up.
Hope you understand what I mean.
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.10 16:16:00 -
[8]
Another suggestion for version 2.0... How about calculating how many moon minerals are in a silo and a warning e-mail should it get close to full?
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.11 07:55:00 -
[9]
Just pulled the latest version from the SVN and I've spotted the following two errors are still in existance.
user-transaction.php, Line 36 Remove session_start(); as it already exists on line 5 and causes the server to try and resend the session headers>
editpos.php, Line 207 Session ID still incorrectly identified as ['eve_id'] should be ['id'] as defined in user-transaction.php on line 41.
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.12 07:46:00 -
[10]
Originally by: Utoxin In its current status, does anyone have any showstopper issues? I'm not talking about things you would like to have, but things that stop you from being able to use the current version to track fuel usage in your towers.
I still get the following: - Notice: Undefined variable: n in fuel_calculator.php on line 14 Notice: Undefined variable: n in fuel_calculator.php on line 40 Notice: Undefined variable: n in fuel_calculator.php on line 47 Notice: Undefined variable: n in fuel_calculator.php on line 54
Originally by: Utoxin Also, would anyone care if the 'refuel from hangars' option was dropped for 1.0, and added in 2.0 instead? I want to get on with the improved version of the code, instead of this mess that we have now.
Better to cut it if you want a quick "win".
Originally by: Lavintol Could not create user;Column count doesn't match value count at row 1
I get this after I run install.php and input the admin user and submit. Its prolly something silly on my end that I am just overlooking.
I've never been able to get the install.php to work, I always end up running the .SQL directly against the database using MyPHPAdmin. It looks like it worked, but if you check the database it doesn't actually create anything.
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.13 10:59:00 -
[11]
Edited by: Gilgamoth on 13/09/2006 10:59:42
Originally by: Utoxin As for the install script... It works for me. What versions of PHP and MySQL is it failing for you with? (Sorry if you already gave this info)
Okay, I've found my problem with the install script, and it was just a case of muppetry . I run my own MySQL server and the user that I put in the config.php doesn't have CREATE permissions (it's basically a view only account), which is why the tables weren't been created.
I know the install script is only designed to be a simple one (as stated in the first post), but it might be worth replacing line 17 with something like
$sql = "SELECT * FROM user"; $result = mysql_query($sql) or die("Couldn't Access user Table."); if($result==TRUE) { echo "Tables created successfully!<p />"; }
Regards,
Gil
edited for typo
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.14 07:34:00 -
[12]
Not sure if you're going to keep the NPC station and Corp Hanger levels on there, but if so you need to update editpos.php, Line 287 & 326 - replace }
with } else { echo "<input type=\"hidden\" name=\"charters\" value=\"0\">"; }
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.09.21 19:20:00 -
[13]
How's the 1.0 release coming along?
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.10.13 09:53:00 -
[14]
Originally by: franny probably, and as long as you make the tables user definable he'll be happy he's gotta rename some of them, to comply with the existing db could be worse, he could be a DBA, they get cranky when you muck with tables
It's actually quite easy to make the user table definable, you only have to change three files.
In config.php add the line
Quote: define('SQL_TABLE_USERS','user');
In user-transaction.php, change lines 11, 21, 30 and 60 and replace
Quote: user
with
Quote: " . SQL_TABLE_USERS . "
In admin.php, change lines 7 and 30 and replace
Quote: user
with
Quote: " . SQL_TABLE_USERS . "
You can now change the 'users' table name to anything you like.
HTH
Gilgamoth
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Eldritch Storm
|
Posted - 2006.11.15 16:05:00 -
[15]
There was an In Game channel, but I can't find it now.
I'd be willing to help out as I've just been made redundant and have some time on my hands.
Regards,
Gil
Eldritch Storm Council Member, Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.06.02 10:42:00 -
[16]
Esaam Announced a new version here, but that one seems to have died also. I have already got the new POS structures ready for release for this version once CCP releases R2.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.06.03 17:04:00 -
[17]
Originally by: franny Gil, for the old version(ie this thread) or the 'new' version? I need to poke around the new version still, managed to find it, but it's been on my thumb drive untouched
I don't have the 'new' version, so the updates are for this version. If you're willing to share the new version I'll do updates for that also.
Drop me an eve-mail
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.07.01 21:06:00 -
[18]
Use the following SQL script to add the new POS structures to your database
Quote: INSERT INTO structure_static (`name`, `cpu`, `pg`) VALUES (`Cynosural Generator Array`, 150, 37500), (`Cynosural System Jammer`, 0, 750000), (`Energy Neutralizing Battery`, 25, 350000), (`Jump Bridge`, 4000, 750000), (`Drug Lab`, 150 50000), (`Biochemical Reactor Array`, 1250, 250000), (`Medium Biochemical Reactor Array`, 750, 250000), (`Biochemical Silo`, 250, 50000), (`Catalyst Silo`, 250, 50000), (`General Storage`, 250, 50000), (`Hazadous Chemical Silo`, 250, 50000), (`System Scanning Array`, 25, 25000);
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.07.14 22:21:00 -
[19]
Originally by: Salia Deluri hi, I've been reading through these threads and looking for the current version of this. Is there one? Is it the one linked at the top of this thread? Any help would be much appreciated.
You can get the lastest version from Sourceforge.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.07.16 12:22:00 -
[20]
Originally by: Salia Deluri Just an FYI for some of those just installing this thing. Syntax stuff in regards to the POS structure update I had to make a few changes to get your script to work.
Thanks for the info Salia. I'd already applied the structures whilst I was on the test server and wrote the code by hand. N00b mistake 4TL 
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.07.18 08:10:00 -
[21]
Originally by: Salia Deluri First the problem child. How do I fix the system showing 0d 0h left if you are not using CPU even though you have a lot of heavy water?
Can you detail this problem a little more, possibly with screen shots?
Originally by: Salia Deluri I was looking at adding some fields. Group owner, fuel technician group and planet/moon.
Sounds like a good idea. You'll probably have to create a new table that says who has what level access to each POS. I must admit that a new "security" scheme was something I was thinking of looking at.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.12 09:32:00 -
[22]
Originally by: Gilgamoth ('Cynosural Generator Array', 150, 37500)
I just realised... Cyno Generators are 375000 PG not 37500..
Typo's 4TL
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.15 12:41:00 -
[23]
Kewl Franny :)
My thoughts on the security system was more widespread than that.
I was looking more to corp/alliance level POS trackers where you could set permissions levels on the POS rather than on the user. Each POS would have a View, Refuel and Change attribute which can be set to owner, corp or alliance. View is that other people can see your POS' status. Refuel allows other people to change your POS' fuel status but not change any modules, and Change would allow modules in PT to be onlined and offlined. Either that or being able to assign permissions on POS' to individuals.
Just my thoughts.
I did start doing a module list for faction modules, just never got around finishing it. The problem I see is modifying the existing code to deal with faction towers.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.15 22:16:00 -
[24]
Originally by: Johnathan Roark As far as when this will release? When we got what we want in and have most of the bugs that we can find fixed. I'm hoping this is real soon.
Looks like you've got in there most of the goodies that I was contemplating.
How does the Outpost stuff work?
Are you interested in letting us help on your project and you can use the source forge access we have? It just saves us duplicating effort when we can combine and conquer?
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.16 12:16:00 -
[25]
Originally by: EVE Garthagk
- Added rough internal support for player owned starbases.
- Added /corp/StarbaseList.xml.aspx (version 2+) - returns list of starbases
- Added /corp/StarbaseDetail.xml.aspx (version 2+) - fuel levels and state of a starbase
- Added support for versioned pages and version escalation - this allows me to continue releasing bug fixes to the API while there are functional changes implemented (such as the above POS pages) without enabling access to those pages
Please note that some functionality is not yet enabled. Starbase pages require the API to be at version 2 and presently we are still at version 1. There is no way for you to access this functionality until it has undergone internal QA and we're ready to let everybody in.
Just thought you might be interested, Garthagk is adding POS details to the next revision of the API (See Here).
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.19 20:32:00 -
[26]
Originally by: MrRx7 We are going to be officially entering the Alpha/Beta stages for testers on Monday, we figure about a week or so of bug testing. but this all depends on the kinds of stuff we have to fix.
More than happy to help out where I can.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.24 12:58:00 -
[27]
Originally by: franny I updated the sourceforge version to include faction towers I am not 100% sure on the #s, so if they are off, let me know which and what it should be please
Oooooh, you gorgeous woman.
/me runs off to check
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.24 16:15:00 -
[28]
The Sourceforge SQL file doesn't contain faction POS Modules. I'll try and rectify that over the weekend.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.24 21:25:00 -
[29]
Originally by: ToxicFire *looks around to make sure no ones listening then leans in* little secret its in the database export
ARGH... I've just spent about an hour writing a query to dump all the info into a CSV file only to find you've already done it and franny has already updated the SQL.
/me cries 
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.24 21:56:00 -
[30]
Hmm I have 148 Structures in my Data Dump and you only have 145.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.25 23:40:00 -
[31]
The query I used to get the list of mods was SELECT it.* FROM `invtypes` it, `invgroups` ig WHERE it.groupID=ig.groupID AND it.published=1 AND ig.CategoryID=23 ORDER BY it.groupID;
This produced a list of 147 modules plus the second Corp hanger array. I have noticed that the Moon Harvester II is in there as well as a Structure Repair Array, which I can't find in game, but as I filtered it by "published=1" if it ain't live on TQ then they shouldn't be listed 
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.28 08:35:00 -
[32]
Originally by: ToxicFire Ya not getting power and cpu with that query
I know I'm not getting PG or CPU, I said I was just getting a list of modules 
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.28 08:41:00 -
[33]
Originally by: MrRx7 Me and John are making progress, we have around 19? bugs atm to fix and some more features we may or may not add.
Come on, stop holding out on us 
Originally by: MrRx7 Also, the source code will only be made avaible once we're done with the project :) we are both rather anal about posting half-finshed code :)
Its nothing personal, but the source is a secret until we're finshed :)
Yeah, but are you gonna put it on sourgeforge (or similar) to allow community fixes/mods?
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.29 12:50:00 -
[34]
Originally by: MrRx7 It is already on there, just not public :)
I just realised that Constellation Sov has a fuel usage bonus with it. Fuel usage decreases from 25% with system sov to 30% with constellation sov (see dev blog)
Not sure if you've included it in yours, but it ain't currently in ours :)
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.08.29 15:52:00 -
[35]
Originally by: franny so i'll fix that in the one Gil and I have been working on tonight too
WORK?? How dare you use that word in conjunction with me 
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.09.05 11:34:00 -
[36]
Originally by: MrRx7 We used the original structor as much as we could, however we have expanded beyond the start of 11 tables to over 22 to take in effect all the new stuff.
Please say that they all start with a prefix such as "pos_"? It took me quite a while to graft the current SF code so that it doesn't clash with my current tables and it makes patching and updates a biatch. 
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.09.05 15:46:00 -
[37]
Originally by: Johnathan Roark I was considering adding a variable to the front of all the tables so you could make all the calls easy. Now installing you would have to make the table name changes by hand unless someone had a better idea for this.
Also was considering allowing custom extensions for those that are using something other then the standard .php
It doesn't have to be a variable, just make all the tables start with the same prefix such as POS_ or PT_ or anything that makes them not just "user" and "roles" which are so generic as to clash :)
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.09.06 08:25:00 -
[38]
Originally by: MrRx7 Well ideally you'd be able to have more than one database :)
Not guaranteed with the vast majority of hosting out there.
Regards,
Gil
Future Falcon EVE Tools - Project Leader.
|

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.09.12 12:15:00 -
[39]
Edited by: Gilgamoth on 12/09/2007 12:15:40
Originally by: MrRx7 I have one last nagging error to fix then we will be doing a open public beta for a week or so
Erm... ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME
Oh did I mention??? ME?
Regards,
Gil
Win 160mil ISK - Click Here for more info. |

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.09.13 22:05:00 -
[40]
Originally by: MrRx7 I will prob be opening it up tonight even with the bug, becuase meh. its not "that" big of a bug :)
so in like an hour or so
Gimme the F**King code already 
Regards,
Gil
Win 160mil ISK - Click Here for more info. |

Gilgamoth
Imperium Technologies Firmus Ixion
|
Posted - 2007.09.14 11:27:00 -
[41]
Originally by: franny
Originally by: Gilgamoth
Gimme the F**King code already
I got the Sourceforge SVN link already , but i'm not at home to play with it the 10mb+ db is a BIT daunting
Tease!
Regards,
Gil
Win 160mil ISK - Click Here for more info. |
|
|