I have a blog, embedded in a page, that keeps showing an error on the server logs that I can't seem to track down.
The error shows up as:
File does not exist:...httpdocs/serendipity/templates/stamping/{TEMPLATE_PATH}img:
then the referer shows as my blog page address.
Does anyone recognize this? I've checked all the file permissions, and they all seem ok. The blog works normally, and I haven't seen anything not working, so I can't figure out what this is coming from.
Thanks
Error showing up in server logs
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Error showing up in server logs
This should be coming from your CSS file.
A layout.css file of a s9y template is not meant to be emitted directly, you should use the serendipity.css.php wrapper for linking it into your layout.
Regards,
Garvin
A layout.css file of a s9y template is not meant to be emitted directly, you should use the serendipity.css.php wrapper for linking it into your layout.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
This would be easier if you tell me your URL, then I can see what exactly is wrong.
You just cannot link to templates/blah/style.css in your embedded page, but you need to link to /serendipity.css.php.
Regards,
Garvin
You just cannot link to templates/blah/style.css in your embedded page, but you need to link to /serendipity.css.php.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Here's the link:
http://www.nhstampingmemories.com/seren ... ngblog.php
http://www.nhstampingmemories.com/seren ... ngblog.php
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
In your page you have this code:
Change it to:
Regards,
Garvin
Code: Select all
<link href="templates/stamping/style.css" rel="stylesheet" type="text/css" media="screen">
Code: Select all
<link href="/serendipity/serendipity.css.php" rel="stylesheet" type="text/css" media="screen">
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/