Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. There is no need to bump the topic after a few hours. If there is anyone who can help, he will do it.
  2. Unfortunately, based on the current structure of phpVMS, both of them are not possible.
  3. Hello, What do you mean "reserve"? Adding a flight on his bids or sending a new pirep on the system? George
  4. Hello, Can you please let me know what is your website and which browser are you using?
  5. 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.
  6. 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>).
  7. 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.
  8. 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>
  9. 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.
  10. Have you tried to disable an aircraft? Does it remain on the list after you have disabled it?
  11. 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.
  12. 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
  13. 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
  14. I just said that he is not required to share this document with anyone else except the court and etihad.
  15. I am going to upload the demo system in the afternoon. I will let you know via pm.
  16. The document signed off between poole and etihad is a private contract. He is not required to publish it anywhere. And in the end, i do believe that it is his problem. Trust me Tom, if etihad has any copyright problems with poole, you will not be involved in the court so don't worry...
  17. Very good. For all those who viewed this conversation, i have made all of the required changes. If you have any problem, you can redownload the module from phpmods github account.
  18. Open the admin/templates/faq/update.tpl file and where: $cur_version = file_get_contents("http://php-mods.eu/modules/versions/faq"); $ins_version = '1.1'; replace with $url = 'http://php-mods.eu/modules/versions/faq'; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HEADER, false); $data = curl_exec($curl); curl_close($curl); $cur_version = $data; $ins_version = '1.1';
  19. can you also try to rename that folder to faq (without caps)?
  20. Get into your admin/modules/Faq folder and rename the FAQ.php file to faq.php. Some servers have some problems with the files names but changing the name of the file should solve the problem.
  21. Are you able to access the module here?
  22. Open the faq_index.tpl file and remove line 53. This will solve the error.
×
×
  • Create New...