Jump to content

BaderNET

Members
  • Posts

    31
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    KUWAIT

Recent Profile Visitors

2573 profile views

BaderNET's Achievements

Newbie

Newbie (1/14)

  • Conversation Starter Rare
  • Week One Done
  • One Month Later
  • One Year In Rare

Recent Badges

1

Reputation

  1. Hi There, I want some help installing phpvms7, I am currently using phpvms5.5.2.72 and I want to go ahead and install phpvms7, but I am facing some problems when installing. I uploaded the phpvms7 files to a new folder, and when installed, this error appeared I attached a pic Note: I am using phpvms 5.5.2.72 and I need to change to phpvms7 with the old date I have it on phpvms5.5.2.72 Server Information cPanel Version 110.0 (build 24) Apache Version2.4.58 MySQL Version10.6.17-MariaDB PHP Version 8.1 If anyone can help me I will be thankful to him Best Regards
  2. Hi @ProAvia , I am using phpvms Version simpilot 5.5.2 how to upgrade to phpVMS 5.5.2.72 ?? And this my hosting info? I am not upgrade the php to php7.0 because I like my skin
  3. BaderNET

    BlueIce V2

    I installed the skin and it's working fine thanks guys for the skin update to a new version. 👌 http://www.qatar-va.org/ http://kuwaitairways-va.org Big thanks.
  4. I installed the skin and it's working fine thanks guys for the skin update to a new version. 👌 http://www.emirates-va.net/index.php/ Big thanks.
  5. No only change the skin color ?? This the core/templates/schedule_results.php <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php if(!$schedule_list) { echo '<p align="center">No routes have been found!</p>'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th>Flight Info</th> <th>Options</th> </tr> </thead> <tbody> <?php foreach($schedule_list as $schedule) { ?> <tr> <td> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><?php echo $schedule->code . $schedule->flightnum?> <?php echo '('.$schedule->depicao.' - '.$schedule->arricao.')'?> </a> <br /> <strong>Departure: </strong><?php echo $schedule->deptime;?> &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>Arrival: </strong><?php echo $schedule->arrtime;?><br /> <strong>Equipment: </strong><?php echo $schedule->aircraft; ?> (<?php echo $schedule->registration;?>) <strong>Distance: </strong><?php echo $schedule->distance . Config::Get('UNITS');?> <br /> <strong>Days Flown: </strong><?php echo Util::GetDaysCompact($schedule->daysofweek); ?><br /> <?php echo ($schedule->route=='') ? '' : '<strong>Route: </strong>'.$schedule->route.'<br />' ?> <?php echo ($schedule->notes=='') ? '' : '<strong>Notes: </strong>'.html_entity_decode($schedule->notes).'<br />' ?> <?php # Note: this will only show if the above code to # skip the schedule is commented out if($schedule->bidid != 0) { echo 'This route has been bid on'; } ?> </td> <td nowrap> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>">View Details</a><br /> <a href="<?php echo url('/schedules/brief/'.$schedule->id);?>">Pilot Brief</a><br /> <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $schedule->bidid != 0) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid/?id='.$schedule->id);?>">Add to Bid</a> <?php } else { if(Auth::LoggedIn()) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } } ?> </td> </tr> <?php /* END OF ONE TABLE ROW */ } ?> </tbody> </table> <hr> And this the skin /skins/blueIce/schedule_results.php <section class="page-contents"> <div class="container"> <br /> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="<?php echo SITE_URL ?>/index.php">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Crew Center</li> <li class="breadcrumb-item active" aria-current="page">Schedules</li> </ol> </nav> <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php if(!$schedule_list) { echo '<p align="center">No routes have been found!</p>'; return; } ?> <script type="text/javascript"> $(document).ready(function() { $('#schedules').DataTable(); } ); </script> <table id="schedules" width="100%" border="0" cellspacing="0" cellpadding="0" class="blueIce_table"> <thead> <tr> <th>Flight Info</th> <th>Options</th> </tr> </thead> <tbody> <?php foreach($schedule_list as $schedule) { ?> <tr> <td> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><?php echo $schedule->code . $schedule->flightnum?> <?php echo '('.$schedule->depicao.' - '.$schedule->arricao.')'?> </a> <br /> <strong>Departure: </strong><?php echo $schedule->deptime;?> &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>Arrival: </strong><?php echo $schedule->arrtime;?><br /> <strong>Equipment: </strong><?php echo $schedule->aircraft; ?> (<?php echo $schedule->registration;?>) <strong>Distance: </strong><?php echo $schedule->distance . Config::Get('UNITS');?> <br /> <strong>Days Flown: </strong><?php echo Util::GetDaysCompact($schedule->daysofweek); ?><br /> <?php echo ($schedule->route=='') ? '' : '<strong>Route: </strong>'.$schedule->route.'<br />' ?> <?php echo ($schedule->notes=='') ? '' : '<strong>Notes: </strong>'.html_entity_decode($schedule->notes).'<br />' ?> <?php # Note: this will only show if the above code to # skip the schedule is commented out if($schedule->bidid != 0) { echo 'This route has been bid on'; } ?> </td> <td nowrap> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><span class="badge badge-secondary"><i class="fas fa-search"></i> View Details</a><br /> <a href="<?php echo url('/schedules/brief/'.$schedule->id);?>"><span class="badge badge-secondary"><i class="fas fa-user-tie"></i> Pilot Brief</a><br /> <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $schedule->bidid != 0) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid/?id='.$schedule->id);?>"><span class="badge badge-secondary"><i class="fas fa-plus-square"></i> Add to Bid</a> <?php } else { if(Auth::LoggedIn()) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>"><span class="badge badge-secondary"><i class="fas fa-plus-square"></i> Add to Bid</a> <?php } } ?> </td> </tr> <?php /* END OF ONE TABLE ROW */ } ?> </tbody> </table> <hr> </div> </section> What do u think ?
  6. I try to back to a default skin but it's seem nothing change?? And when i over the bid button this what i get ?
  7. Hi, I'am use phpcvms Version simpilot 5.5.2 And skin : blueIce v2.0 When i try to book flight and add to bids i have this issue : No route passed any help to fix it ? Best Regards,
  8. Thanks, FlyAlaska. Can please tell me how to change the all blue buttons ?? I upload the images And i see folder name slider ?? this skin have header slider ?? if have how it's work ?? And my last thing any update news about the blueIce skin for new Version ?? Best Regards, EDIT: Moderator moved to Skinning forum as this relates to changing something in this skin, not a new skin release.
  9. I would like to thank you for helping me, I've solved the problem
  10. That what i get into logs file... ?! ===== Time: 05.10.17 10:38:06 ===== Time: 05.10.17 10:38:06 Backtrace: DB::write_debug > DB::get_results > ACARSData::GetACARSData > ACARS->data > call_user_func_array > MainController::RunAllActions Query: SELECT a.*, c.name as aircraftname, c.registration, p.code, p.pilotid as pilotid, p.firstname, p.lastname, dep.name as depname, dep.lat AS deplat, dep.lng AS deplng, arr.name as arrname, arr.lat AS arrlat, arr.lng AS arrlng FROM phpvms_acarsdata a LEFT JOIN phpvms_aircraft c ON a.`aircraft`= c.`registration` LEFT JOIN phpvms_pilots p ON a.`pilotid`= p.`pilotid` LEFT JOIN phpvms_airports AS dep ON dep.icao = a.depicao LEFT JOIN phpvms_airports AS arr ON arr.icao = a.arricao WHERE DATE_SUB(NOW(), INTERVAL 720 MINUTE) <= a.`lastupdate` Error: (1267) - Illegal mix of collations (latin1_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation '=' ===== =====
  11. i back to default template map not working ?!
×
×
  • Create New...