1.6.5: Reported issues and fixes

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
RonnyK
Support Guru
Support Guru
Posts: 4962
Joined: Wed Oct 25, 2006 8:29 pm

1.6.5: Reported issues and fixes

Post by RonnyK »

This post is not sticky anymore, as 1.6.6 is released. All fixes are in 1.6.6.

This topic will hold the reported issues and fixes for the 1.6.5 version.

1: Menu using start_level="2" doesnt appear.

The fix for the dissappearing start_level=2 is made in SVN. For those that experience the issue, you can modify the file

modules\MenuManager\action.default.php

where on line 89, the following must be replaced:
if( !$curcontent )  {
with:
if( $curcontent )  {
2: Submit is not taken on forms, when .htaccess is used and page_extension = ''.

Some users that use .htaccess and have the config.php set to have NO page_extension have no action on submit-buttons in forms.

This is fixed with a new .htaccess that will be released with the next release.
The new file is changed as follows:
#
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
# except for form POSTS
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
3. The use of the printbutton ends in a blank page or into opposite behavior (everything on screen, accept the content)

Topic discussed here: http://forum.cmsmadesimple.org/index.ph ... #msg178033


Ronny
Last edited by RonnyK on Sun Oct 04, 2009 6:24 pm, edited 1 time in total.
Locked

Return to “CMSMS Core”