Greetings, and thank you for your reply.
No, I didn't see that page. But other than suggesting that a "cache clearing" is required,
I was unable to discover anything different that the page I already indicated that I had read:
http://wiki.cmsmadesimple.org/index.php ... retty_URLs
had in it.
FWIW
config.php contains the following settings related to the issue:
Code: Select all
$config['assume_mod_rewrite'] = true;
$config['page_extension'] = '.html';
$config['internal_pretty_urls'] = false;
$config['use_hierarchy'] = true;
$config['query_var'] = 'page';
mod_rewrite settings:
Code: Select all
RewriteBase /
#
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+).html$ index.php?page=$1 [QSA]
Using the following also failed:
Code: Select all
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?page=$1 [L,QSA]
In all cases, the cache was disabled to ensure I get immetiate, and accurate results.
But no matter what the setting for "pretty/readable" URL's, the home page is blank.
The blank page(s) did not occur until SEO/SEF settings were attempted. And the
following error is repeated in the PHP error log:
Code: Select all
PHP Parse error: syntax error, unexpected T_CLASS in /usr/local/www/CMSMS/lib/classes/contenttypes/Content.inc.php
OH, and yes, the {metadata} tag exists in the templates (default).
Thanks again for your reply.
P.S.
I can't help but notice that cmsmadesimple.org only uses v.1.1.1 & v1.1.2.
Maybe that should be my queue to not use 1.2, and use one of those versions instead.
No?