Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jeff

  1. yeah Ray, can you paste the whole departure/arrival code, something went terribly wrong with mine and I couldn't get it fixed.
  2. You can use a custom made one like I did. Have a look http://www.oneworldvs.net/index.php/pages/contactus
  3. PM me and we'll talk.
  4. there is the option to change it in your core/local.config.php file
  5. He means what do you click after you click on www.? Do you click Core, lib, admin, what?
  6. The first thing you need to do is stay away from free web hosts and purchase a domain either from http://www.fivedev.net or elsewhere, as free hosts don't work well with phpVMS.
  7. Try clearing your browser history or just hit refresh (F5)
  8. You have too many departure calls (5) I believe it can only have 3. Try removing some. CheckIn Open, and Gate Closed
  9. I love the maps, especially the motion map.
  10. Jeff

    Thoughts?

    Looks good Brian, and I am glad that I could help. Need any more, just ask.
  11. The FiveDev is tied into the forums here where it can be found easily/ Here is the link: fivedev.net
  12. Jeff

    Changing Menu's

    http://www.mycssmenu.com I haven't tried uploading it to phpVMS, but I use it on all of my other websites. It is 100% free and is also fully customizable for any layout or skin you have.
  13. Brian, actually it is one of your images doing that. http://www.virtual-kind.com/lib/skins/aer/images/main-background.png
  14. that is in the .css also (look around where it says header (#EDF5FF is the color you are looking for)
  15. s***, sorry... I didn't give you the whole code... <?php $count = 15; $pireps = PIREPData::getRecentReportsByCount($count); ?> <table width="94%" border="0" bordercolor="#FFFFFF"> <thead> <tr align="center" valign="middle" bgcolor="#7D95AF"> <th>Flight #</th> <th>Departure</th> <th>Arrival</th> <th>Duration</th> <th>Pilot</th> <th>Landing Rate</th> <th>Aircraft</th> </tr> </thead> <tbody> <?php if(count($pireps) > 0) { foreach ($pireps as $pirep) { $pilotinfo = PilotData::getPilotData($pirep->pilotid); $pilotid = PilotData::getPilotCode($pilotinfo->code, $pilotinfo->pilotid); echo "<tr>"; echo "<td align=center> $pirep->code $pirep->flightnum </td>"; echo "<td align=center> $pirep->depicao </td>"; echo "<td align=center> $pirep->arricao </td>"; echo "<td align=center> $pirep->flighttime </td>"; echo "<td align=center> $pilotid $pilotinfo->firstname $pilotinfo->lastname </td>"; echo "<td align=center> $pirep->landingrate </td>"; echo "<td align=center> $pirep->aircraft </td>"; echo "</tr>"; } } else { echo "<tr><td>There are no recent flights!</td></tr>"; } ?>
  16. Here is how I have it on my site. <table> <tr> <th>LAST 15 FLIGHT LEGS</th> </tr> <tr> <td><p align="center"><img src="http://www.gcmap.com/map?P=<?php echo $string ?>&MS=bm&MR=240&MX=650x360&PM=pemr:diamond7:red%2b%22%25I%22:red&PC=%230000ff" /><br /> </tr> </table> <?php $count = 15; $pireps = PIREPData::getRecentReportsByCount($count); ?> <table width="94%" border="0" bordercolor="#FFFFFF"> <thead> <tr align="center" valign="middle" bgcolor="#7D95AF"> <th>Flight #</th> <th>Departure</th> <th>Arrival</th> <th>Duration</th> <th>Pilot</th> <th>Landing Rate</th> <th>Aircraft</th> </tr> </thead> <tbody>
  17. Use this to get the table to sit under it if you like: <?php $count = 10; $pireps = PIREPData::getRecentReportsByCount($count); ?> <table width="100%" border="0" bordercolor="#FFFFFF"> <thead> <tr align="center" valign="middle" bgcolor="#7D95AF"> <th>Flight #</th> <th>Departure</th> <th>Arrival</th> <th>Duration</th> <th>Pilot</th> <th>Landing Rate</th> <th>Aircraft</th> </tr> You can change the colors, table width, and table count to suit your needs as well.
  18. If anyone receives this problem, open the frontpage_main.tpl and look for the 2 </div> that are located in the middle of the script and remove one of them.
  19. Whenever someone clicks on your link and it goes straight to a free web hosts page is never a good sign.
  20. Yep, that looks much better.
  21. Yep he is. looks like http://www.0adz.com
  22. Sorry Jeff, I totally missed #11.
  23. Look in the .css for #417D8C that is the color for the bottom of the page. The red you are using is #DE2424
  24. Lucas, can you PM me your frontpage_main.tpl
  25. Jeff, I seemed to get it working, but I have a question. When you (the Admin) adjust the pilots pay, where does the information go to? (where will the "Reason" show up when you adjusted the pay? Will it be shown in the pilot's profile, their e-mail or where?) I know the amount will show up in their profile page next to "Total Earnings"b but when you adjust it from the Admin Center, there is a place for reason, that is the question. (Yeah, I typed it, and I'm confused )
×
×
  • Create New...