Jump to content

mseiwald

Members
  • Posts

    435
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by mseiwald

  1. Hello guys,

    all phpvms modules and skins on my site http://www.crazycreatives.com will be on sale from today until december 24th.

    To receive -20% discount on all items please use the following discount code during checkout: XMAS2018CCR

    This code can be used as often as you wish until december 24th.

    I also want to take the chance to wish all of you happy holidays and thank you very much for your continued support.

    Looking forward to 2019 with lots of new phpvms stuff to come.

    On a side note since some of you contacted me about having the problem that you cannot purchase things via PayPal in certain countries I have added the option to pay via wire transfer in my shop. However please be aware that if you choose that option the downloads will become available only after the transfer has been completed which will likely take a couple of days.

    • Like 1
  2. I had a look at the module now and you were right its actually in the module where you commented out this:

    # Show the routes. Remote this to not show them.
    
    // $schedules = SchedulesData::getSchedules();
    

    a bit below is this:

    foreach($schedules as $key => $s) {
    

    and the if statement needs to go there like:

    if($schedules)
    foreach($schedules as $key => $s) {
    

  3. Hello Michael,

    support related questions only here please:

    https://www.crazycreatives.com/forum

    There are a couple of conditions that have to be met in order for the flightphase change to Landed and a Landingrate is recorded.

    Those are as follows:

    - During touchdown the player is not in Slew Mode

    - Once during the flight (usually after takeoff) the Vertical Speed must be 50ft/min or more

    - The flight was reaching a minimum altitude of 2000ft above the ground

    Also the landingrate field resets if after a landingrate was recorded the aircraft climbs to 3000ft again.

    Further support questions post please at the link above. I want to keep track of reported errors and want them all collected at one single place.

    So in The Future i will here only reply to General Questions regarding the client if i read them (as i'm not here in the forums regularly).

    • Like 1
  4. Hello guys,

    since cACARS was discontinued a long time has passed and i still got lot of requests for it.

    As i found the coding of cACARS was not up to todays standards i have decided to code a new client from scratch and after several weeks of work and testing CCFTracker Free has now been released.

    At the moment there is only the Free version available. It is fully functional and has all the free features included and working.

    A payware version with more features and customization to appears in VA colors and logo, own client name and icon will be available soon and announced seperately in the paid services forum.

    I will support the free client only in our forum at http://www.crazycreatives.com/forum

    Feedback over there is very welcome to help improve the client.

    You can download the client and module from here:

    https://www.crazycreatives.com/ccftracker-free/

    Enjoy!

    best regards

    Manuel

    • Like 3
  5. Hello Ken,

    i have sent you a mail but i'm posting it here now as well.

    If you change the permissions of the /DownloadCenter/Images folder to 755 it should work.

    I didnt mention it in the readme file because at none of the VAs where i have tested the module we had to change permissions. So thats why i didnt think of it when writing the instructions.

    Please send me a mail if after changing the permissions it still doesnt work.

  6. Hello guys,

    there will be a free update for all customers of my Flight Position Tracker module soon which will finally store the flown flight path with the pirep so that you can view your pilots flown paths on the pirep map.

    It will now also delete recent positions from the position report table immediately when the pirep is filed to prevent seeing the old track on the map if a pilot flies the same flight twice on the same day.

    To test this new features i need a couple of VAs who must currently own my Flight Position Tracker module and are willing to try this new feature on their site.

    Since its a Beta Test you have to be aware that there could still be some bugs with the code.

    To participate in the test and receive the updated files along with upgrade instructions please send me a message via the contact form on my site at http://www.crazycreatives.com

    Thank You.

  7. Oh come on this is a very simple request no need for payware stuff or manual reject nonsense.

    In your schedule_results.tpl use

    $pid = Auth::$userinfo->pilotid;
    $sql = "SELECT arricao FROM ".TABLE_PREFIX."pireps WHERE pilotid = '$pid' ORDER BY submitdate DESC LIMIT 1";
    $myloc = DB::get_row($sql);
    
    if($myloc && $myloc->arricao != $route->depicao)
    { continue; }

    Or better would be open PIREPData.class.php and add a function in there like

    public function mylastlocation($pilotid)
    {
    $sql = "SELECT arricao FROM ".TABLE_PREFIX."pireps WHERE pilotid = '$pilotid' ORDER BY submitdate DESC LIMIT 1";
    return DB::get_row($sql);
    }

    and then in schedule_results.tpl use

    $myloc = PIREPData::mylastlocation(Auth::$userinfo->pilotid);
    
    if($myloc && $myloc->arricao != $route->depicao)
    { continue; }

×
×
  • Create New...