Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. Personally, i would prefer month by month layout. It is better i think as the pilots will be able to see all the occasions during the month.
  2. Real Booking System v1 After some months of development, PHP-Mods Team is ready to announce you our newest module. Many of you have requested it during the past so we decided to develop a new option which includes and will include more and more functions based on your own suggestions. Based on the module settings, you are able to select the default position of your fleet, if you are going to limit the aircraft locations too, if you are going to limit the aircrafts which are currently bidded by your pilots and the cost of a jumpseat ticket per nautical mile. As soon as a pilot registers on your virtual airline website he is being initially placed on his hub. The location of the pilot is based on his last pirep or his hub or the last jumpseat ticket he purchased. Each pilot has the right to purchase a jumpseat ticket. The price of the ticket is based on the distance between the current location of the pilot and the location he wants to be transfer. The jumpseat ticket is free if the pilot is stranded. A pilot is getting stranded when there are not any available schedules and/or aircrafts from his current location. As soon as the pilot completes a flight, his location is being automatically updated. Via the administration page of the module, you are able to transfer a pilot or an aircraft. Useful Links Module Information Demo System Module Manual If you have any question, do not hesitate to contact us or post your question here. Best Regards, PHP-Mods Team
  3. Have you tried to get in touch with your web hosting company?
  4. I am going to pin this topic in order to remain on the top of this forum. offtopic mode on PHP-Mods offers web hosting services too. With every new web hosting plan, we offer free website migration or phpVMS installation within 24 hours. offtopic mode off
  5. What kind of help do you need? I think that most of the users here can help you install it. It is not that difficult. Also, you can search over the forum for solutions if you have any problem or post your questions.
  6. I do really understand your awareness. I ensure you that there are a lot of differences between this and David's module. The name will be changed if you have so big problem with it. If i am not mistaken, currently there is only one available module for that operation which is David's and has been "deprecated". Some of the phpVMS users might want to use a FREE "deprecated" system and some of them a different PAYWARE one which offers and will offer more options. David, i can send you the module files as soon as everything is ready if you believe that i have copied any part of code.
  7. Dear All, On behalf of the PHP-Mods Team, i am glad to announce you the preview of our next payware module for phpVMS. Some of you have already requested something like this and we decided to develop that in order to fit your needs. That is a Real Booking System. Here you can find some preview screenshots of the system in action. How it works? Each pilot has a specific location which is based either on his last pirep or on the last jumpseat ticket he purchased or on his hub if he has not purchased any jumpseat ticket or flown any flights. He is able to fly only from his location or alternatively purchase a jumpseat ticket. If there are not any available schedules on his current location, he is entitled to get a free jumpseat ticket otherwise the price is based on your settings. Via the administration panel of the module, you are able to select a specific cost per nautical mile. Pilots and aircrafts can also be transfered via the administration panel. As an administrator, you will be able to select if you are going to limit the aircraft positions or not. Limiting the aircraft positions makes your system more restrictive but this option is available too. Based on the default phpVMS structure, you are able to select only one aircraft per schedule. This means that if the aircraft of a schedule is not in the correct position, the schedule will not be available to the pilot. It is required to create a looping system of routes if you are limiting the aircraft positions. It means that each aircraft must return to the airfield it started. This loop can have as many legs as you want. If you do not create a loop, the aircraft will become stranded and in some cases the pilot which flies it too. If a pilot becomes stranded, he will be able to get a jumpseat ticket for free but the aircraft will remain stranded until you transfer it from the admin center. Via the administration panel you are able to see an aircraft listing and check which aircrafts are stranded. As an administrator, you can move them to an airport which has available schedules for that aircraft. I would be really happy to listen your reviews and suggestions. We are really close to the release as the module is on its final stage of development. Best Regards, Servetas George http://php-mods.eu/
  8. You may search the forum for a solution. It has came up quiet a lot during the last months.
  9. There is no need to bump the topic after a few hours. If there is anyone who can help, he will do it.
  10. Unfortunately, based on the current structure of phpVMS, both of them are not possible.
  11. Hello, What do you mean "reserve"? Adding a flight on his bids or sending a new pirep on the system? George
  12. Hello, Can you please let me know what is your website and which browser are you using?
  13. The home menu is a non-dropdown menu too. This means that you can use it as an example. As soon as you get it, you will have to edit the url and the text. <li><a href="<?php echo url(''); ?>">Home</a></li> After that, it should be placed inside the navigation bar but not inside another menu. Based on your current file and if you want to place that in the end, the file at the end of the editing will be like this: nav class="navbar navbar-default" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#"><?php echo SITE_NAME; ?></a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li><a href="<?php echo url(''); ?>">Home</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Corporate<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/about'); ?>">About us</a></li> <li><a href="<?php echo url('/staff'); ?>">Staff</a></li> <li><a href="<?php echo url('/pilots'); ?>">Pilot Roster</a></li> <li class="divider"></li> <li><a href="<?php echo url('/pages/termsandconditionsregulations'); ?>">Terms,Conditions and SOP</a></li> <li><a href="<?php echo url('/contact'); ?>">Contact Us</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Operations<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/fleet'); ?>">Fleet</a></li> <li><a href="<?php echo url('/pages/divisions'); ?>">Divisions</a></li> <li><a href="<?php echo url('/pages/gallery'); ?>">Fleet Gallery</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Flights<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/schedules'); ?>">Schedules</a></li> <li><a href="<?php echo url('/schedule/bids'); ?>">Bookings</a></li> <li><a href="<?php echo url('/pireps/filepirep'); ?>">File Pirep</a></li> <li><a href="<?php echo url('/acars'); ?>">Live Flights</a></li> </ul> </li> <li><a href="<?php echo url('/contact'); ?>">Contact Us</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <?php if(Auth::LoggedIn() == false){ ?> <li><a href="<?php echo url('/login'); ?>">Login</a></li> <li><a href="<?php echo url('/pages/pilotapplication'); ?>">Register</a></li> <?php }else{ ?> <li><a href="<?php echo url('/logout'); ?>">Logout</a></li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown">Pilot Center <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/profile'); ?>">Profile</a></li> <li><a href="<?php echo url('/downloads'); ?>">Downloads/Repaints</a></li> <li><a href="<?php echo url('/pages/comingsoon'); ?>">Training</a></li> </ul> </li> <?php } ?> </ul> </div><!-- /.navbar-collapse --> </nav> I would suggest you to keep a backup of this file and start making tests on your own. You will be able to understand how it works and where you have to put something.
  14. Based on the code you have pasted, you were missing one </li> after the </ul> on line 47 and the part of code from line 40 to 47 should had been placed below line 37 (before the </ul>).
  15. It has been reported that phpVMS does not work correctly with most free web hosting providers and especially 000webhost. You are getting this error because of the settings of your current server. I would suggest you to get in touch with 000webhost or order a new web hosting plan from another web hosting provider.
  16. Please try this one: <nav class="navbar navbar-default" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#"><?php echo SITE_NAME; ?></a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li><a href="<?php echo url(''); ?>">Home</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Corporate<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/about'); ?>">About us</a></li> <li><a href="<?php echo url('/staff'); ?>">Staff</a></li> <li><a href="<?php echo url('/pilots'); ?>">Pilot Roster</a></li> <li class="divider"></li> <li><a href="<?php echo url('/pages/termsandconditionsregulations'); ?>">Terms,Conditions and SOP</a></li> <li><a href="<?php echo url('/contact'); ?>">Contact Us</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Operations<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/fleet'); ?>">Fleet</a></li> <li><a href="<?php echo url('/pages/divisions'); ?>">Divisions</a></li> <li><a href="<?php echo url('/pages/gallery'); ?>">Fleet Gallery</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Flights<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/schedules'); ?>">Schedules</a></li> <li><a href="<?php echo url('/schedule/bids'); ?>">Bookings</a></li> <li><a href="<?php echo url('/pireps/filepirep'); ?>">File Pirep</a></li> <li><a href="<?php echo url('/acars'); ?>">Live Flights</a></li> </ul> </li> </ul> </li> </ul> <ul class="nav navbar-nav navbar-right"> <?php if(Auth::LoggedIn() == false){ ?> <li><a href="<?php echo url('/login'); ?>">Login</a></li> <li><a href="<?php echo url('/pages/pilotapplication'); ?>">Register</a></li> <?php }else{ ?> <li><a href="<?php echo url('/logout'); ?>">Logout</a></li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown">Pilot Center <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="<?php echo url('/profile'); ?>">Profile</a></li> <li><a href="<?php echo url('/downloads'); ?>">Downloads/Repaints</a></li> <li><a href="<?php echo url('/pages/comingsoon'); ?>">Training</a></li> </ul> </li> <?php } ?> </ul> </div><!-- /.navbar-collapse --> </nav>
  17. If you have disabled the aircraft and it remains on the list, you will have to get in touch with the developer of the module as this is not correct.
  18. Have you tried to disable an aircraft? Does it remain on the list after you have disabled it?
  19. If you disable the aircrafts from your admin center, you will not be able to see them on your fleet table. It is not suggested to delete an aircraft from the database because this will might cause problems with your va's statistics/pireps/etc.
  20. Welcome to the phpVMS Community. This error is probably caused because of the PHP version of your server. phpVMS does not support the latest PHP versions. One solution would be to downgrade your PHP version to 5.3. Alternatively, you can check here. George
  21. I have set up a demo phpVMS for the Type Rating System. If anyone is interested in it just let me know. URL: http://php-mods.eu/demo/typerating/ Username: DEV0003 Password: 1234567
  22. I just said that he is not required to share this document with anyone else except the court and etihad.
×
×
  • Create New...