not going to help?

T

themasterrocker

Guest
I got given a shoutbox in PHP and JS and other stuff.(ive uploaded all the files in the .rar file) i can give you the .rar file which ill attach. i need to get it to preview so in my head i put ::

Code:
<script src="yshout/js/jquery.js" type="text/javascript></script>
<script src="yshout/js/yshout.js" type="text/javascript"></script>
<link rel="stylesheet" href="yshout/example/css/light.yshout.css" />
<script type="text/javascript">
new YShout({
yPath: 'http://powertunezfm.pcriot.com/yshout5/yshout5/',
log: 1
});
</script>
Well it doesnt work. ive tried changing this to:

Code:
<script src="yshout/js/jquery.js" type="text/javascript></script>
<script src="yshout/js/yshout.js" type="text/javascript"></script>
<link rel="stylesheet" href="yshout/example/css/light.yshout.css" />
<script type="text/javascript">
new YShout({
yPath="http://powertunezfm.pcriot.com/yshout5/yshout5/",
log: 1
});
</script>
And it still doesnt work. any ideas? im just stumped on how to get it work.

Thanks In Advance
MY WEBSITE DOES WORK!!
 

Attachments

  • yshout5.rar
    319.1 KB · Views: 12

mattura

Member
Messages
570
Reaction score
2
Points
18
Are all the necessary files uploaded to the "yshout/js/" folder (relative to where this script is located?

I don't know much about jQuery...
But I'm sure there are some good tutorials/forums where you can get help.
 
T

themasterrocker

Guest
yeah i have, everything is where it should be.
My friend doesn't know what it is. i mean on firefox cuz i got firebug it says yshout is not defined

And because i got the second rule applied atm it says: missing property id
Edit:
hello people? i still need help (Y) .... im not quiet sure what it is. Any ideas?
The shoutbox is made by a company called Yshout. and i've followed their instructions to get on the page.

and i just checked my files and its an PHP and Ajax shoutbox =]
 
Last edited by a moderator:

mattura

Member
Messages
570
Reaction score
2
Points
18
Is it definitely picking up the script "yshout/js/jquery.js"?
You might llok at the source and check that the class YShout is defined. You can't have a 'new YShout' unless there is a class defined for it.
Also, is it meant to have those curly brackets inside the parentheses?
 
T

themasterrocker

Guest
i don't know. im talking to one my friends about it and hes come up with this code which im going to try when i get my cPannel sorted.
Code:
<script src="yshout5/yshout5/js/jquery.js" type="text/javascript"></script>
<script src="yshout5/yshout5/js/yshout.js" type="text/javascript"></script>
<link rel="stylesheet" href="yshout5/yshout5/example/css/light.yshout.css" />
<script type="text/javascript">
	new YShout({
	   yPath: 'http://powertunezfm.pcriot.com/yshout5/yshout5/',
	   log: 1
	});
<script type="text/javascript">
 
Top