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

Doc Punkiller
Caldari Section XIII Tau Ceti Federation
|
Posted - 2008.12.23 13:07:00 -
[1]
Edited by: Doc Punkiller on 23/12/2008 13:08:33 Not sure if it has been fixed in svn but i noticed that when i update fuel no changes where visible or wrong changs (like the change occured in the past).
Looking in the code it noticed that the table update_log was not updated, because of the eve_id NULL is forbiden.
Fixing that, and the fuel can be edited by hand (i have no director API access as i'm a peon). Signature removed. Inappropriate. Navigator |

Doc Punkiller
Caldari Section XIII Tau Ceti Federation
|
Posted - 2008.12.26 12:38:00 -
[2]
Version 3.0.0 Beta 5.
In production page, "Amount in Silo" is wrong, the value displayed is the volume , and not the number of items in silo. "Amount in Silo (M3)" is therefore wrong because computed from "Amount in Silo" in template.
Signature removed. Inappropriate. Navigator |

Doc Punkiller
Caldari Section XIII Tau Ceti Federation
|
Posted - 2008.12.29 10:09:00 -
[3]
Originally by: DeTox MinRohim
Originally by: Doc Punkiller Version 3.0.0 Beta 5.
In production page, "Amount in Silo" is wrong, the value displayed is the volume , and not the number of items in silo. "Amount in Silo (M3)" is therefore wrong because computed from "Amount in Silo" in template.
Can't find that one. Seems that what is in the SVN is fine. Note that some materials have a volume of 1m so the 2 numbers will be the same.
Could be an error of the info in the static material table. What's the material in question?
Material is Sylramic Fibers (0.075m3, 6000 units per hour) i see 4500 units and 338m3 in the production.
It should be 60000 units and 4500m3.
I do not use the API import because i do not have access to it, i enter 0 when i empty the silos.
Signature removed. Inappropriate. Navigator |

Doc Punkiller
Caldari Section XIII Tau Ceti Federation
|
Posted - 2008.12.30 09:17:00 -
[4]
Originally by: DeTox MinRohim Edited by: DeTox MinRohim on 30/12/2008 02:34:27
Originally by: Doc Punkiller
Material is Sylramic Fibers (0.075m3, 6000 units per hour) i see 4500 units and 338m3 in the production.
It should be 60000 units and 4500m3.
mm My source says 6K/hour/450m3
Not 60k
Exept that the silo was running for 10 hours... 6k * 10 -> 60k.
Signature removed. Inappropriate. Navigator |

Doc Punkiller
Caldari Section XIII Tau Ceti Federation
|
Posted - 2009.01.20 10:31:00 -
[5]
Originally by: Doc Punkiller
Originally by: DeTox MinRohim Edited by: DeTox MinRohim on 30/12/2008 02:34:27
Originally by: Doc Punkiller
Material is Sylramic Fibers (0.075m3, 6000 units per hour) i see 4500 units and 338m3 in the production.
It should be 60000 units and 4500m3.
mm My source says 6K/hour/450m3
Not 60k
Exept that the silo was running for 10 hours... 6k * 10 -> 60k.
for some reason (beta 5) i had to make the following modification in production.php in order to have the correct amount and volumes displayed :
line 295, change :
$silo[$x]['material_amount'] = ($rate_vol*$silo[$x]['hoursago'])+$silo[$x]['material_amount'];///$mat info['material_volume']+$silo[$x]['material_amount'];
by
$silo[$x]['material_amount'] = ($silo[$x]['rate']*$silo[$x]['hoursago'])+$silo[$x]['material_amount'];/ //$matinfo['material_volume']+$silo[$x]['material_amount'];
Signature removed. Inappropriate. Navigator |

Doc Punkiller
Caldari Section XIII Tau Ceti Federation
|
Posted - 2009.01.30 12:23:00 -
[6]
Edited by: Doc Punkiller on 30/01/2009 12:25:21
Originally by: Preddy
if i make the changes in line 295 like u. i only copy your change here from forum
i get follow error
"Parse error: syntax error, unexpected '/' in /data/apache/users/XXXXXX/heerlager/www/postracker/production.php on line 295"
any hint ?
pred
i think it's a line break problem; just remove the line break between / and //. The line should be on only one line.
or just change the line to :
Quote: $silo[$x]['material_amount'] = ($silo[$x]['rate']*$silo[$x]['hoursago'])+$silo[$x]['material_amount'];
(same thing without the comments) |
|
|
|