Jump to content

ProAvia

Administrators
  • Posts

    1740
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by ProAvia

  1. As I recall, it has something to do with adding if(Auth::LoggedIn()) { Do this }else{ Do something different } "Do this" would be to display your discord stuff "Do something else" would be to maybe return to the home page or display an error message
  2. Did you try importing all at once in a single csv file? Maybe break the csv file into multiple smaller files (maybe 200 flight schedules per file) and try importing them that way.
  3. If you have other areas of the site or specific modules that are only visible to members, look thru them for how they are restricted to members only.
  4. Find the template file that displays that image and alter the html code to center and/or resize the image to fit the space you want it in. It appears the image is too large for the space and that is why it is overflowing the right side.
  5. Wrong forum - your post belongs in the v7 forum And, if 000webhosting is free hosting, phpVMS won't work correctly.
  6. Thanks to @DisposableHero Github master file has been changed to accommodate IPv6 IP addresses. New installs after the date/time of this post will be set up for IPv4 and IPv6 IP addresses. https://github.com/ProAviaAZ/phpvms_5.5.2.72 Previous installs can update to allow IPv6 addresses by running the SQL queries below. Both are needed. 25 chars will not be enough to store v6 addresses. It should be at least 45 chars to avoid errors. So during install, setting ip related column length as varchar(45) may solve future issues with new members using ipv6. Also for current users of your release, running simple sql queries may help to solve this little problem. This is for the pilots table: ALTER TABLE phpvms_pilots CHANGE lastip lastip VARCHAR(45) https://github.com/ProAviaAZ/phpvms_5.5.2.72/blob/master/install/sql/install.sql#L336 Same logic applies to the sessions table too; https://github.com/ProAviaAZ/phpvms_5.5.2.72/blob/master/install/sql/install.sql#L471 ALTER TABLE phpvms_sessions CHANGE ipaddress ipaddress VARCHAR(45) Direct manipulation via phpMyAdmin on the above two items is also possible. Additionally, any Modules that list an IP address will need their associated table changed. For example, kACARSII has a sessions table (kacars_sessions) that includes ipaddress. So, varchar for ipaddress needs to be changed from 25 to 45 there also. As always - BACK UP the database first. Only you are responsible if the above doesn't work for any reason.
      • 1
      • Thanks
  7. You are already showing as a member of the phpVMS discord. Are you able to see the phpVMS discord now? EDIT - I still show you as a member there, but when I attempt to send you a message it says: Your message could not be delivered. This is usually because you don't share a server with the recipient or the recipient is only accepting direct messages from friends. ... Do you have direct messages set to only allow friends to send you a DM?
  8. No - functionality may return at some point after phpVMS v7 is released.
  9. ProAvia

    error skin

    Please post in English
  10. Full PHP version? MySQL or MariaDB version? Paid or free hosting?
  11. Thanks - unfortunately, my AV shows that website as "infected with URL:Blacklist". Maybe the OP can possibly get that straightened out and/or provide a different link.
  12. Do you have a website for your company? How about links to VA's you have designed for? Base price for a phpVMS v7 design? Price of options?
  13. No - at least not without a complete rewrite of the code. It would be easier to develop an entirely new addon for v7.
  14. None of the payware SimPilot modules are available since he stopped developing for phpVMS several years ago. The SimPilot freeware modules are available on Github. https://github.com/DavidJClark
  15. Are you running this locally? What is "Loclcalhost/..."?
  16. Asking for a help in a message thread that hasn't seen a response in over 5 years likely won't get you an answer.
  17. phpVMS 5.5.2 template files end in ".php", not ".tpl". For skins, you can mostly just change the file names from .tpl to .php -although you may have to look in each skin file and change any reference from .tpl to .php also. Skins made specifically for phpVMS 5.5.2 will not require this modification. Some older skins made for phpVMS 2.x were also converted for use in phpVMS 5.5.2. Other skins sometimes come with the files for both versions. You may be best served initially to find a skin made specifically for phpVMS 5.5.2 - such as ones available at 209 studios. https://phpvms.209studios.com/downloads.php
  18. The Stisla skin is outdated and the author isn't active anymore. I doubt you will find someone here to help you debug that skin. You can find the original files in the Github phpVMS 5.5.2 download.
  19. https://github.com/web541/phpVMS-FltbookSystem-v2
  20. A skin has nothing to do with any data.class file. If you wish to check your files against the default, just download the archive again from Github.
  21. MySQL above 5.7.4 is probably the issue. Check with your host to see if Strict Mode is ON or OFF. Request they turn it OFF. Some hosts will, others won't. There is no known permanent fix from our end at this point in time. You can add the aircraft manually to the database via Cpanel or whatever user interface your host provides. Be sure to BACK UP YOUR DATABASE PRIOR to attempting this.
  22. phpVMS version? PHP version? MySQL or MariaDB version?
  23. What exact error? What version of PHP? What version of MySQL or MariaDB?
  24. 5.5.2.72 is for PHP 7.0 thru 7.2 There may be issues on PHP 7.3 and above. No support can be given for PHP above 7.2 as I don't use those versions. You may want to consider setting up a Gmail or Outlook account for site use if all email thru tfdi hosting is blocked by MS.
×
×
  • Create New...