Jump to content

ProAvia

Administrators
  • Posts

    1740
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by ProAvia

  1. If your subdomain for phpVMS v7 is called "sitio.aerovirtual.com.ar" You need to first create a subdomain called "sitio.aerovirtual.com.ar" through your hosting panel and point that subdomain to /public_html/phpvms/public Then copy all the phpVMS v7 files to /public_html/phpvms
  2. Chances are that someone replace some/all of the default admin files with an update admin skin. Probably the only way to change it is by replacing those files with the default files - after the site is fully backed up.
  3. That will allow changing the user side skin, not the admin skin.
  4. Blue Ice is your skin for the user side of the sight. What PHP version are you running. Who changed the default admin skin to the present one? They should know how to revert to default.
  5. Don't get me wrong - this is a nice skin.... but.... Did you code this from scratch or did you take bits and pieces of others works and combine them into this skin?
  6. Yes - it is nice. But I am still awaiting an answer to this too.
  7. Maybe revert to the default admin skin and try again? What version of phpVMS? What version of PHP? What version of MySQL or MariaDB?
  8. 👍
  9. Google is your friend.... Google - learn laravel Here is one possible place: https://www.tutorialspoint.com/laravel/index.htm
  10. 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.
  11. 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.
  12. If you know Laravel you can probably adapt it for phpVMS 7
  13. Do you have a working demo site set up that interested members can look at?
  14. Link to your site doesn't work for me.
  15. Looks nice - but what base template did you use for inspiration?
  16. What base template did you use to create your skin?
  17. What base template did you use to create your skin?
  18. 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
  19. "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
  20. 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/ ?
  21. 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?
  22. 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.
  23. 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'); } } ?>
  24. 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?
  25. Have a look through the v7 documentation - http://docs.phpvms.net/ You can contact your hosting company to help you set up a subdomain.
×
×
  • Create New...