Tag: bug
Issues with MySQL 5.21-beta
I recently upgraded to MySQL 5.21 beta and discovered that the home page of my Siteframe (v5) sites all look a bit strange. Evidently this little bit of SQL:
ORDER BY page_id DESC LIMIT 20
returns the FIRST 20 page_ids, and not the LAST 20. I made this change in index.php:
ORDER BY page_created DESC LIMIT 20
I presume this is a beta bug in MySQL 5.21, and it will be fixed shortly....
0 comment(s)
/ glen
/ Internals
/ on August 30, 2007 at 22:46
User Folders - Error on user edit
If user folders are set to auto create with a new account and top-level folders are set to admin only you get the following error if the user then tries to edit their folder:
Error: sorry, top-level folders can only be created by site administrator(s)
It does not appear to stop the user from editing and saving changes.
0 comment(s)
/ cglusky
/ cglusky's dev notes
/ on June 7, 2006 at 08:09
Hidden causing problems
Glen,
Not sure if this was fixed yet or not. If a user assigns a page as hidden it can cause problems with recent and random block. I have not looked at the sql yet but don't think they exclude hidden.
Coby
1 comment(s)
/ cglusky
/ cglusky's dev notes
/ on May 25, 2006 at 07:42
Patch for mail.php in v5.0.2
Bug: A syntax error prevents mail.php from displaying.
File: mail.php
Fix:
-Find line 50:
$PAGE->assign('page_title', sprintf(lang('page_title_mail'), $group->get_title());
-Replace with:
$PAGE->assign('page_title', sprintf(lang('page_title_mail'), $group->get_title()));
1 comment(s)
/ cglusky
/ cglusky's dev notes
/ on February 23, 2006 at 11:28
