Jump to content

omglookeyhere

Members
  • Posts

    26
  • Joined

  • Last visited

Everything posted by omglookeyhere

  1. Hi everyone, I am looking for a skin that is supported by phpvms 7. Apparently, my host isn't able to support 5 anymore. (at least that's what i think http://prntscr.com/pn5x4j) I am just looking for a basic skin. It doesn't have to be anything overly fancy and complicated. Bootstrap would be a plus though. Anyway, please PM me with any info. Thank you. -Matthew
  2. Hey everyone So, I am trying to install Phpvms 7 and following the directions is confusing me. It says I need to install composer "git clone https://github.com/nabeelio/phpvms.git cd phpvms composer install " I dont know what this is and where to put it. Any help would be appreciate it. Thank you. http://prntscr.com/pmhzhk
  3. Thank you for the offer, but I am actually all set now. -Matthew
  4. So, I have figured out how to work charts.js. But i am still confused on how to extract data from Finances page and insert it into the charts. I mean I could manually insert every month, but I have to believe that there is better ways to do it. Any ideas? http://prntscr.com/pe1evg this is the chart i am trying to make with this example code provided by charts.js <script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0/dist/Chart.min.js"></script> <canvas id="myChart" width="400" height="400"></canvas> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myLineChart = new Chart(ctx, { type: 'line', data: { labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'], datasets: [{ label: '# of Votes', data: [12, 19, 3, 5, 2, 3], backgroundColor: [ 'rgba(255, 99, 132, 0.2)', 'rgba(54, 162, 235, 0.2)', 'rgba(255, 206, 86, 0.2)', 'rgba(75, 192, 192, 0.2)', 'rgba(153, 102, 255, 0.2)', 'rgba(255, 159, 64, 0.2)' ], borderColor: [ 'rgba(255, 99, 132, 1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)', 'rgba(75, 192, 192, 1)', 'rgba(153, 102, 255, 1)', 'rgba(255, 159, 64, 1)' ], borderWidth: 1 }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero: true } }] } } }); </script>
  5. LAST UPDATE (I promise): I have finally fixed it and SOLVED it. Come to find out I forgot I removed the code from ACARS.php. Hahahah so now I am at peace. @shakamonkey88 thank you for your willingness to assist. Appreciate it.
  6. UPDATE: I have figured out the map display issue. Solution: Uncommented Google map script and commented out (what I presume is) OpenLeaf map. Still have an issue of a flight path not showing. I'll keep digging in the code.
  7. Thanks for a response shakamonkey, i did look over that topic. it didn't prove much help. I did notice in the code, google maps were commented out, so i uncommented. But i dont think that actually did anything.
  8. Hey everyone So, since it seems that crazy creatives is not answering, I thought maybe someone here will have an idea. I got the flight tracker thingy from crazy creatives and installed it, however the map insn't showing up and a "snail trail" on a live map also isn't showing up. I was wondering do I need to convert google maps to OSM or did I just not install something correctly? Thank you.
  9. I have version 5.5 is it still going to work? Anyone have any ideas where I can get some tutorials to learn it? Would love to see charts in action.
  10. So, since Google browser is doing away with Flash in some very near future. Is there a way to take Flash charts and convert them to another source where every browser is able to display them? Thanks in advance.
  11. Wow...i feel stupid now. I guess i didn't follow directions as good as i thought. Thank you @ProAvia It's all fixed now. http://prntscr.com/p3woff Again, thank you.
  12. I'm raking my brains here trying to figure it out, I installed SimPliot's plugin manager and followed direction on putting all the files into Admin root. When I went to see it in admin panel, I get this http://prntscr.com/p3tejc And this error happens on every modules i try to install. Anyone knows a fix for it? Thank you.
  13. I assigned one, it looks to be working now. Thank you.
  14. If I am understanding you correctly, the value is assigned in the pilot_list.php My core Pilots.php is the same as one you posted. I have also tried to replace $allpilots instead of $pilot_list but it ends up breaking the page.
  15. line 16 is http://prntscr.com/p2ds Phpvms version 5.5.x Php version 5.6.40
  16. Not sure what's happening here. This code is straight from IceBlue by FlyAlaska. <section class="page-contents"> <div class="container"> <br /> <h3><i class="fa fa-users" fa-lg style="color:#04327F"></i> Our Pilots</h3> <script type="text/javascript"> $(document).ready(function() { oTable = $('#blueIce_Pilots_List').dataTable({ "bJQueryUI": true, "sPaginationType": "full_numbers" }); } ); </script> <table id="blueIce_Pilots_List" width="100%" border="0" cellspacing="0" cellpadding="0" class="blueIce_table"> <thead> <tr> <th>PID</th> <th>Name</th> <th>Rank</th> <th>Flights</th> <th>Hours</th> </tr> </thead> <tbody> <?php foreach($pilot_list as $pilot) { /* To include a custom field, use the following example: <td> <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> </td> For instance, if you added a field called "IVAO Callsign": echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); */ // To skip a retired pilot, uncomment the next line: //if($pilot->retired == 1) { continue; } ?> <tr> <td width="1%" nowrap><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <td> <img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" /> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></td> <td><?php echo $pilot->totalflights?></td> <td><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <?php } ?> </tbody> </table> </div> </section> And this is the error I keep getting. If I remove that line, than the whole page disappears. http://prntscr.com/p2cgqc
  17. Hi everyone Not sure if i am missing something, or just doing something wrong but when i click on Dashboard I am presented with this http://prntscr.com/p17716 Also, when I create subdomain and basically copy everything from the original domain, the page comes out looking blue-ish and welcome mesage repeats several times. Thank you for your help.
  18. I am not entirely sure what's happening here. But when I install Ela skin, it keeps giving me this error. https://i.imgur.com/12t8yYK.jpg I have gone to that line and looked at it. This is a code on that line. Am i supposed to put the path of the template there? Any help would be greatly appreciated. Thank you.
  19. Hey everyone, I am looking to start a new virtual airline. It's a lot of work and I am in need of help to get it off the ground. I have web space and domain available already. If interested, please PM me. Thank you.
  20. Never mind, I have figured it out. Technically I didn't even need Filezilla, I could have just transferred all those files in zip format and unpacked them through cpanel. Oh well. And @Heritage1 you shouldn't be so dismissive of new people who want to create a VA. Sure, it's complicated at first and sure not everyone might have the basic knowledge of how to set it up. However, instead of just blowing "newbies" off, how about you teach them and guide them or at the least, don't be so judgmental. Some of us do know HTML/CSS and few other coding languages.
  21. [[gatewayvirtual.com]] I am slightly confused. The files appear in this so called Cpanel under File Manager
  22. [[https://plesk06.zap-webspace.com:8443]]
  23. Hey everyone Soooo, I've been tinkering with this install/install.php for hours and still cannot find a way to understand. I got a webspace from Zap Hosting and what I don't understand is where and how do i install the installer. Where do i install the installer? I can't seem to get to a screen where you set up your VA. Do i upload phpvms files through Filezilla or can I upload them through admin panel on my webspace? Any help would be greatly apreciated. THank you.
×
×
  • Create New...