Jump to content

Recommended Posts

Posted

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 ? 

 

do.php?img=19



Best Regards,

 

 

  • Administrators
Posted

What happens if you switch back to the default crystal skin?

When hovering over the add bid button/wording, does the ID also show? .../schedules/addbid/?id=<some number here>

Posted (edited)

Did you do any edits, besides the css? I tested the hell out of that skin. I never got any no routes passed.  Revert back as ProAvia said. See if you get the error still.

Edited by flyalaska
Posted
3 hours ago, ProAvia said:

What happens if you switch back to the default crystal skin?

When hovering over the add bid button/wording, does the ID also show? .../schedules/addbid/?id=<some number here>

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 ?

 

do.php?img=13

  • Administrators
Posted

Did you edit any files in the Blue Ice version 2 download?

Look in blueIce skin, schedule_results.php file - post lines 54-73

Looking at the default blueIce skin schedule_results.php file, the Addbid function is correct.

Posted
21 hours ago, ProAvia said:

Did you edit any files in the Blue Ice version 2 download?

Look in blueIce skin, schedule_results.php file - post lines 54-73

Looking at the default blueIce skin schedule_results.php file, the Addbid function is correct.

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 ? 
 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...