Hi,
Got a reply from LaCie, they are aware of this problem and are working on a permanent fix. In the meanwhile I got a zip file, which contained a terminal.command file from which I have posted the code here, you need to save that file as an executable so you can run it.
As always create a backup first, goodluck!
#!/bin/sh
if sw_vers -productVersion|grep 10.10 >/dev/null
then
`cat << EOF > ~/lrm.conf
LoadModule php5_module /usr/share/lrm/apacheForOs10/modules/libphp5.so
Listen 8845
<VirtualHost *:8845>
ServerName localhost:8845
DocumentRoot "/usr/share/lrm/root"
ServerAdmin sylvain.sevamy@seagate.com
ErrorLog "/usr/share/lrm/apacheForOs10/logs/error_log"
CustomLog "/usr/share/lrm/apacheForOs10/logs/error_log" common
LogLevel warn
TraceEnable off
UserDir disabled
</VirtualHost>
<Directory "/usr/share/lrm/root">
Options FollowSymLinks Multiviews
MultiviewsMatch Any
AllowOverride None
Require all granted
</Directory>
AliasMatch /MSU/(.*) "/usr/share/lrm/root/$1"
AliasMatch /MSu/(.*) "/usr/share/lrm/root/$1"
AliasMatch /Msu/(.*) "/usr/share/lrm/root/$1"
AliasMatch /msu/(.*) "/usr/share/lrm/root/$1"
EOF`
else
if sw_vers -productVersion|grep 10.9 >/dev/null
then
`cat << EOF > ~/lrm.conf
LoadModule php5_module /usr/share/lrm/apacheForOs9/modules/libphp5.so
Listen 8845
<VirtualHost *:8845>
ServerName localhost:8845
DocumentRoot "/usr/share/lrm/root"
ServerAdmin sylvain.sevamy@seagate.com
ErrorLog "/usr/share/lrm/apacheForOs10/logs/error_log"
CustomLog "/usr/share/lrm/apacheForOs10/logs/error_log" common
LogLevel warn
TraceEnable off
UserDir disabled
</VirtualHost>
<Directory "/usr/share/lrm/root">
Options Indexes FollowSymLinks Multiviews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
AliasMatch /MSU/(.*) "/usr/share/lrm/root/$1"
AliasMatch /MSu/(.*) "/usr/share/lrm/root/$1"
AliasMatch /Msu/(.*) "/usr/share/lrm/root/$1"
AliasMatch /msu/(.*) "/usr/share/lrm/root/$1"
EOF`
else
echo "Unsupported Mac OS system version";
exit 5;
fi
fi
if [ -d /usr/share/lrm ]
then
echo "Will update Mac OS apache Server configuration";
else
echo "failed to locate LaCie Raid Manager directory";
exit 6;
fi
if [ -f ~/lrm.conf ]
then
sudo cp ~/lrm.conf /etc/apache2/other
else
echo “Error: Missing LRM config file”;
exit 1;
fi
if [ $? -ne 0 ]
then
echo “failed to copy lm config file”;
exit 2;
else
rm $(pwd)/lrm.conf;
fi
if [ -f /etc/apache2/other/lrm.conf ]
then
sudo mv /Library/LaunchDaemons/com.lacie.WebService.plist /Library/LaunchDaemons/com.lacie.WebService.backup;
else
echo “Error: Missing LRM config file for apache”;
exit 3;
fi
if [ $? -ne 0 ]
then
echo “failed to backup WebService file”;
exit 4;
fi
sudo httpd -k stop;
sudo apachectl start;
echo "Successfully reconfigure Apache server"