Active
Project:
Tundra
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
9 Feb 2012 at 22:25 UTC
Updated:
15 Apr 2012 at 10:24 UTC
In my local environment the background images weren't showing up in the UI and the cooper-background kit wasn't working. From the Web Inspector I could see that the site directory was being repeated for each image URL referenced in the UI.
I changed line 92 of tundra/features/sooper-backgroundkit/background-imagekit-theme-settings.inc
from
$bg_images[$base_url . $base_path . $file->uri] = $file->filename;
to
$bg_images[$base_path . $file->uri] = $file->filename;
and now it works.... I hope this helps someone.
Comments
Comment #1
mmilo commentedConfirmed. My development environment is in Windows too, not sure if this is the case only for Windows.
Comment #2
mainsequence commentedI too was encountering this problem. We're using Tundra & Respondr on IIS and the base folder paths are doubled. Thanks for the above tip - it fixed the issue.
Comment #3
jurriaanroelofs commented