Unable to find class

I have made this java applet and signed it and everything. Now I am trying to put it on my website but it cant find the class when I load it? It works fine when I put thet html file with the applet call in the same folder but when they are in different folders it does not work.

<applet

code="./Files/Applet/shiznatix/shiznatix.class"

archive="./Files/Applet/shiznatix.jar"

codebase="./Files/Applet/"

width="500"

height="500">

</applet>

Those files exist, this I know for sure. I added the codebase thinking that might work but to no avail. The error console says it can not find the class shiznatix/shiznatix.class but when I put that html in a file in the Applet folder and run it (without the ./Files/Applet/ stuff) it works perfectly fine. How can I make it find the stupid thing?

[976 byte] By [shiznatixa] at [2007-11-26 16:42:49]
# 1

Try this, assuming your main "shiznatix" class is in a package called "shiznatix"

<applet

code="shiznatix.shiznatix"

archive="shiznatix.jar"

codebase="./Files/Applet/"

width="500"

height="500">

</applet>

itchyscratchya at 2007-7-8 23:09:54 > top of Java-index,Desktop,Core GUI APIs...
# 2
that worked thank you
shiznatixa at 2007-7-8 23:09:54 > top of Java-index,Desktop,Core GUI APIs...