Submitted by patrick on Wed, 07/27/2011 - 11:41
If you happen to maintain your webpage with Drupal and also host a SVN-Repository on the very same host you can run into trouble. Just try to commit a file starting with a period (for example a project file from eclipse: .project). It will give you an error "access denied for unknown reason". The solution is quite simple. There is a rule in the .htaccess file from Drupal which denies access to files starting with a period. You can either delete this rule or restrict it to only apply for the drupal part of the page.
Submitted by patrick on Sun, 02/06/2011 - 01:41
The guestbook module of cmsmadesimple has the bad habit of showing the following error message after updates: Call to undefined function nl2pnbr(). The fix is quite easy. Just open the filemodules/Guestbook/action.get-entrylist.php in a texteditor and replace the line
$entry['message'] = nl2pnbr($entry['message']);
with the line
$entry['message'] = nl2br($entry['message']);
After that it works just fine.
Submitted by patrick on Sun, 02/06/2011 - 01:34
The player fails because of the update of the Uploads module and some missing includes. A fix is quite easy:
-
Open modules/EnhancedXSPF/action.admin_edit_playlist.php in a texteditor. You need to change the line 101 from
$filelist = array_merge($filelist, $uploads->getFileList($category));
to
$filelist = array_merge($filelist, $uploads->get_category_file_list($category));
Now you should be able to edit the playlists again.