Pages: 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 .. 14 :: one page |
|
Author |
Thread Statistics | Show CCP posts - 1 post(s) |

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.07 07:32:00 -
[91]
Originally by: Tiger Wolf I just downloaded the current version and got it installed today. I got the pos put in the thing but for some reason the information that I put in the corp hanger array for fuel doesnt save. The only button I see to save it is the update fuel button above the hanger array area. I dont know if there is a button missing or something or what, but thought I would say something, maybe someone has a fix for me...
Thanks, TW
Yes, its missing, I know I've added it back several times. I'll edit this post tomorrow with whats missing, time for bed now.
Corporation Management Improvement |

Priory
|
Posted - 2007.12.07 12:14:00 -
[92]
Edited by: Priory on 07/12/2007 12:14:49 $conn = mysql_connect(SQL_HOST, SQL_USER, SQL_PASS) or die('Could not connect to the database; ' . mysql_error()); mysql_select_db(SQL_DB, $conn) or die('Could not select database; ' . mysql_error());
Those are lines 11-15 from an unchanged config.php Every time I try to install it, I get "Parse error: syntax error, unexpected T_STRING in /home/tplacom/public_html/station/config.php on line 12"
Also tried running install2.php and I get a 'Access to database: denied" I know my passwords and all that jazz are correct though.
/me is a noob at this kinda stuff 
|

Metalstein
Beasts of Burden YouWhat
|
Posted - 2007.12.08 01:21:00 -
[93]
Edited by: Metalstein on 08/12/2007 01:22:23 Notice: Undefined variable: count in E:\EasyPHP 2.0b1\www\pos\updatesov.php on line 30 2007-12-08 02:18:31 Success Systems Updated: 5382
Getting this on Updating Sov, and the update doesn't seem to be saved. Updating Alliances works fine though. ----- My posts represent my views and not those of my corporation or alliance. Unless those views are facts. Then they're facts. :) |

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.08 06:33:00 -
[94]
Originally by: Tiger Wolf I just downloaded the current version and got it installed today. I got the pos put in the thing but for some reason the information that I put in the corp hanger array for fuel doesnt save. The only button I see to save it is the update fuel button above the hanger array area. I dont know if there is a button missing or something or what, but thought I would say something, maybe someone has a fix for me...
Thanks, TW
Lines 385-387 should look like this in editpos.php
echo "<tr><td><a href=\"showinfo:16275\">Strontium Calthrates</a></td><td>" . $row['strontium'] . "</td><td><input type=\"text\" name=\"hanger_strontium\" value=\"" . $row['strontium'] . "\" size=10></td><td>-</td></tr>"; echo "</table><p><input type=\"submit\" name=\"action\" value=\"Update Hanger\"></form>"; echo"</table></form><br>";
Originally by: Priory Edited by: Priory on 07/12/2007 12:14:49 $conn = mysql_connect(SQL_HOST, SQL_USER, SQL_PASS) or die('Could not connect to the database; ' . mysql_error()); mysql_select_db(SQL_DB, $conn) or die('Could not select database; ' . mysql_error());
Those are lines 11-15 from an unchanged config.php Every time I try to install it, I get "Parse error: syntax error, unexpected T_STRING in /home/tplacom/public_html/station/config.php on line 12"
Also tried running install2.php and I get a 'Access to database: denied" I know my passwords and all that jazz are correct though.
/me is a noob at this kinda stuff 
Check these linkes again in the config.php file, also remember, it should be renamed to config.php from config.dist.php.
define('SQL_HOST','sql_host'); define('SQL_USER','your_username'); define('SQL_PASS','your_password'); define('SQL_DB','database_name');
The quotes also need to remain on each line, as in the following example, but please don't use password as your password  define('SQL_PASS','password');
Originally by: Metalstein Edited by: Metalstein on 08/12/2007 02:50:44 Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user 'ODBC'@'localhost' (using password: NO) in E:\XAMPP\htdocs\pos\functions.php on line 608
Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A link to the server could not be established in E:\XAMPP\htdocs\pos\functions.php on line 608
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in E:\XAMPP\htdocs\pos\register.php on line 12
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in E:\XAMPP\htdocs\pos\register.php on line 12
Getting this on trying to register. Yes, I am using XAMPP. It's a pretty handy application.
First thing that jumps out at me is it says your not using a password, which if its not set correctly it would cause this. The other thing I am not sure about is the ODBC, I haven't used it and not sure if it understands the mysql commands. One thing I would check is if the tables where created and did you use the one of the install scripts included to do so?
Corporation Management Improvement |

Metalstein
Beasts of Burden YouWhat
|
Posted - 2007.12.08 08:11:00 -
[95]
Edited by: Metalstein on 08/12/2007 08:11:38 Figured out my problem. I tried setting this up earlier on EasyPHP and got it working eventually. Had to change config.dist.php to config.php. Then it worked fine.
I promptly forgot that I did this and tried Pos Tracker on XAMPP. So I was confused as hell for a bit :) Renamed it once more and it works again.
Why does the config file come with the default name of config.dist.php anyways? ----- My posts represent my views and not those of my corporation or alliance. Unless those views are facts. Then they're facts. :) |

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.08 17:11:00 -
[96]
Originally by: Metalstein Edited by: Metalstein on 08/12/2007 08:11:38 Figured out my problem. I tried setting this up earlier on EasyPHP and got it working eventually. Had to change config.dist.php to config.php. Then it worked fine.
I promptly forgot that I did this and tried Pos Tracker on XAMPP. So I was confused as hell for a bit :) Renamed it once more and it works again.
Why does the config file come with the default name of config.dist.php anyways?
So it doesn't accidentally get over written.
Corporation Management Improvement |

Tiger Wolf
|
Posted - 2007.12.10 21:26:00 -
[97]
Originally by: Johnathan Roark
Originally by: Metalstein Edited by: Metalstein on 08/12/2007 08:11:38 Figured out my problem. I tried setting this up earlier on EasyPHP and got it working eventually. Had to change config.dist.php to config.php. Then it worked fine.
I promptly forgot that I did this and tried Pos Tracker on XAMPP. So I was confused as hell for a bit :) Renamed it once more and it works again.
Why does the config file come with the default name of config.dist.php anyways?
So it doesn't accidentally get over written.
Cause our pos tracker creator is smarter than ccp when it comes to releasing new things...
|

Ulrich Smith
|
Posted - 2007.12.17 18:43:00 -
[98]
Originally by: Johnathan Roark POS-Tracker's future:
To me, it seems most of the bugs have been worked out. Most of the remaining ones seem to be typos in the database exports.
I am now beginning to look toward a 2.1 version and I am wondering what everyone would like to see in it? Currently I am looking at the new starbase api features and how to add them into the tracker. This should be rather easy if we get moon location IDs. This may require some database changes, hopefully nothing too major. I have also been looking at making the install process a little better. The Secret POS/Highly Trusted needs finishing. We where also intending on adding a comment box for towers that we never go arround to coding. The field for this is already in the database.
Is there a ver 2.1 download out there that has all of the fixes and changes included?
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.18 06:59:00 -
[99]
Originally by: Ulrich Smith
Originally by: Johnathan Roark POS-Tracker's future:
To me, it seems most of the bugs have been worked out. Most of the remaining ones seem to be typos in the database exports.
I am now beginning to look toward a 2.1 version and I am wondering what everyone would like to see in it? Currently I am looking at the new starbase api features and how to add them into the tracker. This should be rather easy if we get moon location IDs. This may require some database changes, hopefully nothing too major. I have also been looking at making the install process a little better. The Secret POS/Highly Trusted needs finishing. We where also intending on adding a comment box for towers that we never go arround to coding. The field for this is already in the database.
Is there a ver 2.1 download out there that has all of the fixes and changes included?
No not yet, I hope to have a testing version of 2.1 out in the next week or two. This will be mostly database changes and the addition of the EVEAPI stuff(which is really cool btw). I'm planning on changing the way passwords are stored.
Upgrading from 2.0.94 to 2.1 wont be direct. There are almost are too many database changes along with the password storage change to work. This shouldn't be a problem as most will be able to add there towers from the eveapi. I am also planning on making a xml export/import script so everyone can import there structures and outpost into 2.1 versions. This will also make it easier to change servers and make a backup. I don't intend to export/ import the user table. If for some reason anyone thinks this will be a problem for them, please post or evemail me. SVN is up to date under branches/2.1/ if anyone wants live on the edge and isntall that. The manual API update scripts are currently broken and only 2 of the regional moon SQL files are finished. the other ones included need the table name changed if you want to use them. I'll get the rest done sometime this week hopefully.
Corporation Management Improvement |

Captain Ferros
Caldari Expeditionary Fleet 1 Ka-Tet
|
Posted - 2007.12.18 20:52:00 -
[100]
UNOFFICIAL FILES!
I made these to one.. update my alliance info and sov info while on php4, and 2... cause with the name change of regions..
THese are unofficial, since not made by the people working on this, but ifve tested them on my server first. feel free to look over coding if you dont trust it, there is nothing linking to mine.
I put them all in one zip file, but use the one you need. copy them to your pos tracker root directory, then access them via web.
update.php will update the newly renamed regions in your database. it wont change your pos's
updatesov1.php will add in info from todays xml file, manually parsed (dont fret, took only 10 miniutes to do)
updateallianceinfo1.php will do same for the alliance info (it will delete all alliance info and re-add it in based off of todays manually pased xml file)
I will be attempting to make availaible the manually paresed files once a week, since i use them myself.
download is here http://www.bkoa.us/postracker.zip
oh, and nice program :D ---------------- Captain Ferros Command Fleet Admiral Admin Fleet Cmdr Expeditionary Fleet 1 Ka-tet http://tinyurl.com/2u8eqe[/url |
|

Shime
|
Posted - 2007.12.19 13:43:00 -
[101]
Hello, Since trinity, there is an error when trying to update the alliance list :
Could not select Member; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 1
If anyone have an idea ??
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.19 17:37:00 -
[102]
Originally by: Shime Edited by: Shime on 19/12/2007 13:48:50 Hello, Since trinity, there is an error when trying to update the alliance list :
Could not select Member; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 1
If anyone have an idea ??
(if using katet zip files, update are ok)
Change: foreach ($xml->xpath('//row') as $row) { To: foreach ($xml->xpath('/eveapi/result/rowset/row') as $row) {
That should work, the eveapi xml structure changed. Before, it was grabbing every element called row, taking the allianceID and seeing if it was already in the database, If not, it added it to the database. Now they've added corporations to the alliance list, it can't find an allianceID in the first row for a corporation and then the sql is invalid.
Corporation Management Improvement |

Linkex
Caldari Volition Cult The Volition Cult
|
Posted - 2007.12.19 18:23:00 -
[103]
Originally by: Mestoth "Error at the line 3001: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
Query: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14)' at line 1"
Anyone find the cause of this yet? I've tryed it on our live server and my test server, same issue. I've checked the sql file, line 3001 dosen't have any syntax errors I can see.
I have no max database size on my test server, plus its only getting about 300kb into the database with this.
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.19 19:41:00 -
[104]
Originally by: Linkex
Originally by: Mestoth "Error at the line 3001: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
Query: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14)' at line 1"
Anyone find the cause of this yet? I've tryed it on our live server and my test server, same issue. I've checked the sql file, line 3001 dosen't have any syntax errors I can see.
I have no max database size on my test server, plus its only getting about 300kb into the database with this.
try manually creating the database by copy/pasting creat_database.sql into something like phpmyadmin?
Corporation Management Improvement |

Shime
|
Posted - 2007.12.19 21:36:00 -
[105]
Originally by: Johnathan Roark
Originally by: Shime Edited by: Shime on 19/12/2007 13:48:50 Hello, Since trinity, there is an error when trying to update the alliance list :
Could not select Member; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 1
If anyone have an idea ??
(if using katet zip files, update are ok)
Change: foreach ($xml->xpath('//row') as $row) { To: foreach ($xml->xpath('/eveapi/result/rowset/row') as $row) {
That should work, the eveapi xml structure changed. Before, it was grabbing every element called row, taking the allianceID and seeing if it was already in the database, If not, it added it to the database. Now they've added corporations to the alliance list, it can't find an allianceID in the first row for a corporation and then the sql is invalid.
Thats works  Thks a lot !!
|

Linkex
Caldari Volition Cult The Volition Cult
|
Posted - 2007.12.20 08:05:00 -
[106]
Originally by: Johnathan Roark
Originally by: Linkex
Originally by: Mestoth "Error at the line 3001: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
Query: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14)' at line 1"
Anyone find the cause of this yet? I've tryed it on our live server and my test server, same issue. I've checked the sql file, line 3001 dosen't have any syntax errors I can see.
I have no max database size on my test server, plus its only getting about 300kb into the database with this.
try manually creating the database by copy/pasting creat_database.sql into something like phpmyadmin?
Thanks. I got it to work properly in the end, I used ini_set at the top of the install script to set the timeout to 10 mins (600 secs). Took approx 8 mins on my host.
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.20 08:18:00 -
[107]
Originally by: Linkex
Originally by: Johnathan Roark
Originally by: Linkex
Originally by: Mestoth "Error at the line 3001: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
Query: pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14);
MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'pID`, `typeID`) VALUES (40003320, 'Maspah VI - Moon 15', 2, 8, 14)' at line 1"
Anyone find the cause of this yet? I've tryed it on our live server and my test server, same issue. I've checked the sql file, line 3001 dosen't have any syntax errors I can see.
I have no max database size on my test server, plus its only getting about 300kb into the database with this.
try manually creating the database by copy/pasting creat_database.sql into something like phpmyadmin?
Thanks. I got it to work properly in the end, I used ini_set at the top of the install script to set the timeout to 10 mins (600 secs). Took approx 8 mins on my host.
That makes me think its a problem with size of the database. Although physical space may not be a limitation, most php installations have a script execution time limit. This should go away in the next version, I am breaking up the moons by region, which will help with performance as you'll only have to add the moons in the regions you operate in.
Corporation Management Improvement |

Nina Mires
Sharks With Frickin' Laser Beams Mercenary Coalition
|
Posted - 2007.12.20 10:41:00 -
[108]
Did the same on my host using phpmyadmin. Server couldn't cope with the import of 35Mb of data.
I used the manual way of importing the database in the end which worked a treat.
I am missing something when it comes to the silo configuration? I would have expected to see a silo fuel (as it were) monitor on the track pos page?
Need to get my head around how you've done the Sov checking / calculations, but these are some really great additions to a program that is almost essential for maintaining a number of pos's.
Keep up the good work.
Nina ---------
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.20 19:54:00 -
[109]
Originally by: Nina Mires
I am missing something when it comes to the silo configuration? I would have expected to see a silo fuel (as it were) monitor on the track pos page?
I have planned on adding a view to the main track page for silos, but its one of those things I haven't had a chance to do.
Originally by: Nina Mires
Need to get my head around how you've done the Sov checking / calculations, but these are some really great additions to a program that is almost essential for maintaining a number of pos's.
Sovereignty is updated through the eveapi into a table called system_status. When it needs to know which table to get the fuel info out of it sends the systemID to a function called getsovstatus(), which returns the name of the proper table to use. depending on sovereignty level. It needs to be updated to check to make sure the the towers alliance and the sov holder are the same.
Corporation Management Improvement |

Hsnopi
Minmatar Paxton Industries
|
Posted - 2007.12.21 17:17:00 -
[110]
so i downloaded this. looks cool. 1. config.dist.php has to be renamed to config.php 2. is the sql the entire eve database? I already have that so can you provide a smaller sql for if we don't have that already installed? or do i need to uninstall my entire database and reinstall it now? (the tables for all of the eve database) 3. in /usr/local/bin/php mail.php /usr/local/bin/php cron_updatesov.php /usr/local/bin/php cron_updateallianceinfo.php
are these fiels going to be written to thsoe locations? or was I supposed to alter them to my path to PSO tracker? thanks Hsnopi
|
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.21 17:32:00 -
[111]
Originally by: Hsnopi so i downloaded this. looks cool. 1. config.dist.php has to be renamed to config.php 2. is the sql the entire eve database? I already have that so can you provide a smaller sql for if we don't have that already installed? or do i need to uninstall my entire database and reinstall it now? (the tables for all of the eve database) 3. in /usr/local/bin/php mail.php /usr/local/bin/php cron_updatesov.php /usr/local/bin/php cron_updateallianceinfo.php
are these fiels going to be written to thsoe locations? or was I supposed to alter them to my path to PSO tracker? thanks Hsnopi
1. yes, config.dist.php needs to be renamed 2. No, it uses some parts of the eve database dump but modified to better suit this app. 3.No, you shouldn't have to edit that file at all unless you do not want one of those 3 files to run. The path has to do with your php install and it should be fine unless your running a weird setup.
Corporation Management Improvement |

Hsnopi
Minmatar Paxton Industries
|
Posted - 2007.12.21 18:11:00 -
[112]
ok one lest question then.
will the database structure you have provided interfere with the current eve mysql dump I have installed on my db?
|

Hsnopi
Minmatar Paxton Industries
|
Posted - 2007.12.21 18:28:00 -
[113]
for those of you wiht copy paste limitations or a phpmyadmin tool limitation (most have) youc an dothe following suppose your database name is monkey. fromt he command line cd to the directory wiht the create_database.sql directory shell>mysql -u <user> -p <password> mysql>use monkey; mysql> source create_database.sql; looots of lines of Query OK, 1 rows affected.
doone
|

Hsnopi
Minmatar Paxton Industries
|
Posted - 2007.12.21 18:31:00 -
[114]
on running install after creating database.... Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 33723647 bytes) in /<path>/install.php on line 7
which is the file_get_contents. you may want to break that up into various seperate files. You also may want to consider using repalce instead of insert incase of errors on original install. I assume if you have created the db using bigdump or sourceing the file you have touse install2.php?
I would love to help debug this if youa re interested. if not i will shut up:)
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.21 18:55:00 -
[115]
Originally by: Hsnopi on running install after creating database.... Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 33723647 bytes) in /<path>/install.php on line 7
which is the file_get_contents. you may want to break that up into various seperate files. You also may want to consider using repalce instead of insert incase of errors on original install. I assume if you have created the db using bigdump or sourceing the file you have touse install2.php?
I would love to help debug this if youa re interested. if not i will shut up:)
i've included a copy of bigdump.php which should be able to handle the database size. 2.1 will have the moons broken up by region
Corporation Management Improvement |

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.23 08:17:00 -
[116]
I've put a 2.1.0 Beta package together. Please keep in mind that its not complete and a work in progress. yes, there are some bugs, some of the same ones that where in 2.0.94 are in this one. I recommend keeping your old installation until this has been finalized a bit more. If your not familiar with PHP, i suggest waiting. I would prefer bug reports that include possible or likely fixes, not bug real general bug reports telling me its broken.
EVEAPI POS support has been added, but is not complete. updatepos.php will update/add POS. addapi.php will allow you to add keys.
The database has had some changes made, mostly to support the eveapi. A prefix has been added to all the tables 'pos2_'. This is user configurable but the install scripts do not take the user definition into account yet. Moons have been broken up by region. You will only need to add/install those regions you have POS in.
The password hashing method has been changed. New method is currently PHP 5 only, but wont be a problem to include a PHP 4 version in the future. The old method for password hashing was insecure.
Corporation Management Improvement |

Shime
|
Posted - 2007.12.27 18:40:00 -
[117]
just try and my comment :
1st : must activate curl under apache config to work. 2nd : when create admin account, there is an error and i can't create. i must insert manualy into sql.
3nd : when update pos list, there is an error : Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in .....updatepos.php on line 10
if we do "done" all seems ok, but there is no module on the pos setting (is it a problem or must we enter the setup?)
Anyway thats a great job.
|

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.27 19:24:00 -
[118]
Originally by: Shime just try and my comment :
1st : must activate curl under apache config to work. 2nd : when create admin account, there is an error and i can't create. i must insert manualy into sql.
3nd : when update pos list, there is an error : Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in .....updatepos.php on line 10
if we do "done" all seems ok, but there is no module on the pos setting (is it a problem or must we enter the setup?)
Anyway thats a great job.
1) yes, CURL is needed. Most cases its already on with a PHP 5 installation. Or at least that was my understanding
2) Happen to know what the error was, I think i've already corrected that though in the SVN.
3) Using more then one api key? I've fixed that in the svn already as well. I was overwriting the original sql result and then there wasn't any valid data for the next loop, which has also been fixed.
POS modules are not listed in the eveapi so I can't import them, you'll have to add them manually. I am planning on writing an export script for version 2.0.94 versions and an import script for 2.1.x versions. This isn't high on my priorties list though.
Corporation Management Improvement |

CyPhEr UmOs
Gallente CyPhEr TeChNoLoGiEs EvE Consortium
|
Posted - 2007.12.29 07:50:00 -
[119]
In the database, what should be in the highly_trusted field for a highly trusted member? Default is 0 and when I change it manually to 1, 2 or 3 it doesn't change anything.
Thanks. ==================== [CYPHE] Cypher Technologies Kemerk |

Johnathan Roark
Caldari Quantum Industries Interstellar Alcohol Conglomerate
|
Posted - 2007.12.29 17:40:00 -
[120]
Originally by: CyPhEr UmOs
In the database, what should be in the highly_trusted field for a highly trusted member? Default is 0 and when I change it manually to 1, 2 or 3 it doesn't change anything.
It does, notice the make classified button on edit pos when you have that set to 1? That will hide POS from those how do not have it set to 1.
Originally by: CyPhEr UmOs
I have added a Small Gallente POS with no problems. I added a Medium Shadow Control Tower POS and when I go back to view it I get the following errors:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /.../viewpos.php on line 175
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /.../viewpos.php on line 180
Warning: Division by zero in /.../viewpos.php on line 251 [/qoute] those lines tell me that you've added a silo and/or a reactor and something did not work right?
Originally by: CyPhEr UmOs
I also went to add fuel to the first pos that i had no issues with and got this message:
Error retrieving from pos_static in function uptimecalc;Table 'xxxxxxx_postracking.pos2_pos_race_specific' doesn't exist.
Im guessing on the fuel calculator? yea, i haven't gotten arround to removing refrences to that table yet.
Corporation Management Improvement
|
|
|
|
|
Pages: 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 .. 14 :: one page |
First page | Previous page | Next page | Last page |