Jump to content

Vangelis

Members
  • Posts

    1076
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Vangelis

  1. Landing Rate is recorded and writen in the Additional Log Information: in the format of You landed @ 180 knots and with 150 vertical speed As far as i saw there is no specified place in the table to put the landing rate If there is please inform me and i will put it. I will finish with the rest and then upload the new version. Also added Version control so that you know if you have the latest version - admin's will be able to see if they have the latest module
  2. Try to put your e-mail info in local.config.php # Email Settings Config::Set('EMAIL_FROM_NAME', 'YourName'); Config::Set('EMAIL_FROM_ADDRESS', 'YourEmailAddres'); Config::Set('EMAIL_USE_SMTP', true); # Add multiple SMTP servers by separating them with ; Config::Set('EMAIL_SMTP_SERVERS', 'mailserverhere'); Config::Set('EMAIL_SMTP_PORT', '25'); Config::Set('EMAIL_SMTP_USE_AUTH', true); Config::Set('EMAIL_SMTP_USER', 'Email UserName'); Config::Set('EMAIL_SMTP_PASS', 'Email Password');
  3. you need to put the map in a div that will be located on the upper side of your footer
  4. In theory yes it would be possible but you need to create a module to syncronyze the 2db
  5. most propably you must modify the header and about the css we have to see or the template or some code so we will be able to tell you something
  6. Jefrey has a version uploaded on his site that it was created at 2013-01-05 20:40:16 but i do not know witch version it is http://www.fs-products.net/index.php/downloads/viewdownload/6-phpvms-modules/24-navdata-phpvms
  7. most propably i might be able to help i just need the info so i can work on actual data
  8. Can you please send me a zip of your template and a backup of your db ?
  9. Your code is correct. Try to go to go admin page - > Site and settings -> maintenance Options and clik on Clear Cache and report if it is ok
  10. Thanks for you info i will look to corect them asap
  11. Do you modify a template for the email or you made a new module ?
  12. I can have a look at thim but i will need some time if you can wait a couple of days one fast look that i took is that if you make an iframe looking at http://charts.aero/airport/airport that you want the charts will come up
  13. Hello New Version is up Curent Version of APVacars is 1.0.0.4 and module version is 1.0.0.3 --------------------------------------------------------------------------------------------------------- I would like to present you APVacars. APVacars is an opensource Log/Acars System for PHPvms. APVA is created in Visual Basic 2010 and uses FSUIPC Client DLL for .NET By Paul Henty for the comunication between APVA and Flight Simulator software. Also APVA uses a modified module created by fs-products.net for the comunication with PHPvms . Below i have some screenshots Main Form Flight Information Weather Briefing If you are an admin at your V.A and something hapened with a pilot of your's you can resend the Pirep About Box APVA is licenced under Attribution-NonCommercial-ShareAlike 3.0 Unported That means you are free to modify everything except the About Box as it hold's all referenced to all modules and DLL's that i have used and also not making a profit by selling it. Source Code can be founded on GitHub https://github.com/vangelisb/APVacars PHPvms Module https://github.com/v...s_PHPvms_Module The Installer of the software if you dont want to mess with code APVacars.zip Please tell me what you think and what else would be nice to be added All recomendadions would be acceced and if possible implemented on next versions If you find any bug please let me know so i can fix it The only thing that you have to do is Copy the module that you have donwloaded from gitHub into your phpvms setup Open the software insert your information in the settings and you are ready to bid and fly.
  14. Hi i just saw your site and my eye poped on your video how to file a pirep My question is why dont you use a program in order to track your flights as there some free and paywere ?
  15. Where did you put this code ? EDIT found it 2ond Edit Found the solution <?php //simpilotgroup addon module for phpVMS virtual airline system // //simpilotgroup addon modules are licenced under the following license: //Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) //To view full icense text visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // //@author David Clark (simpilot) //@copyright Copyright (c) 2009-2010, David Clark //@license http://creativecommons.org/licenses/by-nc-sa/3.0/ $pagination = new Pagination(); $pagination->setLink("screenshots?page=%s"); $pagination->setPage($page); $pagination->setSize($size); $pagination->setTotalRecords($total); $screenshots = ScreenshotsData::getpagnated($pagination->getLimitSql()); ?> <table width="100%"> <tr> <td width="50%"><h4>Screenshot Gallery</h4></td> <td width="50%" align="right"> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<form method="link" action="'.SITE_URL.'/index.php/screenshots/approval_list"> <input class="mail" type="submit" value="Screenshot Approval List"></form><br />'; } echo '<form method="link" action="'.SITE_URL.'/index.php/screenshots/upload"> <input class="mail" type="submit" value="Upload A New Screenshot"></form></td>'; } else { echo 'Login to rate or upload screenshots.'; } ?> </tr> </table> <hr /> <center> <b>Click on any image to view fullsize.</b><br /><br /> <?php if (!$screenshots) {echo '<div id="error">There are no screenshots in the database!</div>'; } else { echo '<table class="profiletop">'; $tiles=0; foreach($screenshots as $screenshot) { $pilot = PilotData::getpilotdata($screenshot->pilot_id); if(!$screenshot->file_description) {$screenshot->file_description = 'Not Available';} if ($tiles == '0') { echo '<tr>'; } echo '<td width="25%" valign="top"><br /> Views: '.$screenshot->views.' - Rating: '.$screenshot->rating.'<br /><br /> <a href="'.SITE_URL.'/pics/'.$screenshot->file_name.'" rel="prettyPhoto"> <img src="'.SITE_URL.'/pics/'.$screenshot->file_name.'" border="0" width="200px" height="150px" alt="By: '.$pilot->firstname.' '.$pilot->lastname.'" /></a> <br /> <u>Submited By:</u> '.$pilot->firstname.' '.$pilot->lastname.' - '.PilotData::getpilotcode($pilot->code, $pilot->pilotid).'<br /> <u>Date:</u> '.date('m/d/Y', strtotime($screenshot->date_uploaded)).'<br /> <u>Description:</u> '.$screenshot->file_description.'<br /><br /> </td>'; $tiles++; if ($tiles == '4') { echo '</tr>'; $tiles=0; } } echo '</table>'; } $navigation = $pagination->create_links(); echo $navigation; ?> <script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto(); }); </script> </center> Paste this over screenshots_viewer.tpl and you will be fine i replaced <a rel="prettyPhoto" href="'.SITE_URL.'/index.php/Screenshots/large_screenshot?id='.$screenshot->id.'"> with <a href="'.SITE_URL.'/pics/'.$screenshot->file_name.'" rel="prettyPhoto">
  16. As a secondary airline do you mean ? Because i might have not understand it well please write down your thought of wy would you do something like that
  17. Just do a rencount in the admin-maintenance section and see if it will work
  18. Hi i hope i didnt saw it to late I created a module for you so you can use it with phpvms you can download it for here http://www.baggelis.com/chatroll.zip step 1 edit chatroll.tpl and replace my html with yours at <iframe width='450' height='350' src='http://chatroll.com/embed/chat/eglc?id=6NhhxB113LP&platform=php<?= $ssoParams ?>&w=$0' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' allowtransparency='true'></iframe> <div style='font-size:0.9em;text-align:center;'><a href="http://chatroll.com/solutions/live-chat-software">PHP Live Chat Software</a></div> step 2 save and just copy the chatroll folder into your modules folder and the tpl file into the templates folder that is located in /core/templates and make a link to http://www.yoursite....ex.php/chatroll and thats all if you still need it tell me so i can add the functionality whoever is admin to be a moderator as well or if you need any help
  19. Simple readable website just 1 tip change join staff taam to team
  20. I suppose you use a custom acars that is writen in vb.net c++ or something else, can you please tell us how you update the vms_acarsdata table ? For example by direct mysql or via a php module. So we can know how we will be able to help you
  21. Thanks for the reply i found the answer to be honest in some of the previous post in support
  22. I guess with so many likes many people would like to see a new client BTW problem is solved
  23. Hi i dont seem to have understand what you exacly want can you please describe it somehow ? But still i need statistic for all passenger and cargo to be counted, any help code.
×
×
  • Create New...