Jump to content

ProAvia

Administrators
  • Posts

    1695
  • Joined

  • Last visited

  • Days Won

    75

Everything posted by ProAvia

  1. Moved to appropriate forum. There are forum areas for phpVMS Classic (v2, v5 varients) and phpVMS 7. Please post in the appropriate section for the version you use.
  2. I did NOT say you are irrevlevant. I said that phpVMS does NOTwork 100% with free hosting - as confirmed by CCFTracker in your case. phpVMS works great on shared, dedicated and VPN paid hosting. Many (most) free hosts have restrictions in place for php addons or other hosting limitations that won't allow all required functions to work.
  3. Find out WHAT doesn't work? Trying to use phpVMS on free hosting is a pain and won't work with many addons. If you are serious about starting a new VA, pony up for paid hosting for a few months to see how it goes. You can find many shared hosts for well under 10 USD per month. If you aren't in a position to pay for hosting right now, install phpVMS locally on your computer using WAMP or XAMPP. You can add skins amd modules to tweak your site. But before going live, you will need paid hosting. Another option is to join one of the many VA's currently in operation.
  4. This is an English speaking forum. Please include an English translation in your posts.
  5. This is an English speaking forum. Please include an English translation in your posts.
  6. 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.
  7. Excellent! What did you have to change in the code?
  8. You may wish to try running the script on a local install. And then upload the navdata table to your live site.
  9. 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?
  10. 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/
  11. 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?
  12. 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?
  13. 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.
  14. 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.
  15. 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.
  16. Google is your friend... Google this: Deprecated: Methods with the same name as their class will not be constructors
  17. 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.
  18. Free hosting is not advised when using phpVMS. And adding a complex skin just increases the problems.
  19. 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.
  20. 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.
  21. Is your entire phpVMS install now on paid hosting? Is it a fresh install with a new database?
  22. 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.
  23. 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.
  24. 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.
×
×
  • Create New...