actually, I didnt even need you to paste what you are presently doing.
Here you are:
http://bigbox.village-idiot.org/
Thats the front page
And now we have:
http://bigbox.village-idiot.org/archives/category/uncategorized
Thats inside a category.
What am I doing that you are not?
Instead of using this inside the post:
<script>clip = 54;</script>
<script src="/embed.js"></script>
which is using a relative path to embed.js
I am using this:
<script>clip = 54;</script>
<script src="http://bigbox.village-idiot.org/embed.js"></script>
Which is using the absolute url to embed.js
You can paypal anytime :)
As I stated above. The path to files is relative to where the browser is.
For instance, in my example above, if I had used the relative path to embed.js the server would expect it to be here:
http://bigbox.village-idiot.org/archives/category/embed.js
Its not. So you use the full url.