Jump to content

ProAvia

Administrators
  • Posts

    1740
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by ProAvia

  1. It seems you are using free hosting, so many things will not work as you may expect. Additionally, I think the VA URL should point to the main site and not to the crew center.
  2. Ok - thanks!
  3. Excellent! What did you have to change in the code?
  4. You may wish to try running the script on a local install. And then upload the navdata table to your live site.
  5. Do you mean running the script using the fsbuild AIRAC file? I have never had any luck running it directly on my site. I have had success running it locally using WAMP though. Who's script files are you. using?
  6. Can you get a plan that supports PHP 7.0 or PHP 7.1 or PHP 7.2 and MySQL 5.7? If so, you can use phpVMS 5.5.2.72 - which will work with those. Or you can edit the file listed here to get phpVMS 5.5.2 to work in MySQL 5.7 - https://stackoverflow.com/questions/45537777/phpvms-incorrect-date-value-0000-00-00-for-column-lastlogin-at-row-1/
  7. Isn't the information at the bottom of that similar to the info you are looking for? The bottom section lists PIREP info for the specific pilot listed. While it shows every PIREP from that specific pilot, the code can probably be edited to only show the last 5 PIREPS. Or are you only wanting to show the last 5 PIREPS - regardless of who submitted them?
  8. You're welcome Keep this handy - chances are you will run into a similar issue elsewhere. What version of PHP are you using? What version of phpVMS?
  9. Go to your site and after /index.php add /profile/view/<insert_pilot_number_here> and let us know what you see. So /index.php/profile/view/0002 ---- or any other valid pilot number.
  10. I bet you are using PHP 7.0 or higher. Are you using phpVMS 5.5.2.72? Here again is the error Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Pagination has a deprecated constructor in /home/level/public_html/phpvms/core/common/Pagination.class.php on line 3 The class is class Pagination extends CodonData on line 3 The method is function Pagination($page = null, $size = null, $total_records = null) on line 40 According to the error you can not have the class and the method (function in this case) be the same name. This is what is throwing the Deprecated ... you are seeing. The word Pagination can not be in both places. The fix is to change line 40 from function Pagination($page = null, $size = null, $total_records = null) to function __construct($page = null, $size = null, $total_records = null) Note that there are two underscores ( _ ) before the word "construct". The fix is outlined here: https://stackoverflow.com/questions/37100373/php-deprecated-methods-with-the-same-name And was found with a quick Google search of: Deprecated: Methods with the same name as their class will not be constructors The only reason I went into such detail is that many older modules may have this same issue when using PHP version 7 and above.
  11. Look in /home/level/public_html/phpvms/core/common/Pagination.class.php on line 3 Pagination.class.php is not a file in the default install of phpVMS - so copy/paste the contents of that file here. My guess is that you may need to see what is in line 3 - but make a change to line 40 (if your file contents as the same as mine). But we need to see the contents of YOUR file first.
  12. Google is your friend... Google this: Deprecated: Methods with the same name as their class will not be constructors
  13. There are many out there. Just be sure they support: PHP 5.6 (for phpVMS 5.5.2), PHP 7.0-7.2 (for phpVMS 5.5.2.72), PHP 7.3+ (for phpVMS 7) MySQL 5.6-5.7 - or MariaDB 10.1 (for phpVMS 5.5.2 or 5.5.2.72), MySQL 5.7+ - or equivalent MariaDB or Percona (for phpVMS7) Comes with cPanel or another easy to use panel to access your hosting account. Since you are on phpVMS 5.5.2 - look for a host with PHP 5.6, MySQL 5.6 or MariaDB 10.1 and cPanel hosting account access. Maybe some other members can provide specific recommendations.
  14. Free hosting is not advised when using phpVMS. And adding a complex skin just increases the problems.
  15. If you enter the airport ICAO and click the airport lookup in v7, it will populate all the airport info for you. I would only recommend adding the airports you actually intend to fly to. This helps to not slow down loading times. And if developing a charter module, it would be better to have a separate database table for the charter module - which could include all available airports worldwide. This would keep load times quick, except when using the charter module.
  16. If you are on free hosting, phpVMS is NOT going to work correctly. And adding a complex skin or addon modules is only going to make things worse if you continue to use free hosting.
  17. Is your entire phpVMS install now on paid hosting? Is it a fresh install with a new database?
  18. If you stay on free hosting, you will continue to have issues. I would recommend you move to paid hosting. Even if your map issue can be resolved, at some point you will run into other issues which can not be solved.
  19. Free hosting doesn't play well with phpVMS. Just so you know, I did a fresh install of phpVMS and added the Mark Swan Crewcenter - and all works as expected on my paid hosting... including the bidding function. And many other members are using Crewcenter without issue on paid hosting.
  20. If your host uses cPanel - on the right hand side should be the option to check server information. Or possibly look in phpMyAdmin on the right side under Database server. Either should show the MySQL or MariaDB version.
  21. Yeah I know it isn't the skin of choice - but always best to revert to the crystal skin to see if the issue is still there. In /lib/skins/crewcenter Do all files end with the extension .php or .tpl ? Have you edited any of the files in this folder? What MySQL or MariaDB version is your host using? Also, verify you are using the default schedule search and not an addon like FltBook or any of the other schedule search modules.
  22. Change back to the crystal skin and see if it works as intended there. This will determine if its phpVMS or the skin. Also... PHP version? MySQL/MariaDB version?
  23. You will have to edit two files Backup the originals first...... -------------------------------------------------------------- -------------------------------------------------------------- In /admin/modules/PilotAdmin/PilotAdmin.php Edit (around line 462) $tmp = array( 'id' => $row->id, 'cell' => array( # Each column, in order $row->id, $pilotid, $row->firstname, $row->lastname, $row->email, $location, $status, $row->rank, $row->totalflights, $row->totalhours, $row->lastip, $edit ) Add after ---- $row->totalhours, as a new row $row->lastpirep, ---------------------------------------------- ---------------------------------------------- In /admin/templates/pilot_list.php Change (around line 17) colNames: ['','Pilot ID', 'First', 'Last', 'Email', 'Location', 'Status', 'Rank', 'Flights', 'Hours', 'IP', 'Edit'], To colNames: ['','Pilot ID', 'First', 'Last', 'Email', 'Location', 'Status', 'Rank', 'Flights', 'Hours', 'Last PIREP', 'IP', 'Edit'], Then (around line 29) colModel : [ {index: 'id', name: 'id', hidden: true, search: false }, {index: 'pilotid', name : 'pilotid',sortable : true, align: 'left', search: 'true', searchoptions:{sopt:['in']}}, {index: 'firstname', name : 'firstname',sortable : true, align: 'left', search: 'true', searchoptions:{sopt:['in']}}, {index: 'lastname', name : 'lastname', sortable : true, align: 'left', searchoptions:{sopt:['in']}}, {index: 'email', name : 'email', sortable : true, align: 'left',searchoptions:{sopt:['li']}}, {index: 'location', name : 'location', sortable : true, align: 'center',searchoptions:{sopt:['eq','ne']}}, {index: 'retired', name : 'status', sortable : true, align: 'center',searchoptions:{sopt:['in']}}, {index: 'rank', name : 'rank', sortable : true, align: 'center', searchoptions:{sopt:['eq','ne']}}, {index: 'totalflights', name : 'totalflights', sortable : true, align: 'center',searchoptions:{sopt:['lt','gt']}}, {index: 'totalhours', name : 'totalhours', sortable : true, align: 'center',searchoptions:{sopt:['lt','gt']}}, {index: 'lastip', name : 'lastip', sortable : true, align: 'center', searchoptions:{sopt:['in']}}, {index: '', name : '', sortable : true, align: 'center', search: false} Add after ---- {index: 'totalhours', name : 'totalhours', sortable : true, align: 'center',searchoptions:{sopt:['lt','gt']}}, as a new row {index: 'lastpirep', name : 'lastpirep', sortable : true, align: 'center',searchoptions:{sopt:['lt','gt']}}, Now you will have a Last PIREP column in the Pilot List showing the date and time of the last submitted PIREP for each pilot. The date/time shown is either the last PIREP date/time (if at least one PIREP has been filed) or the pilot's join date - whichever is most recent (at least in phpVMS 5.5.2.72).
  24. What is line 66 in /core/modules/Loa/LoA.php? What is line 22 in /core/common/LoAData.class.php? phpVMS version? PHP version? MySQL/MariaDB version?
  25. The link listed a few posts above IS the most updated version. You will need to covert to from tpl to php. After you convert it - if you still get an error, try Googling the error. Or post the error here and maybe someone will help you out.
×
×
  • Create New...