Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by simpilot

  1. Noob question here !

    Where do I actually add the two keys that we get from Google's recaptcha in PHPVMS 5.5 ?

    Just copy the lines from the app.config.php file and place them in your local.config.php file then update your keys.

    /* Keys for recaptcha, you can change these if you want to your own but it's a global key so it should just work */
    Config::Set('RECAPTCHA_PUBLIC_KEY', '6LcklAsAAAAAAJqmghmMPOACeJrAxW3sJulSboxx');
    Config::Set('RECAPTCHA_PRIVATE_KEY', '6LcklAsAAAAAAMeQy5ZBoDu8JOMTP-UL7ek1GedO');
    

  2. When the main part of the site was updated to allow skins to automatically check the skin folder and then go to the default if the template is not there, the admin side was not updated. You would need to change the coding in the index file for the admin side mainly to operate like the main site.

  3. You can send the post to the moderators using the "Report To Moderators" button on the topic and state what the reason you want it deleted. A moderator will look at it the next time one is on. I will say that I usually do not delete topics or posts unless they are inflammatory, illegal, or another truly valid reason. I myself have a couple of posts that I would rather not admit to posting but they are there, think before we speak, or in this case type.

  4. Simpilot,

    How should I enter that on my website to make that flights completed must be ereased from the map?

    Thanks for your help ;)

    You can include it in a controller, or make your own (preferred) so it does not get overwritten in an update. If you are just trying to make sure pilots do not show on the map after a flight is completed you could just set the config for ACARS_LIVE_TIME to a minimum, something like 3 minutes. This will cause any flight that has not been updated in the last 3 minutes be dropped from the display.

    # ACARS options
    # Minutes, flights to show on the ACARS
    # Default is 720 minutes (12 hours)
    Config::Set('ACARS_LIVE_TIME', 720);
    

    • Like 1
  5. I updated to 5.5 and now there is no selection to change the skin?

    I would try uploading the associated files again. I just checked my development install and the drop down is there without issue. That is an item that has remained unchanged at this point as well.

  6. On my website how can I show in this table the stats of the best landings of the month?

    <div class="art-postcontent art-postcontent-0 clearfix"><div class="art-content-layout-wrapper layout-item-0">
    <div class="art-content-layout layout-item-1">
    <div class="art-content-layout-row">
    <div class="art-layout-cell layout-item-2" style="width: 100%" >
    <div class="art-blockheader">
    <h3 class="t">Mejores tomas del mes</h3>
    </div>
    <p style="color: rgb(46, 59, 62);">
    Here must be the table/graph </p>
    </div>
    </div>
    

    The information is in the thread on the second page.

  7. It looks like the module must overwrite the schedulesData.class.php file :(

    Check to see if the file was actually overwritten with the modified file, if not go ahead and let your FTP client overwrite the existing file.

    Remember that when/if an update is ever performed on the system this file will most likely be overwritten and the modifications will have to be made again.

  8. The native email system is actually set up to send to multiple recipients, you just have to supply the addresses in array form.

    From util.class.php - start line 293

    //allowing function to send to an array of email addresses, not just one
    if(is_array($email)) {
       foreach($email as $emailrec) {
        $mail->AddAddress($emailrec);
    		 }
       }
    

  9. Notice: The template file "" doesn't exist in/home4/hva2014/public_html/core/classes/TemplateSet.class.php on line 248

    Any suggestions? Get this whenever I try to access the Admin portion of the exam center

    What are you using as a link? I would normally say that the files are not there and need to be uploaded but it seems odd that it is looking for template ""

×
×
  • Create New...