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

mmilo’s picture

Confirmed. My development environment is in Windows too, not sure if this is the case only for Windows.

mainsequence’s picture

I 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.

JurriaanRoelofs’s picture

Assigned: Unassigned » JurriaanRoelofs