Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by simpilot

  1. I just went to your site to see what the new error was but the clock script is still in place.
  2. Hey Ray, It is something that I do not believe will work in airmail. Unfortunatly there is no formating for the messages so the function will not find line breaks. I had started to completely recode this into keeping each message and reply in an individual data cell in the db so they can be manipulated easier, It is judt turning into more of a new version than an update and was not sure how many people would even be interested if they were to have to change the entire system......
  3. I think the clock generator script you have may be interfereing with it. Can you remove it and see if that allows the map to show? The error you posted is actually coming from: <!-- Clock Part 1 --> <script language="JavaScript"> // Anytime Anywhere Web Page Clock Generator // Clock Script Generated at // http://www.rainbow.arch.scriptmania.com/tools/clock function tS(){ x=new Date(tN().getUTCFullYear(),tN().getUTCMonth(),tN().getUTCDate(),tN().getUTCHours(),tN().getUTCMinutes(),tN().getUTCSeconds()); x.setTime(x.getTime()); return x; } function tN(){ return new Date(); } function lZ(x){ return (x>9)?x:'0'+x; } function tH(x){ if(x==0){ x=12; } return (x>12)?x-=12:x; } function dT(){ if(fr==0){ fr=1; document.write('<font color="#5890a8"><font size=1 face=Arial><b><span id="tP">'+eval(oT)+'</span></font></font></b>'); } document.getElementById('tP').innerHTML=eval(oT); setTimeout('dT()',1000); } function aP(x){ return (x>11)?'':''; } var fr=0,oT="lZ(tH(tS().getHours()))+':'+lZ(tS().getMinutes())+':'+lZ(tS().getSeconds())+aP(tS().getHours())"; </script> <!-- Clock Part 1 - Ends Here --> and <!-- Create Menu Settings: (Menu ID, Is Vertical, Show Timer, Hide Timer, On Click ('all' or 'lev2'), Right to Left, Horizontal Subs, Flush Left, Flush Top) --> <script type="text/javascript">qm_create(0,false,0,500,false,false,false,false,false);</script>
  4. 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?
  5. 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.
  6. 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.
  7. Look in the api docs -> http://forum.phpvms.net/page/index.html?record=16
  8. 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.
  9. 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?
  10. This may help you - http://forum.phpvms.net/topic/1317-request-contact-form-mod/
  11. I think your banner looks much better where it came from....
  12. 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
  13. 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....
  14. There are links for instructions and support included within the email you received the script in.
  15. The template file is not there or it is corrupted.
  16. This is a server setting that needs to be changed, not sure why it would only show up in ExamCenter though.
  17. 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
  18. Good Place To Start: -> http://forum.phpvms.net/topic/2143-drop-down-menus/
  19. The example code to display the award image is in the template, you just need to uncomment it.
  20. 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.
  21. Your syntax looks correct Bruce. Is there any error showing at all?
  22. @Mark I will have a release ready by the end of the week, maybe sooner. I just need to clear out the aca stuff.
  23. I think it is only stored in the database at this point. There is no display in the GUI.
  24. The basic start for adding the phpvms application functions and database access here -> http://forum.phpvms.net/topic/4445-php-variable-on-custom-page/
×
×
  • Create New...