Jump to content

ProAvia

Administrators
  • Posts

    1761
  • Joined

  • Last visited

  • Days Won

    79

Everything posted by ProAvia

  1. Maybe revert to the default admin skin and try again? What version of phpVMS? What version of PHP? What version of MySQL or MariaDB?
  2. 👍
  3. Google is your friend.... Google - learn laravel Here is one possible place: https://www.tutorialspoint.com/laravel/index.htm
  4. Nope - not kidding in the least. If you are going to be using phpVMS v7, you will have to learn at least some Laravel at some point. No time like the present. After phpVMS v7 is released, there may be several skin options available.
  5. I see you are using kACARSII - which is payware. We can't discuss payware products here (which aren't developed by the phpVMS developer). The developer of kACARSII is no longer developing the program and his site is shut down. Have you asked others at your VA if they are experiencing the same issues? I use kACARSII, and I remember one of my pilots having this issue - but it was related to his screen reader. If you contact me via PM, we can discuss further.
  6. If you know Laravel you can probably adapt it for phpVMS 7
  7. Do you have a working demo site set up that interested members can look at?
  8. Link to your site doesn't work for me.
  9. Looks nice - but what base template did you use for inspiration?
  10. What base template did you use to create your skin?
  11. What base template did you use to create your skin?
  12. If possible, set that sub-domain to use PHP 7.2 or 7.3 Follow the docs here to install correctly on a sub-domain: http://docs.phpvms.net/ You will go to the v7 site via http://<full_sub-domain_name>/public
  13. "I open a new free account at 000webhost (following a tutorial at Youtube - phpVMS Tutorials | Web Hosting)" Free hosting is your first issue. Create a sub domain and database on your paid host and upload it there. Use the latest development build here: http://downloads.phpvms.net/phpvms-7.0.0-dev.tar.gz
  14. It almost looks like it isn't pulling the css. What directory is phpVMS installed in? Is it /public_html/crewcenter/ ? What directory is crewcenter installed in? Is it /public_html/crewcenter/lib/skins/crewcenter/ ?
  15. Ah - Seeing that pic helps. So the skin isn't loading at all then. If you change back to the default crystal skin, does it display correctly?
  16. No idea why you are getting an error referencing header.tpl and footer.tpl - it shouldn't be calling any tpl files. The skin uses app_top.php for the header and app_bottom.php for the footer. In referende to your error_log - Line 231 of which file? The layout.php file has only 113 lines.
  17. The header and footer won't show if not on the login or registration pages. See layout.php starting on line 53 <body> <?php echo $page_htmlreq; ?> <?php // var_dump($_SERVER['REQUEST_URI']); # Hide the header if the page is not the registration or login page # Bit hacky, don't like doing it this way if (!isset($_SERVER['REQUEST_URI']) || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/login' || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/registration') { if(Auth::LoggedIn()) { Template::Show('app_top.php'); } } ?> <div id="content"> <?php echo $page_content; ?> </div> <?php # Hide the footer if the page is not the registration or login page # Bit hacky, don't like doing it this way if (!isset($_SERVER['REQUEST_URI']) || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/login' || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/registration') { if(Auth::LoggedIn()) { Template::Show('app_bottom.php'); } } ?>
  18. I am guessing you are using phpVMS 5.5.2..... Did you delete all the tpl files first and then replace with the PHP files? Anything related in the error_log file or issues in the console?
  19. Have a look through the v7 documentation - http://docs.phpvms.net/ You can contact your hosting company to help you set up a subdomain.
  20. Glad you got it working. Several users have reported issues with MariaDB 10.2 and 10.3 I can't speak to the issues you saw with Visual Studio - but a simple code editor like Notepad++ seems to work well. There are several other free code editors available also.
  21. For phpVMS v7 check the requirements - http://docs.phpvms.net/
  22. I used Notepad++ It appears you are using MariaDB - if it is any version other than 10.1, you will probably experience issues. Change to MariaDB 10.1 or to MySQL 5.6 or 5.7. If you deleted the original RanksData.class and created your own - you are on your own. What was the purpose of deleting the original? What did you change in the one you "created"? It appears that RanksData.class was not changed for version 5.5.2.72 - it is the same as the original in 5.5.2 (simpilot version).
  23. I couldn't tell you if its a Visual Studio issue or not as I don't use it. Are you getting any errors in the error_log file or in the Chrome browser console? What exact file did you delete and create anew? Have you in any way edited the original downloaded files?
  24. ProAvia

    BlueIce V2

    The registration is built into phpVMS. You don't need a separate addon module.
  25. Probably not the correct place to post about adding a bidding system. But if you can't find/view ezdb_mysql.class.php chances are you can't add or edit any files either. Free hosting is never a good option to successfully run phpVMS. If you don't have issues now you will- sooner rather than later. If you are serious about running a successful VA, pony up and pay for hosting.
×
×
  • Create New...