Jump to content

LeonardIGO4036

Members
  • Posts

    116
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by LeonardIGO4036

  1. Okay, you need a new skin and few upgrades for your VA. PM me, I provide payware services. But if you're interested in doing things by yourself, I'd suggest you to learn the basics from the web. I know what your thinking, it's not easy, but it's worth it. All the best. Happy New Year!
  2. Hi I'm sorry that you had to wait this long, I was away for a while. Do you have the latest version of the skin? Are you running in phpVMS 5.5 2? Did you overwrite anything? The error says that phpvms was unable to locate header.tpl and footer.tpl. That's weird because both of those files for this skin are named as app_top.php, app_sidebar.php and app_bottom.php. So somewhere within your phpVMS, the software. Is trying to load a different layout.php file, can you check if the layout file in the lib>skins>iCrewLITE folder is specific to the iCrew LITE format? (Should include atleast the word iCrew that page in some point, else it's the crystal skin's one.
  3. As said earlier, it's a JavaScript error caused due to not including the required files Include core_htmlheader.php in your layout.php before your header tag. Search this forum, that's the best way to debug
  4. Hi! The best way to fix this is to alter the input type in the schedules form. By default, it's a drop-down, so changing that into a input field might save you the loading time. Drawbacks : Pilots will not be able to see all the airports in the database. In my honest opinion, they're not going to even need to see those 20k airports, so you don't have to worry much. How to change : 1. Take back up of the schedules_searchform.php 2. In the schedules_searchform.php, remove the drop-down lists for the departure and arrival airports and change them with this : <input type="text" name="depicao" class="form- control" placeholder="Please Enter the ICAO code for your departure airport" /> * Repeat the same, alter the name to arricao and then save the file. Now you would have made a form where your pilots can manually enter their dep & arr icao codes. I know this is not exactly what you wanted, but let me know if it helps Regards.
  5. Hey! Merry Christmas, what exactly do you wish to change in your VA? From what I understand, If you need to change an image, it's simple. Go to your hosting's filemanger, upload the image and verify it's uploaded. (www.yoursite.com/image.jpg would be a simple way to check), now go and replace the URL of the image which you would like to change with this new URL. Forgive me if this is not what you're looking for. Once again, good day! Regards
  6. Hey, Did you figure it out yet buddy? If there is anything i could do to help, drop a DM Regards!
  7. It's because something else it triggering the modal. It's a common error with bootstrap. Contact @parthparth for more help.
  8. Hey, can you try checking if the skin is active? Go to Admin Center > General Settings > Skins and check if it's using icrew. Regards
  9. Hey Wazza, It's nice to hear you're enjoying the skin. This skin, is made for VA's which use the 'dashboard portal', meaning only members with a valid login ID and password can access the contents of the VA. This is pretty much why i insisted the devs to install it on a subdomain like icrew.yoursite.com. Now that i see this is an issue, I am in the idea of developing a Front end theme too. Let's see where it takes us. If you have any freeware theme in mind which would be great for your VA, or if you have any suggestions to add, please go ahead. Regards
  10. Alright. That is actually pretty defined in the skin's css files. It's a very long process to add a new color all together, but I'll tell you a quick work around. lib>skins>iCrewLITE>css>themes. Go there and select a color which you think will be the least preferable and open that theme-xyz.css You're going to find some css code with lots of "#" values. Those are called hex codes. So to change a color, you need to just replace the hex colors. To get a hex colors, go to Google and search for hex color picker. The best way is to Google the color given in the theme first, and then replace it (just so you know which color you're changing) I understand that this is a bit long to follow up, but this would be the best that I could do for now. Hope this helps Regards
  11. Hey buddy, thank you for your appreciation. Styling the skin is really simple. I've included this in the documentation, but just in case you missed it. "To change your theme, just simply go to lib > skins > iCrewLITE > layout.php and on line '79' theme-indigo change the "indigo" to your desired theme. For your login background screen, for this release, you have to change it in each of the login_xyz.php and registration_xyz.php in the style tag." Hope this helps!
  12. I am working on a full fledged Android app that can be used to bid/cancel flights, generate briefings, view live flights, chat with members (private & chatroom), view news / NOTAMs. I also am creating a separate app for the admin part, to add and edit news, NOTAMs, schedules and accept / reject PIREPs. It took alot of effort to actually create something which communicates as a bridge between the Android app and the phpvms server. I'm planning to make a free API file which admins can add to their server, with which the pilots can just download the app from the play store, login and use it. I'm currently looking for feature suggestions and help regarding creating an iOS app for the same.
  13. How did you style your ACARS map? You added custom code to the acarsmap.php? Do the same for routemap.php
  14. UPDATE : v2.1 Released! click here to download Added Privacy Module Edited Staff Module, changed way of functioning. No more SQL work needed. Fixed bug on registration page - Showing only HTML Fixed bug on registration page - reCaptcha Styled PIREP Comments, PIREP View, and PIREP Edit pages aditionally. Added conditional statements for Charts fetch. Fixed StatsData::TotalHours(); => NaN error. Updated iCrew LITE Usage policy and alot more optimization and bug fixes. Please download the latest version and follow the instructions. Read the documentation here : https://icrewsystems.github.io/docs/
  15. Hey! I am working on an update which should be up in a few hours. But here is a quick fix : Go to core > modules > Logout > Logout.php and in line 25 you should have "header('Location: '.url('/'));" Change it to the link you want to direct to, for example To redirect the page to a module within the VA after logging out : "header('Location: '.url('/'));" To redirect the page to a URL outside the VA : "header('Location: https://www.myvahomepage.com');" Hope this helps Sorry for the inconvenience Leonard
  16. YES! YOU HAVE TO ADD IT. People who are facing problems with the skin, please do refer the documentation once more. There might be something you would have missed. Thanks mate :)
  17. You're welcome mate. All the best!
  18. Hey! I know how to do this, I infact created a webmail application for one of my clients which used this tech. Session's would be better than cookies, but Since the Codon.config.php already has a session_start(); tag, It would throw a warning every time someone tries to login to your application. Contact me on PM, I might be free for the next few days to help you out. Regards
  19. Okay, now i understood. You just need to amend this code with an extra conditional statement. <?php $allusers = StatsData::UsersOnline(); $pilotid = (assign it here); foreach ( $allusers as $user) { if($user->pilotid == $pilotid) { echo 'Online'; } else { echo 'Offline'; } } ?> That should be it!
  20. Use phpvms's inbuild mass mailer function instead of your hosting's webmail.
  21. <?php $allusers = StatsData::UsersOnline(); foreach ( $allusers as $user) { echo $user->firstname.'<br>; } ?> This is just a simple code, I guess this should help.
  22. Can people fly a non scheduled flight for your VA? Yup, You have the Charters Module. Pilots can create their own schedules and fly it. Check it out.
  23. Such an amazing piece of work. Thank you for keeping it free
  24. I don't know how well it works if it's not on the public_html, but on my site, the folder is inside the public_html P.s cPanel should make the stuff easy for you.
  25. Can you send a screenshot instead? What hosting you're using? Were you using phpvms before on this server?
×
×
  • Create New...