MarkusW
User
| Posts: 10 |   |

|
Re: playlists directory - 2008/09/10 05:28
There seems to be another bug with the playlists directory when the database is reinitialized.
After reinit, the install-check states the following error: "Unable to write to the SwissCenter playlists directory (playlists)"
Taking a look at the system_prefs table, I found that the installer had indeed set the value for the PLAYLISTS setting to a plain 'playlists' instead of the full physical path to the directory.
This problem may be fixed temporarily by issuing the appropriate SQL like UPDATE system_prefs SET value='/var/www/swisscenter/playlists' where name = 'PLAYLISTS';
with value set to the correct path.
I believe that the following patch to config/config_install.php would fix that problem permanently:
84a85,87 > > // Default playlists directory location > set_sys_pref('PLAYLISTS',SC_LOCATION.'playlists');
Kind regards
Markus
|