However, I noticed a few problems early on which I've already fixed following the patch found here:
http://dev.cmsmadesimple.org/tracker/in ... 6&atid=299
After applying the patch, though, I was still having the following problems:
1. Column Sorting didn't work
2. Clicking on an item title from the "Simple View" did not properly display its expanded view (would not show any revisions for that item)
3. Filtering didn't work
4. Horribly-ugly magenta/purple link color on sorted column
So, here are the fixes:
File: /modules/Archiver/Archiver.module.php
Lines 478-481 change to:
Code: Select all
if (!isset($params['start']) || !$params['start'])
{
$params['start'] = 0;
}
Code: Select all
if (!isset($params['start']) || !$params['start'])
{
$params['start'] = 0;
}
-------------------------------------------------------------
Now, let's change that ugly purple text/link color on the sorted column heading (if you're using the default theme):
File: /admin/themes/default/css/style.css
Line 656 and Line 660 to
Code: Select all
color:#FEFFAF;
-------------------------------------------------------------
Finally, you may want to increase the maximum length of the "item_name" database field for all revision records. For some people that use long names.
To do that, run this database script (will change from 32 to 150 maximum length):
Code: Select all
ALTER TABLE `cms_module_archiver_item_info` CHANGE `item_name` `item_name` VARCHAR( 150 ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL