Jump to content

garcez

Members
  • Posts

    21
  • Joined

  • Last visited

Posts posted by garcez

  1. This Registration Error started for no reason whatsoever, no one has done anything on the site this year.

    Does anyone know how to solve and the reason for this error?

     

    Quote

    Registration Error

    Cannot add or update a child row: a foreign key constraint fails (`iflyvirt_main`.`phpvms_pilots`, CONSTRAINT `phpvms_pilots_ibfk_1` FOREIGN KEY (`code`) REFERENCES `phpvms_airlines` (`code`) ON UPDATE CASCADE)

     

  2. 20 minutes ago, web541 said:

    You'd have to adjust the schedule_results.php file and add some lines of code there, maybe before this line

    https://github.com/DavidJClark/phpvms_5.5.x/blob/master/core/templates/schedule_results.php#L18

    For example:

     

    
    <?php
    $allbids = SchedulesData::getAllBids();
    foreach($allbids as $bid) {
      if ($bid->aircraft == $schedule->aircraft) {
      	continue;
      }
    }
    ?>

    That will hide the schedule completely if the aircraft has been booked already, if you want to show the schedule but not show the "Add to bid" button then you will need to add that further down in the file and adjust the code here

    https://github.com/DavidJClark/phpvms_5.5.x/blob/master/core/templates/schedule_results.php#L43

     

    Thank you I will try and return.

  3. Charter flights are always "delayed", as Schedules flights are normal in flight status. What should I do for charter flights to have their normal status?

     

    <?php
                              $schedule = SchedulesData::getScheduleByFlight($pirep->code,$pirep->flightnum);
                              $fltime = explode(".", $schedule->flighttime);
                              $minstar = substr($fltime[1],0,1);
                              $minstarmin = substr($fltime[1],1,2);
                              $flmin = $minstar * 10;
                              $flhou = $fltime[0] * 60;
                              $flminu = $flhou + $flmin + $minstarmin;
                            
                              $actfltime = explode(".", $pirep->flighttime);
                              $actminstar = substr($actfltime[1],0,1);
                              $actminstarmin = substr($actfltime[1],1,2);
                              $actflmin = $actminstar * 10;
                              $actflhou = $actfltime[0] * 60;
                              $actflminu = $actflhou + $actflmin + $actminstarmin;
                            
                              if(($flminu - 20) > $actflminu) {
                              echo "<font color='Blue'><b>Early</b></font>    ";
                              } elseif (($flminu + 15) < $actflminu) {
                              echo "<font color='#ff0000'><b>Delayed</b></font>    ";
                              } else {
                              echo "<font color='#090'><b>On Time</b></font>    "; }
                              ?>

     

  4. I installed the new smart CARS 2 Web Script today.

     

    When installing it, this error appeared on the

     

    Quote

    Warning: Invalid argument supplied for foreach() in /home/iflyvirt/public_html/iCrew/lib/skins/icrewv4/trackflight/flightinfo.php on line 528

     

    Quote

    <div class="row">
        <div class="col-md-12">
            <div class="block">
                <div class="block-title">
                    <h3><i class="gi gi-notes_2"></i> ACARS Report <?php echo $acarsdata->flightnum?></h3>
                </div>
                
                <table class="table table-responsive" width="100%" cellspacing="0" style="font-size:13px">
                 <tr>
                 <td>Time</td>
                 <td>Altitude</td>
                 <td>Ground Speed</td>
                 <td>Latitude</td>
                 <td>Longitude</td>
                 </tr>
                <?php 
                foreach($posreports as $thepositions)
                { 
                ?>
                <tr>
                <td><?php echo $thepositions->positiontime; ?></td>
                <td><?php echo $thepositions->altitude; ?></td>
                <td><?php echo $thepositions->groundspeed; ?></td>
                <td><?php echo $thepositions->latitude; ?></td>
                <td><?php echo $thepositions->longitude; ?></td>
                </tr>
                <?php
                }
                ?>
                </table>
                
            </div>
        </div>
    </div>

     

    Este erro foi solucionado com a ajuda do gio1961

     

    Quote

    *******

    foreach($posreports as $thepositions)

     

    ****

    To:

     

    if($posreports)
    foreach($posreports as $thepositions)

     

    However, the coordinates do not appear in the ACARS Flight Tracker, the navdata table is empty. Another error that occurs is that when sending Pirep it accuses "PIREP FILING ERROR" even with this error Pirep is sent to the VA website. Another mistake is that the flight hangs on Live Flights. In other words, it is not automatically deleted from the acarsdata when the Pirep is finished and sent.

     

    With the old smartCARS 2 Web Script Files it worked perfectly. The question is, what is the reason it is no longer working with the new smartCARS 2 Web Script Files?

     

    Thanks in advance for any help.

    smartCARS_web_script_files-old.zip smartCARS_web_script_files_new.zip

  5. 2 minutes ago, gio1961 said:

     

    *******

    foreach($posreports as $thepositions)

     

    ****

    To:

     

    if($posreports)
    foreach($posreports as $thepositions)

     

    Would be like this?

     

    Quote

    <div class="row">
        <div class="col-md-12">
            <div class="block">
                <div class="block-title">
                    <h3><i class="gi gi-notes_2"></i> ACARS Report <?php echo $acarsdata->flightnum?></h3>
                </div>
                
                <table class="table table-responsive" width="100%" cellspacing="0" style="font-size:13px">
                 <tr>
                 <td>Time</td>
                 <td>Altitude</td>
                 <td>Ground Speed</td>
                 <td>Latitude</td>
                 <td>Longitude</td>
                 </tr>
                <?php 
                if($posreports)
                foreach($posreports as $thepositions)
                { 
                ?>
                <tr>
                <td><?php echo $thepositions->positiontime; ?></td>
                <td><?php echo $thepositions->altitude; ?></td>
                <td><?php echo $thepositions->groundspeed; ?></td>
                <td><?php echo $thepositions->latitude; ?></td>
                <td><?php echo $thepositions->longitude; ?></td>
                </tr>
                <?php
                }
                ?>
                </table>
                
            </div>
        </div>
    </div>

     

  6. I have this problem after updating smartCARS 2 Web Script Files. 

     

    Quote

    Warning: Invalid argument supplied for foreach() in /home/iflyvirt/public_html/iCrew/lib/skins/icrewv4/trackflight/flightinfo.php on line 528

     

    Please I need help.

     

    Thanks.

     

    Quote

    <div class="row">
        <div class="col-md-12">
            <div class="block">
                <div class="block-title">
                    <h3><i class="gi gi-notes_2"></i> ACARS Report <?php echo $acarsdata->flightnum?></h3>
                </div>
                
                <table class="table table-responsive" width="100%" cellspacing="0" style="font-size:13px">
                 <tr>
                 <td>Time</td>
                 <td>Altitude</td>
                 <td>Ground Speed</td>
                 <td>Latitude</td>
                 <td>Longitude</td>
                 </tr>
                <?php 
                foreach($posreports as $thepositions)
                { 
                ?>
                <tr>
                <td><?php echo $thepositions->positiontime; ?></td>
                <td><?php echo $thepositions->altitude; ?></td>
                <td><?php echo $thepositions->groundspeed; ?></td>
                <td><?php echo $thepositions->latitude; ?></td>
                <td><?php echo $thepositions->longitude; ?></td>
                </tr>
                <?php
                }
                ?>
                </table>
                
            </div>
        </div>
    </div>

     

×
×
  • Create New...