Determination of $relative_file_path

Created on 15 February 2014, about 11 years ago
Updated 6 January 2025, 3 months ago

Hi,

I installed live css - kept running into an error when pressing Save. The module was trying to write to a path that didn't exist.

$absolute_dir = /Applications/MAMP/htdocs/Henrietta/git-7/sites/mysite.org/modules/live_css
$relative_dir = sites/mysite.local/modules/live_css

So in this case chopping of the drupal_strlen($relative_dir) + 1 from the $absolute_dir chops of two characters too many - as mysite.local is 2 characters longer than mysite.com

I solved this for us (we use symlinks a lot on both local and production) by using:

$basepath = preg_split("/sites/", $absolute_dir);
return($basepath[0]);

As this function live_css_document_root() is really just trying to figure out what is in front of the /sites/, right? Or are there cases I'm not thinking of right now?

Thanks for this module - super useful to give people access to their CSS without having to give them e.g. any SSH privileges to the server.

πŸ› Bug report
Status

Closed: outdated

Version

2.12

Component

Code

Created by

πŸ‡¨πŸ‡¦Canada karing πŸ‡¨πŸ‡¦

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡¦Ukraine AstonVictor

    I'm closing it because the issue was created a long time ago without any further steps.

    if you still need it then raise a new one.
    thanks

Production build 0.71.5 2024