greeham Posted January 2, 2011 Report Share Posted January 2, 2011 Hi All, I found a few threads with this but tried what was suggested to no avail. <?php ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><?php echo $page_title; ?></title> <?php echo $page_htmlhead; ?> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="all" /> <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/geekia/css/style.css" type="text/css" media="screen" /> <link href="css/style.css" rel="stylesheet" type="text/css" /> <script src="<?php echo SITE_URL?>/lib/skins/geekia/js/jquery.js" type="text/javascript"></script> <script src="<?php echo SITE_URL?>/lib/skins/geekia/js/jquery-1.3.2.min.js" type="text/javascript"></script> <script src="<?php echo SITE_URL?>/lib/skins/geekia/js/slide.js" type="text/javascript"></script> <script src="<?php echo SITE_URL?>/lib/skins/geekia/js/s3Slider.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { $('#s3slider').s3Slider({ timeOut: 9000 }); }); </script> </head> <body> <?php echo $page_htmlreq; ?> <!-- Wrapper Starts --> <div id="wrapper"> That's how the code for my layout.tpl starts but it still gives the no route passed error when adding to bid. Any help appreciated. Many thanks, Graham Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted January 10, 2011 Report Share Posted January 10, 2011 Hi Graham. I messed with that until I was blue in the face a a few fist fulls less of hair and never got it solved. I moved code around and could make 1 thing work and it broke another. either way I went, it never worked right. I hope you can find a answer to the problem. Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted February 18, 2011 Report Share Posted February 18, 2011 Ok guys. I know this one has been rehashed again and again and yet again and many people including me have struck out with fixing this issue.....Until just now. I started removing stuff from the header of my layout.tpl file and putting stuff back in until I no longer got the "No Route Passed" error. Here is what I removed. <!-- jQuery - the core --> <script src="<?php echo SITE_URL?>/lib/skins/brilliancev1/js/jquery.js" type="text/javascript"></script> <script src="<?php echo SITE_URL?>/lib/skins/brilliancev1/js/jquery-1.3.2.min.js" type="text/javascript"></script> Ironically enough, so far everything on site works just fine without it. How is this possible? I know The default Crystal skin does not use it so I figured what the hell and gave it a try and now no more error. I am curious if anyone can shed some light on this one for me. Ray Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted February 18, 2011 Moderators Report Share Posted February 18, 2011 Doesn't Nabeel include the jquery library at the start? Quote Link to comment Share on other sites More sharing options...
Guest lorathon Posted February 18, 2011 Report Share Posted February 18, 2011 Yes it is in the core_htmlhead.tpl <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js');?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/phpvms.js');?>"></script> Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted February 19, 2011 Report Share Posted February 19, 2011 Ahh then that would be the long awaited answer to that problem with this skin then. Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted February 19, 2011 Moderators Report Share Posted February 19, 2011 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.