Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. I haven't understand what kind of problem do you have. Can you give an example?
  2. Yiu have to navigate your website using index.php file
  3. Of course, i am alreay doing this on my localhost server.
  4. I think that this problem happens because you are not using index.php extention on your welsite's url. For example, if i browse the phpvms website using www.mydomain.com , probably the auto log in won't work but if i use www.mydomaim.com/index.php the i am automatically logged in. I don't know why does it happen so that's why i am trying to use index.php extention whenever i browse my website.
  5. This problem will happen only if you change the skin's folder name. There is no need to change the skin's folder name. You can just edit the files which are in it.
  6. It's not difficult to find out where it's from. I would suggest you to let the developer know about that as he might be able to correct any error.
  7. What kind of example module do you use?
  8. Changing these values means that you are going to receive all the data from phpVMS. During the last months, phpVMS site has some timeouts and this means that you are not able to get any data from the server so you will have to wait until the timeout passes. Give it a try now and check if it works...
  9. Copy and place your phpvms files to a subdomain and after that open your local.config.php (the new one) and find our your main site url. Just edit this url and everything will work fine.
  10. What do you mean the same backend? Do you want to use the same database?
  11. We are happy to announce you that the new version has been released. More information can be found here. Changelog of v1.1: -Some functions have been cleaned up. -Created functions in order to let you show the assigned awards to your pilot's profiles and public profiles. There is no need to purchase a customization now. -Replaced award issue page with an extended Pilot Data page. (Admin Panel) -Replaced some links with buttons. (Admin Panel) -Added a version check system on the main page of the module. (Admin Panel) -Added Auto Awards System. -Updated Award Issue function. For those who have already purchased this module, the update is offered free of charge via our billing system. All the clients who have purchased our modules via SimpilotGroup have to register on our billing system in order to gain access to the update. Please note that you will have to use the same Name and Email address with the ones you are using to SimpilotGroup. For those who haven't yet purchaed our module. More information can be found here.
  12. From what i know about VAFS, i think that you cannot change from vafs to phpvms maintaining your data as i think that in VAFS you do not have the database data. As for the design, i think that you can get in touch with a developer in order to request from him to create the appropriate template for your website.
  13. The forum will not include just these functions, this is a list with the basic functions. Of course i am not able to announce anything else now if i am not sure about it. I can confirm that there is already a VAForum module but trust me, the new one will include much more functions...
  14. I know that it has come up quite a lot in the past. I have already finished some of my projects (announcements will be published soon) and i am now in search of a new idea in order to develop a new module for phpVMS. This is an integrated Forum. Yes, an integrated forum into a phpVMS website. Some of the main ideas i have are: Of course a converter from phpBB and SMF forums to this forum (i have not checked how these forums core work but i think that it's not so difficult) User permissions (administrator, moderator, basic access, banned) All the forum administration will be included in the phpVMS admin center Board categories Threads User profile settings (signature, personal message etc) Include a WYSIWYG editor for the pilot's posts Of course it's not an easy project so that's why i do not have a specific time-frame. I am open to any suggestion you may have about it.
  15. These last 20 flights are based on the flight number or on the departure and arrival airport icao codes?
  16. Is it possible to check the values via phpmyadmin in order to see if they are the same with the one which are being given to you by the admin center?
  17. I do not think that it has to do with phpvms support forum. Did you get in touch with your web hosting company?
  18. Ok. you may use the if statement i send you wherever you want. <?php if(!Auth::LoggedIn()) { ?> //The .tpl file you want to show if a user is not logged in <?php } else { ?> //The .tpl file you want to show if he is logged in <?php } ?>
  19. Replace this: <?php echo $pirep->pilots. " ($pirep->rank)";?> with this: <?php $pilot_data = PilotData::getPilotData($pirep->pilots); echo $pilot_data->rank; ?> PS: Did not check if it works. Just give it a try.
  20. Probably you must have set the auto pilot retirement to true. Go to you local.config.php file, find this: Config::Set('PILOT_AUTO_RETIRE', true); and replace it with this: Config::Set('PILOT_AUTO_RETIRE', false);
  21. Open the appropriate file (in the default version of phpvms it is named core_navigation.tpl) and just use this: <?php if(!Auth::LoggedIn()) { ?> //The meeus you want to show if a user is not logged in <?php } else { ?> //The menus you want to show if he is logged in <?php } ?>
  22. And what was the solution? This will help those who may have the same probpem with you.
×
×
  • Create New...