Jump to content

No route passed


tkfeeny

Recommended Posts

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

Link to comment
Share on other sites

  • Administrators

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

post-198-0-01929000-1431219041_thumb.png

Link to comment
Share on other sites

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...