Running Javascript

liunx

Guest
I have a standard wordpress install (php based) and a standard plugin for it which is javascript. The file in question works fine on a local apache server but fails to work from my hosted site. The javascript just appears to be ignored. I have no idea how to make it work.<br /><br />Here is the top of the php file that is causing the problem. I've put in bold the script lines. The slvBanner does not appear to get called. Even just putting in a straight echo in the function does not produce any output. Any tips appreciated.<br /><br /><br /><?php<br />/* Don't remove this line. */<br />require('./wp-blog-header.php');<br />?><br /><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br /><html xmlns="http://www.w3.org/1999/xhtml"><br /><br /><head profile="http://gmpg.org/xfn/1"><br /><title><?php bloginfo('name');<br /> ?><?php wp_title(); ?></title><br /><br /><meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" /><br /><meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --><br /><br /><style type="text/css" media="screen"><br />@import url( <?php echo get_settings('siteurl'); ?>/wp-layout.css );<br /></style><br /><br /><link rel="stylesheet" type="text/css" media="print" href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php echo get_settings('siteurl'); ?>/print.css" /><br /><link rel="alternate" type="application/rss+xml" title="RSS 2.0" href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php bloginfo('rss2_url'); ?>" /><br /><link rel="alternate" type="text/xml" title="RSS .92" href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php bloginfo('rss_url'); ?>" /><br /><link rel="alternate" type="application/atom+xml" title="Atom 0.3" href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php bloginfo('atom_url'); ?>" /><br /><br /><link rel="pingback" href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php bloginfo('pingback_url'); ?>" /><br /> <?php wp_get_archives('type=monthly&format=link'); ?><br /><?php //comments_popup_script(); // off by default ?><br /><?php wp_head(); ?><br /><b> <script type="text/javascript" src=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php bloginfo('url'); ?>/wp-content/plugins/wp-last-visit.php?type=js"><br /></script></b><br /></head><br /><br /><body><br /><div id="rap"><br /><h1 id="header"><a href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"<?php bloginfo('url'); ?>"><?php bloginfo('name'); if(isset($cat)) {<br /> echo " " ;echo get_the_category_by_ID($cat);<br />} ?></a></h1><br /><br /><div id="content"><br /><b><script type="text/javascript">slvBanner();</script></b><!--content-->
 
Back
Top