Jump to content

BaderNET

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by BaderNET

  1. 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
  2. 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.
  3. 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.
  4. 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 ?
  5. 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 ?
  6. 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,
  7. 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.
  8. I would like to thank you for helping me, I've solved the problem
  9. 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 '=' ===== =====
  10. i back to default template map not working ?!
  11. my we url : www.kuwaitairways-va.org/index.php
  12. BaderNET

    blueIce

    ok thanks for your help ..
  13. First I would like to thank you for this wonderful Skin, It has been installed successfully on my Va but i have a some of issue .. ?! - i can't see any pilot flying or details on Live flight or Live map ?? ( I am using simpilot 5.5.2 Version ) And using Kacars ?! Any help ?!
  14. BaderNET

    blueIce

    Yes still not showing ...
  15. BaderNET

    blueIce

    I back to the default template but nothing change ?
  16. BaderNET

    blueIce

    First I would like to thank you for this wonderful Skin, It has been installed successfully on my Va but i have a some of issue .. ?! - i can't see any pilot flying or details on Live flight or Live map ?? ( I am using simpilot 5.5.2 Version ) And using Kacars ?! Any help ?!
  17. This errors in logs ??? ===== Time: 04.30.17 21:36:54 Backtrace: DB::write_debug > DB::query > Auth::update_session > Auth::ProcessLogin > Login->ProcessLogin > Login->login > Login->index > call_user_func_array > MainController::RunAllActions Query: UPDATE phpvms_sessions SET `pilotid`=2007, `logintime`=NOW(), `ipaddress`='80.184.89.159' WHERE `id`= Error: (1064) - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3
  18. Yes i can't login this Msg come after i am tying to login ... ?!
  19. Hi, I have an issue with the members trying to login in my VA web this msg appear after login : You must be logged in to access this feature! any suggestion ?! P.I i have used two Versions of phpvms v2.1.934 and now i am using Version simpilot 5.5.2 The problem appears in both versions since i have transferred my Domain to a new Server ...
  20. Hi any new download link for the skin ???
×
×
  • Create New...