Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. Are you using free webhosting services?
  2. Hate to see you go but why do not you try to find staff members to keep your va active?
  3. Try to search on the phpvms forums ...
  4. Firstly, i think that you will not take new pilots from the phpvms forums . After that, i would like to know what they will win with these 10 hours? (Money, yomen, car ) If you would gave us 10 euro for the first flight then i will join your va ...
  5. servetas

    My SQL

    If you want to integrate your forum with the phpvms the answer is yes !
  6. You will find it into your file zilla file....download it and check the settings! After that, reupload the core_navigation.tpl file.
  7. Do not request help everywhere !! The answer is Here.
  8. No . It will give you back the default pilots_list.tpl. If you want to restrict aircraft usage by ranks you must go to your admin center -> Airline Operations -> Add $ Edit Fleet -> Edit or add and aircraft -> On the form find out the Minimum Rank Required to fly and check the drop down menu. If you want to restrict double bids check your local.config.php and replace where Config::Set('DISABLE_SCHED_ON_BID', false); with Config::Set('DISABLE_SCHED_ON_BID', true); I would like to suggest you to activate the auto remove bid which will remove the pilot's bid after x hours .
  9. <h3><?php echo $title?></h3> <?php if(!$pilot_list) { echo 'There are no pilots!'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th>Pilot ID</th> <th>Name</th> <th>Rank</th> <th>Flights</th> <th>Hours</th> </tr> </thead> <tbody> <?php foreach($pilot_list as $pilot) { /* To include a custom field, use the following example: <td> <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> </td> For instance, if you added a field called "IVAO Callsign": echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); */ // To skip a retired pilot, uncomment the next line: //if($pilot->retired == 1) { continue; } ?> <tr> <td width="1%" nowrap><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <td> <img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" /> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></td> <td><?php echo $pilot->totalflights?></td> <td><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <?php } ?> </tbody> </table> Here it is!
  10. You may use this code on the briefing table (schedule_briefing.tpl): <?php # If it's empty, insert some blank lines if($schedule->route == '') { echo '<br /> <br /> <br />'; } else { echo strtoupper($schedule->route); } ?>
  11. You must try the password from the new registration...
  12. Ok...i you have got access to your database via the phpmyadmin try this: Make a fake registration on your phpvms site...After that go to your pilots board via the phpmyadmin and edit the new registration changing the confirmed field from 0 to 1.Before click the save keep on your mind the member's id. Ater that go to your GroupMembers board and add a new value: On the group id, put 1 (it is the group,administrator,id) and on the pilotid fill in the new registration's id. I do not know if it will work ...
  13. Does the system send you new passwords?
  14. If you have change your password from the PHPMYADMIN as Jon said you have made a mistake! As, also, Jon said alla the passwords has encryption. It is not logical to use a password like this 4004211f88d7f14be04a935493096b2f . If you want to solve this, go to your phpmyadmin and edit your profile replacing the password number with this: 4004211f88d7f14be04a935493096b2f. Then, save it, and try to login with you callsing or your email and the password 741852963. If you login successfully, visit your profile and change the password immediately because as you can see, now, a lot of people which will your new password.
  15. I fully agree with Joeri...If you think that your website is the best keep it for your self. Let the others make statements for you... It is beter for a virtual airline .
  16. One question: How do you know that?Is there any critic who decided that your website is the best phpVMS powered website? Or you draw conclutions as a Chief Executive Officer (or,generally, staff) of Legend Air...
  17. 000Webhost. I have not try them because i am using a payware hosting. If you want to open a virtual airline, i think, you must try a payware hosting. A good payware hosting plan starting from 5 euro per month! Check fivedev. Edit: You are lucky the support PHP cURL as i can see here.
  18. Hello my friend!!! Please check this. I think it will help you! I am also the Vice Chief Executive Officer of Greece Airways Virtual and we give the chance to our pilots to fly Unscheduled Flights. We create a new system... We added an airport with IVAO AAAA and name Unscheduled Flight. After that we created a pirep from AAAA to AAAA. When a pilot wants to fly an unscheduled flight he have to send this pirep (from AAAA to AAAA) but he has to write on his comments the departure and the arrival airport of his flight (p.x. DEP/LGAV ARR/LGTS). After that, the validator, before accept the pirep, he edit it and add the departure and the arrival airport, taking information from the user comments. If you want to give the chance (to your pilots) to fly any flight they want without being on the virtual's airline's schedules, you may use the first solution. I think these information will help you.
  19. After a coversation via teamspeak and the help with the teamviewer all are OK! Good Luck emartinez with your new va!
  20. What is this project (virtual airline?, super market?) and what he will do? Give us more information...
  21. If you want any help you can request help on this forum and someone will give a solution to your problem.
  22. I cannot understand exactly what do you want...Ok, you want to test vms and crate templates-modules. After that, what do you want from us?
  23. Hello everyone, me and dimitris are about to release a new one staff module for phpvms but unfortunately we have got a little problem: public function edit_staff_1() { $id = $this->get->id; if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { $sql = "UPDATE ".TABLE_PREFIX."staff SET posit='".$this->get->posit."' WHERE id=$id"; $sql1 = "UPDATE ".TABLE_PREFIX."staff SET name='".$this->get->name."' WHERE id=$id"; $sql2 = "UPDATE ".TABLE_PREFIX."staff SET desc='".$this->get->descr."' WHERE id=$id"; $sql3 = "UPDATE ".TABLE_PREFIX."staff SET email='".$this->get->email."' WHERE id=$id"; $sql4 = "UPDATE ".TABLE_PREFIX."staff SET img='".$this->get->img."' WHERE id=$id"; $sql5 = "UPDATE ".TABLE_PREFIX."staff SET note='".$this->get->note."' WHERE id=$id"; //echo $sql; //echo "<br />"; //echo $sql1; //echo "<br />"; //echo $sql2; //echo "<br />"; //echo $sql3; //echo "<br />"; //echo $sql4; //echo "<br />"; //echo $sql5; DB::query($sql); DB::query($sql1); DB::query($sql2); DB::query($sql3); DB::query($sql4); DB::query($sql5); echo "Updated!<br />Staff position for {$this->get->posit} have been updated."; Template::Show('staff/staff_menu.tpl'); //echo "{$this->get->desc}"; //echo "{$this->get->id}"; } } When i am trying to insert data on desc column it is not added but all the other fields are added correctly. I tried to echo the sql statement and it is passing the data correct to function but function is not adding the data at MYSQL database. If anyone can take a lot on the code and find any mistake please reply this theard as soon as possible because we are one step before before release!
  24. Thank you very much for your information! So...it is not Flight Level but Altitude ...
  25. Hello everyone, i tried to start an IFR flight. I fill out the flight number and i pressed the Get Flight Number Info button. Unfortunately when i pressed the Start Flight it gives me this error: Check Flight Level 1k to 50k. Also when i am clicking on the Get Flight Number Info, i received another one error which is this: Notify System Administrator of the Switch Error Data not received Switch=Aicraft. I anyone knows the solution...please help me.
×
×
  • Create New...