Jump to content

Vangelis

Members
  • Posts

    1076
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Vangelis

  1. ATM there are 2 solutions one what i sugested above and one what servetas sugested you can see what suits you and implement it in your website if you have any question here we are
  2. Where and what ? usually we use explode $explodedvalue=( explode( '.', $input2 ) ); Have a look at this link http://www.php.net//manual/en/function.explode.php
  3. Why dont you tell us what is the problem maybe we can help you
  4. http://www.catb.org/~esr/faqs/smart-questions.html#urgent
  5. On my part it is working a screenshot would help
  6. There is no such function you will have to create it by your self
  7. Disregard my last reply i readed it again and if your codoncache file is up it most probably is a permision issue try to reupload the codon file or change the permisions to 755
  8. What i have done for Greek Scouts Airways diferent template per language for example TemplateGR and TemplateEn and i am calling the template that i want in the link for example http://www.gsairways.gr/phpvms/index.php/acars/?template=OperationsEN OperationsEn is the template name and this is done by adding the following lines in the local.config.php in core folder <?php session_start(); if(isset($_GET['template']) && $_GET['template'] != ''){ $_SESSION['template'] = $_GET['template']; define('CURRENT_SKIN',$_GET['template']); } if(isset($_SESSION['template']) && $_SESSION['template'] != '') { define('CURRENT_SKIN',$_SESSION['template']); } ?>
  9. Open a new forum post in support at the moment you are at the of topic
  10. if you write inder this code <?php echo $pilotid ; ?> do you get the id ? <strong>Pilot VID: </strong> <?php echo PilotData::getFieldValue($pilotid, 'IVAO'); ?> you can also try <strong>Pilot VID: </strong> <?php echo PilotData::getFieldValue(Auth::$userinfo->pilotid, 'IVAO'); ?>
  11. Very helpfull is the phpvms API http://docs.phpvms.net/api/packages/Default.html Just click on the class and it will display the calls and how you can use it
  12. I have a question why don't you use the function of phpvms of adding custom fields in the profile ? it is located admin section /site & settings/profile fields
  13. the criteria is created by copying thet text output of you acars for example if acars says 1123 landing gear down and you want to decline the pirep based of that then you will make a new criteria with value gear down
  14. If you intend to customize it and use it for your VA then the Attribution-NonCommercial-ShareAlike 3.0 Unported licence allows you to do so and that is why i created the open source for public i will just remember you what your obligations are. Under the following terms: Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. NonCommercial — You may not use the material for commercial purposes. ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original. If you use part of the code/layout or whatever from the open source it is still under the same licence also it would be nice and kind of you if you want to share the code with me as i like to collect code <--(that sound weird i know)
  15. It can We offer customized versions for a fee if you have a look at my website you can see two examples
  16. I will agree with zuneweb if you have the knowledge the sky is the limit
  17. I would sugest not to change it as it will be replaced if you update phpvms But for your info all editable files are for the frontend in /core/templates And for admin in admin/core/templates
  18. The backround is a picture file located in /lib/skins/Sim 20Widget/images Replace frontpage-link.png picture file with one with the color that you want. Or edit your styles.css line 33 the background:variable from background:url(http://etihadvirtual...ntpage-link.png) 0% 0 repeat-x scroll #D0A234 to background:(add the color in hex for example #D00000 for red ) hereyou will find a table with the colors and hex codes Also do not forget to add the phpvms credits as per licence License phpVMS is released under the Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) license, which allows you to share and edit phpVMS, provided that attribution is kept to phpVMS and to this website.
  19. no idea what are you are talking about a screenshot would help a lot
  20. What do you mean by password ? it is this Config::Set('AIRPORT_LOOKUP_SERVER', 'geonames'); or t his Config::Set('AIRPORT_LOOKUP_SERVER', 'phpvms');
  21. Do you have any server side files so we can see and convert ? should be a litle bit of tricky as not many of us use flightgear
  22. Replace if(strpos($line,$_GET['cs']) === 0) with if(strpos($line,$this->get->cs) === 0) And call it like this http://www.virtualiroma.it/newvar/index.php/liveflightsonline?cs=VAR
  23. Problem found two rows where missing. run this in your phpAdmin and everything should be ok ALTER TABLE `phpvms_pireps` ADD `paytype` FLOAT NOT NULL AFTER `rawdata` , ADD `modifieddate` DATE NOT NULL AFTER `paytype` P.S i think you have the beta version i am not quite sure as the version that i downloaded from github is total different than yours Reminder to all when something is in beta it means it might have bugs those are sorted out by users reporting it to the creators of the software. If you have any other problems do not hesitate to contact us
  24. Vangelis

    phpvms

    No there is not phpAdmin is your solution to that at the moment
  25. Via phpmyadmin with an sql query
×
×
  • Create New...