PhotoPlog

PhotoPlog (http://www.photoplog.com/forum/index.php)
-   Troubleshooting & Problems (http://www.photoplog.com/forum/forumdisplay.php?f=6)
-   -   problem with photoplog index page (http://www.photoplog.com/forum/showthread.php?t=44)

butty 01-27-2006 09:05 AM

problem with photoplog index page
 
1 Attachment(s)
i have a problem with my photoplog index page. basically the vinyl search box i have (see attached pic) the images for the corners are missing. ive right clicked and gone to find where its looking for them and its looking at http://www.mysite.com/forum/forum/images. when it should be looking at http://www.mysite.com/forum/images

any ideas anyone? it only happens on the photoplog index page on my forum index page the images are fine and looking in the right place

any help appreciated. cheers :)

Morgan 01-29-2006 04:50 PM

The corners look to be using background attributes in the TD tags. PhotoPlog doesn't support that attribute as it's depreciated, so you can either replace things like:
Code:

<td width="15" background="/forum/elmer/corners/left_extend.gif" height="60">
With things like:
Code:

<td width="15" height="60" style="background-image: url(/forum/elmer/corners/left_extend.gif);">
Or you can find the following in the settings.php file:
Code:

$photoplog_src_input = array(
        'url(',
        'var IMGDIR_MISC = "',
        'href="',
        'src="',
        'action="'
);

And replace with:
Code:

$photoplog_src_input = array(
        'url(',
        'var IMGDIR_MISC = "',
        'href="',
        'src="',
        'action="',
        'background="'
);

For the /forum/forum thing, try using /forum in the PhotoPlog Duplicate Directory setting.


All times are GMT. The time now is 04:19 PM.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.