Page 1 of 1

Problem with static-pages after permalink-structure change.

Posted: Sat Aug 25, 2007 8:23 am
by Hokey
Hi out there,

I changed the permalink-structure of my blog. Now I've got following problems:

Static pages
I can't reach my static pages. E.g. if you click on "R.I.P." in my blog then you just get the normal blog page instead of the static-page although the adress in the browser-navigation is correct.

Pictures
Second pictures aren't shown correctly. As you can see here the picture is shown in the preview but not in the extended article. Further when you click the pictures for a larger version the output of the lightbox-plugin shows the front-page of the blog and not the picture.

Maybe someone has a solution for this?
Thx,
Hokey

Re: Problem with static-pages after permalink-structure chan

Posted: Sat Aug 25, 2007 2:46 pm
by garvinhicking
Hi!

It would be important to know what exactly you changed.

If you enabled URL Rewriting, then the old "index.php?/..." links might no longer work, and you would need to use http://blog.blokey.de/pages/friedhof.html instead (and edit the staticpage for that new link).

Plus, you need to make sure that you don't have overlapping links, like you can't rename your "archives" permalikn to "pages" and still use "pages" for staticpages.

Your picture issue comes because you linked the image relatively. In your HTML code you use:

Code: Select all

<img src="uploads/koma.serendipityThumb.jpg" 
but you must use

Code: Select all

<img src="/uploads/koma.serendipityThumb.jpg" 
instead. Note the prepended slash.

Regards,
Garvin

Posted: Sat Aug 25, 2007 3:12 pm
by Hokey
Thank you Garvin! That helped, although I now have to add the slash to all broken image links... :? :wink: