tkfeeny Posted May 9, 2015 Report Share Posted May 9, 2015 Good day All i try all solved to fix this problem but don't work unfortunately i know this problem with ( jQuery) but i want it. i use jquery v2 all versions and 1.11x versions .. all versions don't solved this problem! and i try to change (Schedules.php) command on (core/modules/Schedules): public function addbid() { if(!Auth::LoggedIn()) return; $routeid = $this->get->id; if($routeid == '') { echo 'No route passed'; return; } TO public function addbid($routeid = ''){ if(!Auth::LoggedIn()) return; /* $routeid = $this->get->id; */ if($routeid == '') { echo 'No route passed'; return; } & (schedule_details.tpl) in the skin path: <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>"><button type="button">Book Flight</button></a> TO <a href="<?php echo url('/schedules/addbid/'.$route->id);?>">Add to bid (new)</a><br /> and not out for result! ,, how can i fix this problem please my website is> www.nasair-va.org Test member: e-mail: flynas@nasair-va.org Pass: 123123 thank you Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted May 10, 2015 Administrators Report Share Posted May 10, 2015 You have conflicts between the bootstrap and phpvms scripts, two different versions of jquery that you are loading, and a few other things. That page in particular is showing an error right away in the phpvms.js file (image attached). Take a look at the changes made to the different javascript functions here -> https://github.com/D...rk/phpvms_5.5.x Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.