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

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.21 22:22:00 -
[481]
User Away Status Support + eMail POS Owner if POS is below $posalert: (1/2)
Index: themes/posmanager/user.tpl =================================================================== --- themes/posmanager/user.tpl (revision 244) +++ themes/posmanager/user.tpl (working copy) @@ -24,6 +24,10 @@ <td><input type="text" name="email" value="<!--[$email]-->" /></td> </tr> <tr class="trackheader"> + <td>Away Status</td> + <td><!--[html_options options=$awaystatus name='away' selected=$away]--></td> + </tr> + <tr class="trackheader"> <td colspan="2"><input type="submit" value="Change Info" /></td> </tr> </tbody>
Index: includes/class.pos.php =================================================================== --- includes/class.pos.php (revision 244) +++ includes/class.pos.php (working copy) @@ -438,11 +438,12 @@
if ($compare) { Eve::SessionSetVar('name', $userinfo['name']); Eve::SessionSetVar('eve_id', $userinfo['eve_id']); Eve::SessionSetVar('access', $userinfo['access']); Eve::SessionSetVar('corp', $userinfo['corp']); Eve::SessionSetVar('id', $userinfo['id']); Eve::SessionSetVar('email', $userinfo['email']); + Eve::SessionSetVar('away', $userinfo['away']); Eve::SessionSetVar('highly_trusted', $userinfo['highly_trusted']); Eve::SessionSetVar('delsid', $userinfo['delsid']); Eve::SessionSetVar('allianceID', $userinfo['alliance_id']); @@ -534,8 +535,9 @@ 'access' => Eve::SessionGetVar('access'), 'corp' => Eve::SessionGetVar('corp'), 'id' => Eve::SessionGetVar('id'), 'eve_id' => Eve::SessionGetVar('eve_id'), 'email' => Eve::SessionGetVar('email'), + 'away' => Eve::SessionGetVar('away'), 'highly_trusted' => Eve::SessionGetVar('highly_trusted'), 'delsid' => Eve::SessionGetVar('delsid'), 'allianceID' => Eve::SessionGetVar('allianceID')); @@ -562,6 +564,7 @@ Eve::SessionDelVar('corp'); Eve::SessionDelVar('id'); Eve::SessionDelVar('email'); + Eve::SessionDelVar('away'); Eve::SessionDelVar('highly_trusted'); Eve::SessionDelVar('delsid'); Eve::SessionDelVar('userlogged'); @@ -571,6 +574,42 @@ }
/** + * POSMGMT::UpdateUserAway() + * + * @param mixed $args + * @return + */ + function UpdateUserAway($args) + { + if (!isset($args['id'])) { + Eve::SessionSetVar('errormsg', 'No ID!'); + return false; + } + if (!isset($args['newaway'])) { + Eve::SessionSetVar('errormsg', 'No Away Status!'); + return false; + } + + $dbconn =& DBGetConn(true); + + $sql = "UPDATE ".TBL_PREFIX."user + SET away = '".Eve::VarPrepForStore($args['newaway'])."' + WHERE id = '".Eve::VarPrepForStore($args['id'])."'"; + + $dbconn->Execute($sql); + + if ($dbconn->ErrorNo() != 0) { + Eve::SessionSetVar('errormsg', $dbconn->ErrorMsg() . $sql); + return false; + } + + Eve::SessionSetVar('away', $newaway); + + return true; + } + + + /** * POSMGMT::UpdateUserMail() * * @param mixed $args

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.21 22:24:00 -
[482]
Edited by: Amy Frost on 21/05/2009 22:28:33 User Away Status Support + eMail POS Owner if POS is below $posalert: (2/2)
Index: cron_mail.php =================================================================== --- cron_mail.php (revision 244) +++ cron_mail.php (working copy) @@ -50,10 +50,6 @@ $mail = new posMailer(); $mail->mailinit();
//Add site URL to $mail object $url_path=$eve->GetBaseURL(); $mail->site_URL=$url_path; $userinfo = $posmgmt->GetUserInfo(); $eve->SessionSetVar('userlogged', 1); $access = $eve->SessionGetVar('access'); @@ -99,12 +95,12 @@ 'isotope'=>$row['result_optimal']['optimum_isotope']-$row['isotope'], 'ozone'=>$row['result_optimal']['optimum_ozone']-$row['ozone'], 'heavy_water'=>$row['result_optimal']['optimum_heavy_water']-$row['heavy_water']); - if($characterInfo['email_optin']>0) + if($characterInfo['away']!=1) { if($row['result_online']<$config['minimal_fuel']) { $mail->posalert($characterInfo['email'], $characterInfo['name'], $row, $row3, $diff); - echo "Mail Sent to: ".$characterInfo['name']."<br><hr>"; + // echo "Mail Sent to: ".$characterInfo['name']."<br><hr>";
} } Index: user.php =================================================================== --- user.php (revision 244) +++ user.php (working copy) @@ -65,12 +65,23 @@ $action = $eve->VarCleanFromInput('action');
if ($action == 'changeinfo') { + $away = $eve->VarCleanFromInput('away'); $email = $eve->VarCleanFromInput('email'); $newpass = $eve->VarCleanFromInput('newpass'); $newpass2 = $eve->VarCleanFromInput('newpass2');
- if (!empty($email) != $userinfo['email']) { - if (!$posmgmt->UpdateUserMail(array('id' => $userinfo['id'], 'newmail' => $email))) { + if (!empty($away) && $away != $userinfo['away']) { + if ($posmgmt->UpdateUserAway(array('id' => $userinfo['id'], 'newaway' => $away))) { + $eve->SessionSetVar('statusmsg', 'New away status saved!'); + $eve->RedirectUrl('user.php'); + } + } + + if (!empty($email) && $email != $userinfo['email']) { + if ($posmgmt->UpdateUserMail(array('id' => $userinfo['id'], 'newmail' => $email))) { + $eve->SessionSetVar('statusmsg', 'New email address saved!'); $eve->RedirectUrl('user.php'); } } @@ -97,8 +108,9 @@ }
$eveRender->Assign($userinfo); +$eveRender->Assign('awaystatus', array( 2 => 'No', 1 => 'Yes')); $eveRender->Assign('IS_IGB', $IS_IGB);
$eveRender->Display('user.tpl');

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

Shareina
Gallente CAFE Advanced Financial Enterprise
 |
Posted - 2009.05.22 13:33:00 -
[483]
In the install.php page, I enter all my database information, and the test succeeds. Then I click on write, and it also succeeds.
Then I click on Update Tables, and it loops indefenitely. I waited for 15 minutes and its still looping. I check at the DB and no table has been created.
There are no warning on the page, all the lines about the requirements are "OK" or "YES".
|

almooja
NEW DAWN CO Fuzzy Nut Attack Squirrels
 |
Posted - 2009.05.22 17:54:00 -
[484]
Originally by: Shareina In the install.php page, I enter all my database information, and the test succeeds. Then I click on write, and it also succeeds.
Then I click on Update Tables, and it loops indefenitely. I waited for 15 minutes and its still looping. I check at the DB and no table has been created.
There are no warning on the page, all the lines about the requirements are "OK" or "YES".
I am having the same issue. ___________________________________ Contact me about your cap ship needs!
Almooja NUTS Production and Manufacturing NUTS Trading |

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.24 11:59:00 -
[485]
- Towers assigned to the logged in Person appear in a different Color - Display Towers which are below $focus_fuel in a different Color
Index: eveconfig/config.php =================================================================== --- eveconfig/config.php (revision 244) +++ eveconfig/config.php (working copy) @@ -9,15 +9,18 @@
$absolocation = 1; #Turns absolute tower location on/off
+$focus_fuel = 72; # Bring the fuel level to our attention $minimal_fuel = 48; # Minimal fuel that should be kept in the towers at any time $critical_fuel = 24; # Critical fuel level
$page_limit = 15; #Sets the number of towers to display on tracking page
+$focus_fuel_font_color = "#E5F212" ; # $minimal_fuel_font_color = "#E5F212" ; # $critical_fuel_text_color = "#E5F212" ; # $owner_text_color = "#FFFFFF" ; # $edited_text_color = "#FFFFFF" ; # +$focus_fuel_background_color = "#053D49" ; # $minimal_fuel_background_color = "#770000" ; # $critical_fuel_background_color = "#FF0000" ; # $owner_background_color = "#001642" ; #
Index: track.php =================================================================== --- track.php (revision 244) +++ track.php (working copy) @@ -148,7 +148,7 @@
//$sortAarr[] = $row['result_online'];
- if ($row['owner_id'] == $_SESSION['id'] ) { + if ($row['owner_id'] == $userinfo['eve_id'] || $row['secondary_owner_id'] == $userinfo['eve_id']) { $row['bgcolor'] = $colors['owner_background_color']; $row['textcolor'] = $colors['owner_text_color']; } @@ -158,6 +158,11 @@ $row['textcolor'] = $colors['edited_text_color']; }
+ if ( isset($focus_fuel) && $row['result_online'] <= $focus_fuel) { + $row['bgcolor'] = $colors['focus_fuel_background_color']; + $row['textcolor'] = $colors['focus_fuel_font_color']; + } + if ($row['result_online'] <= $minimal_fuel) { $row['bgcolor'] = $colors['minimal_fuel_background_color']; $row['textcolor'] = $colors['minimal_fuel_font_color'];
looking at your themes/posmanager/themeconfig.php, it seemed you had the idea of implementing $focus_fuel but you either dropped it or forgot to implement it. PS: It's totally optional, if you don't set $focus_fuel it won't bother you.

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.24 13:07:00 -
[486]
"POSMGMT::GetAllPos2Count()" looks very inefficient if you really only want to figure out the number of Towers. You might want to consider replacing
$sql = "SELECT ".TBL_PREFIX."tower_info.*, (SELECT ".TBL_PREFIX."user.name FROM ".TBL_PREFIX."user WHERE ".TBL_PREFIX."tower_info.secondary_owner_id = ".TBL_PREFIX."user.eve_id ) AS 'backup', (SELECT ".TBL_PREFIX."evemoons.moonName FROM ".TBL_PREFIX."evemoons WHERE ".TBL_PREFIX."tower_info.moonID = ".TBL_PREFIX."evemoons.moonID) AS 'MoonName' FROM ".TBL_PREFIX."tower_info ORDER BY MoonName";
with
$sql = "SELECT count( pos_id ) FROM ".TBL_PREFIX."tower_info";
--

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

GreKom
Amarr The All-Seeing Eye Atlas Alliance
 |
Posted - 2009.05.24 14:42:00 -
[487]
Originally by: almooja
Originally by: Shareina In the install.php page, I enter all my database information, and the test succeeds. Then I click on write, and it also succeeds.
Then I click on Update Tables, and it loops indefenitely. I waited for 15 minutes and its still looping. I check at the DB and no table has been created.
There are no warning on the page, all the lines about the requirements are "OK" or "YES".
I am having the same issue.
I'm goin to that line end. Same issue here 
|

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.25 00:34:00 -
[488]
Show Fuel Tech + Backup Fuel Tech on the Track Page
Index: themes/posmanager/track.tpl =================================================================== --- themes/posmanager/track.tpl (revision 244) +++ themes/posmanager/track.tpl (working copy) @@ -15,7 +15,7 @@ <td>Tower Name</td> <td>Location</td> <td>Region</td> - <!--<td>Owner</td>--> + <td>Owner</td> <td>Last Update</td> <td>Status</td> <td>Action</td> @@ -31,7 +31,7 @@ <td><!--[$pos.towerName]--></td> <td><!--[$pos.MoonName]--></td> <td><!--[$pos.region]--></td> - <!--<td><a href="showinfo:1373//1048666916"> </a></td>--> + <td><!--[$pos.corp]--><br><a href="showinfo:1373//<!--[$pos.owner_id]-->"><!--[$pos.name|default:"-"]--></a> / <a href="showinfo:1373//<!--[$pos.secondary_owner_id]-->"><!--[$pos.backup|default:"-"]--></a></td> <td><!--[$pos.last_update]--></td> <td style="color:<!--[$pos.textcolor]-->;"><!--[$pos.online]--></td> <td><button type="button" onclick="window.location.href='viewpos.php?i=<!--[$pos.pos_id]-->'">View</button><button type="button" onclick="window.location.href='fuelbill.php?pos_id=<!--[$pos.pos_id]-->'">Fuel Bill</button><button type="button" onclick="window.location.href='editpos.php?i=<!--[$pos.pos_id]-->'">Edit</button><button type="button" onclick="window.location.href='deletepos.php?i=<!--[$pos.pos_id]-->'">Delete</button></td>
--

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.25 00:43:00 -
[489]
Users with Access Level 1+2 only see Towers assigned to them (Initial Version):
Index: track.php =================================================================== --- track.php (revision 244) +++ track.php (working copy) @@ -122,10 +123,19 @@
$rows = $posmgmt->GetAllPos2($args); $towercount = $posmgmt->GetAllPos2Count(); + $disp_towercount = 0;
$bgcolor = "#111111"; $textcolor = "#FFFFFF"; foreach($rows as $key => $row) { + + // Users with Access below 3 -> Only Display the Tower if they are Fuel Tech for it. + if ($access <= "2") { + if ($row['owner_id'] != $userinfo['eve_id'] && $row['secondary_owner_id'] != $userinfo['eve_id']) { + // View Right Denied. + continue ; + } + }
$row2 = $posmgmt->GetLastPosUpdate($row['pos_id']);
@@ -167,7 +182,9 @@ $row['bgcolor'] = $colors['critical_fuel_background_color']; $row['textcolor'] = $colors['critical_fuel_text_color']; } - $rows[$key] = $row; + + $disp_rows[$key]=$row; + $disp_towercount++; } //array_multisort($sortAarr, SORT_ASC, $rows); //echo '<pre>';print_r($_SESSION); echo '</pre>';exit; @@ -200,7 +217,7 @@
$pagernumlist=array(10=>'10', 15=>'15', 25=>'25', 30=>'30', 50=>'50', 100=>'100');
- $pager = array('numitems' => $towercount, 'limit' => $args['limit'], 'page' => $args['page']); + $pager = array('numitems' => $disp_towercount, 'limit' => $args['limit'], 'page' => $args['page']);
$eveRender->Assign('pager', $pager); $eveRender->Assign('sb', $sb); @@ -209,7 +226,7 @@ $eveRender->Assign('arrposize', array(1 => 'Small', 2 => 'Medium', 3 => 'Large')); $eveRender->Assign('arrporace', $arrporace); $eveRender->Assign('config', $config); - $eveRender->Assign('poses', $rows); + $eveRender->Assign('poses', $disp_rows);
$eveRender->Display('track.tpl'); Index: fuelbill.php =================================================================== --- fuelbill.php (revision 244) +++ fuelbill.php (working copy) @@ -170,6 +170,13 @@ //echo '<pre>';print_r($towers); echo '</pre>';exit; foreach ($towers as $key => $tower) {
+ // Users with Access below 3 -> Only Display the Tower if they are Fuel Tech for it. + if ($access <= "2") { + if ($tower['owner_id'] != $userinfo['eve_id'] && $tower['secondary_owner_id'] != $userinfo['eve_id']) { + continue ; + } + } + $required_H_isotope = 0; $required_N_isotope = 0; $required_O_isotope = 0; @@ -224,7 +231,7 @@ $fuel_ozone = $fuel_ozone + $needed_ozone; $fuel_heavy_water = $fuel_heavy_water + $needed_heavy_water;
- $towers[$key] = $tower; + $disp_towers[$key] = $tower; }
(integer) $fuel_uranium_size = round($fuel_uranium * 1); @@ -266,7 +273,7 @@ $eveRender->Assign('fuel_ozone', $fuel_ozone); $eveRender->Assign('fuel_heavy_water', $fuel_heavy_water); $eveRender->Assign('total_size', $total_size); - $eveRender->Assign('towers', $towers); + $eveRender->Assign('towers', $disp_towers);
$eveRender->Display('fuelbill.tpl'); Index: fuel_calculator.php =================================================================== --- fuel_calculator.php (revision 244) +++ fuel_calculator.php (working copy) @@ -185,6 +185,14 @@ $towers = $posmgmt->GetAllPos2(); $opttowers[0] = 'POS List'; foreach ($towers as $tower) { + + // Users with Access below 3 -> Only Display the Tower if they are Fuel Tech for it. + if ($access <= "2") { + if ($tower['owner_id'] != $userinfo['eve_id'] && $tower['secondary_owner_id'] != $userinfo['eve_id']) { + continue ; + } + } +
--

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

almooja
NEW DAWN CO Fuzzy Nut Attack Squirrels
 |
Posted - 2009.05.25 02:36:00 -
[490]
AMY FROST
STOP POSTING PAGES OF CODE! ! ! !
Try linking a txt file. Or some other form of not FILLING up a whole damn section. Its nice you are providing what seems to be fixes or what not. But PLEASE stop filling the while page with CODE! ___________________________________ Contact me about your cap ship needs!
Almooja NUTS Production and Manufacturing NUTS Trading |
|

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.25 11:57:00 -
[491]
Originally by: almooja AMY FROST
STOP POSTING PAGES OF CODE! ! ! !
Try linking a txt file. Or some other form of not FILLING up a whole damn section. Its nice you are providing what seems to be fixes or what not. But PLEASE stop filling the while page with CODE!
Well I would love to post it elsewhere, but the bugtracker is disabled on their Sourceforge Page so I have no Idea where else to post these patches. |

hendo001
Caldari White Star Ltd Mjolnir Alliance
 |
Posted - 2009.05.27 13:39:00 -
[492]
Edited by: hendo001 on 27/05/2009 13:44:02 I keep getting this: Parse error: syntax error, unexpected '{' in /home/rpgcoll/public_html/mjolnir-alliance/pos/includes/class.pos.php on line 4203
whenever i try to install this to my webhost :S
|

Johnathan Roark
Caldari Quantum Industries RAZOR Alliance
 |
Posted - 2009.05.27 15:39:00 -
[493]
Originally by: hendo001 Edited by: hendo001 on 27/05/2009 13:44:02 I keep getting this: Parse error: syntax error, unexpected '{' in /home/rpgcoll/public_html/mjolnir-alliance/pos/includes/class.pos.php on line 4203
whenever i try to install this to my webhost :S
Means you probably only have php 4.x
 Vuk Lau for CSM 3.0 |

Shareina
Gallente CAFE Advanced Financial Enterprise
 |
Posted - 2009.05.28 11:37:00 -
[494]
Edited by: Shareina on 28/05/2009 11:37:08
Originally by: Shareina In the install.php page, I enter all my database information, and the test succeeds. Then I click on write, and it also succeeds.
Then I click on Update Tables, and it loops indefenitely. I waited for 15 minutes and its still looping. I check at the DB and no table has been created.
There are no warning on the page, all the lines about the requirements are "OK" or "YES".
I am sure I have PHP 5.x though.
Is there a solution for this?
|

hendo001
Caldari White Star Ltd Mjolnir Alliance
 |
Posted - 2009.05.28 14:35:00 -
[495]
yeah i do have php 4 on my webhost but on my local machine i got php 5, the only issue i get when i'm running it on my machine is that the api stuff dont connect :( it just times out after 30 secs
|

leboe
Dark Star Cartel Molotov Coalition
 |
Posted - 2009.05.28 15:54:00 -
[496]
been using john's hosting for about a month, tracker works well and problem's get sorted quickly :D
|

Amy Frost
eXceed Inc.
 |
Posted - 2009.05.31 20:15:00 -
[497]
Edited by: Amy Frost on 31/05/2009 20:15:20 function GetAllTowers has a bug when called with $args['regionID']:
Unknown column 'regionName' in 'field list'SELECT pos_id, typeID, evetowerID, outpost_id, corp, allianceid, pos_size, pos_race, isotope, oxygen, mechanical_parts, coolant, robotics, uranium, ozone, heavy_water, charters, strontium, towerName, systemID, charters_needed, status, owner_id, secondary_owner_id, pos_status, pos_comment, secret_pos, moonID, regionID, regionName FROM pos3_tower_info, pos3_mapsolarsystems WHERE pos3_tower_info.systemID = pos3_mapsolarsystems.solarSystemID AND pos3_mapsolarsystems.regionID = '10000030'
How to reproduce: Go to the Fuel Bill Page and select a Region and apply the filter
PS: Johnathan I've cleaned up/enforced some more of the Access Level handling aswell as some other Display tweaks, any chance for me to send you the patches? I hate it when my locally installed Version differs from the upstream SVN.
--

Originally by: t20 WE AER GIOGN FRO MROE BREE
|

galaxy rider
 |
Posted - 2009.06.02 12:17:00 -
[498]
I am trying to install Pos-Tracker3.0rc1 (new fresh install)
... after start .../install.php
everything is ok, up to step: Install Tables
than just nothing happen, its stacked at: Creating/Updating tables
any idea, whats wrong, or what am I doing wrong.
|

Elana Vaho
 |
Posted - 2009.06.02 17:54:00 -
[499]
Getting some small rounding errors on LO and HW. When viewing the tower in postracker it shows for the most times one extra LO or HW per hour then what the tower actually uses in EVE. Like 26 LO in the postracker, but 25 in EVE. I havent yet seen the opposite, postracker showing less per hour, its always 1 higher or spot on.
|

Yoinks
 |
Posted - 2009.06.09 11:53:00 -
[500]
There is an issue in the class.pos.php file. On a fuel update pos UpdatePosFuel() is called. One SQL is sent to tower_info (to update fuel values) and another is sent to update_log. However the update_log table doesnt get updated.
$sql = "INSERT INTO ".TBL_PREFIX."update_log (id,eve_id,type_id,type,action,datetime)VALUES (NULL,NULL, '" . $fuel['pos_id'] . "','1','Update Fuel','" . Eve::VarPrepForStore($time) . "')";
Change the NULLS to '' then it works.
Keep up the good work Johnathan
|
|

bigsteve
Minmatar STK Scientific The Initiative.
 |
Posted - 2009.06.14 11:30:00 -
[501]
Originally by: Amy Frost Edited by: Amy Frost on 31/05/2009 20:15:20 function GetAllTowers has a bug when called with $args['regionID']:
Unknown column 'regionName' in 'field list'SELECT pos_id, typeID, evetowerID, outpost_id, corp, allianceid, pos_size, pos_race, isotope, oxygen, mechanical_parts, coolant, robotics, uranium, ozone, heavy_water, charters, strontium, towerName, systemID, charters_needed, status, owner_id, secondary_owner_id, pos_status, pos_comment, secret_pos, moonID, regionID, regionName FROM pos3_tower_info, pos3_mapsolarsystems WHERE pos3_tower_info.systemID = pos3_mapsolarsystems.solarSystemID AND pos3_mapsolarsystems.regionID = '10000030'
How to reproduce: Go to the Fuel Bill Page and select a Region and apply the filter
PS: Johnathan I've cleaned up/enforced some more of the Access Level handling aswell as some other Display tweaks, any chance for me to send you the patches? I hate it when my locally installed Version differs from the upstream SVN.
It looks like the sql quiery is trying to grab data that does not exist.
I believe that regionID, & regionName Columns are missing from pos3_tower_info table. ==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Who Blew me |

bigsteve
Minmatar STK Scientific The Initiative.
 |
Posted - 2009.06.14 18:26:00 -
[502]
i am getting there 2 errors in my server logs
Quote:
[error] PHP Warning: Smarty error: math: parameter y is empty in /home/stks/public_html/POS/includes/Smarty/Smarty.class.php on line 1088 [error] PHP Fatal error: Class 'POSMGMT' not found in /home/stks/public_html/POS/fuelbill.php on line 47
|

Itty
 |
Posted - 2009.06.15 08:32:00 -
[503]
I am unable to register via the IGB. The browser goes to a blank black screen. Default installation have all the necessary Apache/extensions/php/database installed. The Admin acct works fine with api and POS and everything but nobody else can register. Have tried numerous combination of password/username.
Thanks, Itty
|

Adarrye
 |
Posted - 2009.06.16 02:05:00 -
[504]
Edited by: Adarrye on 16/06/2009 02:12:29 I'm having the same issue as :
Shareina almooja GreKom galaxy rider
"Evetyhing show as ok, but when you click on Install Table, it hang there doing nothing."
If you cant/dont have time to give support yourself, you might want to consider : FAQ Forum Archive older slable version. Verbose mode
I would really like to thank you for your work, but it does'nt work. |

Johnathan Roark
Caldari Quantum Industries RAZOR Alliance
 |
Posted - 2009.06.16 16:48:00 -
[505]
Originally by: Adarrye Edited by: Adarrye on 16/06/2009 02:18:17 Edited by: Adarrye on 16/06/2009 02:12:29 I'm having the same issue as :
Shareina almooja GreKom galaxy rider
"Everyhing show as ok, but when you click on Install Table, it hang there doing nothing."
If you cant/dont have time to give support yourself, those would be usefull : FAQ Forum Archive older stable version. Verbose mode
I would really like to thank you for your work, but it does'nt work.
It works just fine for just about everyone. But here is a workaround until someone sends me some actual information on what its doing (server logs would be nice)
hit the test button, write config, open up your mysql admin software, replace the paste in the sql from install/install_tables.sql with your %prefix% replaced with your prefix. Then go to install.php?step=2 and continue installing it.
 Vuk Lau for CSM 3.0 |

Adarrye
 |
Posted - 2009.06.16 20:29:00 -
[506]
First, thx a lot for your reply.
Then i did add the table manualy like you just propose, but i was thinking i needed to add all the 1000000*.sql file too. There like 63mb of raw text there it it was giving me some problem :)
Then i tryed to reach step 2 by modifying the code, but i suck at it and went nowhere. Gonna try with install.php?step=2.
Thx again
|

Johnathan Roark
Caldari Quantum Industries RAZOR Alliance
 |
Posted - 2009.06.16 20:40:00 -
[507]
Originally by: Adarrye First, thx a lot for your reply.
Then i did add the table manualy like you just propose, but i was thinking i needed to add all the 1000000*.sql file too. There like 63mb of raw text there it it was giving me some problem :)
Then i tryed to reach step 2 by modifying the code, but i suck at it and went nowhere. Gonna try with install.php?step=2.
Thx again
The numbered files are the region files, and it will take care of that later in the installer. I would be intrested in seeing some server side log files though. |

Adarrye
 |
Posted - 2009.06.16 20:54:00 -
[508]
Ya, i would like to see the log too, that why i sugested a verbose mod :)
I'm not sure if/where i can find those log. I use commercial webhosting with Ipower and have a vDeck platform for there control panel.
When i checked in phpmyadmin to see if something was created, there was nothing.
If you have an idea where my log could be, i would be glad to check. |

Johnathan Roark
Caldari Quantum Industries RAZOR Alliance
 |
Posted - 2009.06.16 22:35:00 -
[509]
Originally by: Adarrye Ya, i would like to see the log too, that why i sugested a verbose mod :)
I'm not sure if/where i can find those log. I use commercial webhosting with Ipower and have a vDeck platform for there control panel.
When i checked in phpmyadmin to see if something was created, there was nothing.
If you have an idea where my log could be, i would be glad to check.
Some host put display them in the control panel, others don't. Can always try asking them, but I wouldn't hold my breath.
 Vuk Lau for CSM 3.0 |

bigsteve
Minmatar STK Scientific The Initiative.
 |
Posted - 2009.06.19 05:51:00 -
[510]
cant see this any where here
add the new structure to DB
INSERT INTO `pos3_structure_static` (`id`, `name`, `pg`, `cpu`) VALUES (24567, 'Experimental Laboratory', 100000, 500), (30655, 'Hybrid Polymer Silo', 50000, 250), (30656, 'Polymer Reactor Array', 125000, 1500); ==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Who Blew me |
|
|
|
| |
|
| Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 :: one page |
| First page | Previous page | Next page | Last page |