Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by simpilot

  1. Do you guys have a link we can look at? Does the map show up at all, or does it just not show the aircraft positions?
  2. It is your server -> put this in the search box "Allowed memory size" and you will come up with at 10 threads on this issue and the possible fixes.
  3. Is there a value in the table for CURRENT_SKIN? With out any more info it looks like the system is not collecting a name of the skin file it is looking for from that line of the datbase table, make sure there is a name of a valid skin in the value section of the table line. After doing this also at least erase the cache file site_settings from the core/cache folder before refreshing.
  4. Look in the api docs -> http://forum.phpvms.net/page/index.html?record=16
  5. What you guys can do is restore the original core_navigation file on the admin side and then add the correct code to the pilot shop admin module file; public function NavBar() { echo '<li><a href="'.SITE_URL.'/admin/index.php/PilotShop">Pilot Shop</a></li>'; } I am not sure the "PilotShop" part is right, that should be the name of the module on the admin side, but this will add a link for it under the "AddOns" section of the menu and never be overwritten in an update.
  6. Are there any errors showing in firebug when you try to view the map in Firefox? Is the table under the map populating with data or is it empty as well?
  7. This may help you - http://forum.phpvms.net/topic/1317-request-contact-form-mod/
  8. I think your banner looks much better where it came from....
  9. smf includes a file called SSI.php in their package that allows connection from outside sources. You can find more information here -> http://docs.simplemachines.org/index.php?topic=400.0
  10. The core/templates folder is the default location for skin templates in phpVMS. I have no way of knowing what everyone is naming their custom skin folder....
  11. The answer is in the error message
  12. There are links for instructions and support included within the email you received the script in.
  13. The template file is not there or it is corrupted.
  14. This is a server setting that needs to be changed, not sure why it would only show up in ExamCenter though.
  15. in the mail_sentitems.tpl change line 78 to <td align="center"><?php echo substr($test->message, 0, 25); ?></td> that will show the first 25 characters of the string
  16. Good Place To Start: -> http://forum.phpvms.net/topic/2143-drop-down-menus/
  17. The example code to display the award image is in the template, you just need to uncomment it.
  18. Look in the main thread for RealSchedule. It has been thrown around quite a few times how to add the code to disable the bids on flights already bid on.
  19. Your syntax looks correct Bruce. Is there any error showing at all?
  20. @Mark I will have a release ready by the end of the week, maybe sooner. I just need to clear out the aca stuff.
  21. I think it is only stored in the database at this point. There is no display in the GUI.
  22. The basic start for adding the phpvms application functions and database access here -> http://forum.phpvms.net/topic/4445-php-variable-on-custom-page/
  23. I built a seperate status badge from the native phpVMS pilots badge. It is updated every 10 minutes by a cron job running on the server. It gets the online/offline, route, flight status, etc, from the acars data table on the site so it doesnt matter where they are flying, vatsim, ivao, offline. As long as they are connected to the acars client and the site their pilot status badge is updated. If they are not connected to the site via cars it takes the last flight data from their last pirep and displays some basic info, last flight number, date last seen, etc. There is a page with all of the active pilot's status badges here -> http://www.virtualaca.net/index.php/status And they are also located in each pilots profile like here -> http://www.virtualaca.net/index.php/profile/view/1 I have been debating with myself about releasing this in some way.....
  24. Try changing your sql syntax to: $sql = "SELECT * FROM ".TABLE_PREFIX."pilots ORDER BY totalpay LIMIT $count"; and also change your variable in your echo echo "Die PilotenID lautet: " . $row->pilotid . "<br>"; the assignment of; $this->set('pilotid', $row->pilotid); will only make the variable available in the template, and also only hold the last peice of data assigned to it through the foreach loop. You would want to assign the complete array to the variable and then break it down in your template. $this->set('pilotid', $res);
  25. Looks like a corrupted file on upload but this module has been exteneded by Tom, he has added a lot of new features that make it both more secure and more user friendly. the thread is here -> http://forum.phpvms.net/topic/3748-vaforum-2/
×
×
  • Create New...