Page 1 of 2
Can CMS generate html pages ?
Posted: Fri Jul 14, 2006 6:46 am
by darkingPB
This is maybe faster.I found manbo and postnuke don't support it. Can cms support?
Re: Can CMS generate html pages ?
Posted: Fri Jul 14, 2006 8:18 am
by darkingPB

,I found that my web space cannot support mode_rewirte and i don't have the rights to edit the httpd.conf,so if cms made simple can direct generate html that is pertect.
Re: Can CMS generate html pages ?
Posted: Fri Jul 14, 2006 6:38 pm
by Elijah Lofgren
darkingPB wrote:

,I found that my web space cannot support mode_rewirte and i don't have the rights to edit the httpd.conf,so if cms made simple can direct generate html that is pertect.
If you are having problems with pages now working try doing the following:
Open config.php,
find:
Code: Select all
$config['internal_pretty_urls'] = true;
change it to:
Code: Select all
$config['internal_pretty_urls'] = false;
I don't think CMSMS can generate static HTML pages. But if you don't mind URLs like /index.php?page=page_name CMSMS should work fine for you even if you don't have mod_rewrite on your server.
Re: Can CMS generate html pages ?
Posted: Fri Jul 14, 2006 7:17 pm
by Dr.CSS
Elijah
isn't there a way to append .html to the end of pages.... page.html
Re: Can CMS generate html pages ?
Posted: Fri Jul 14, 2006 7:41 pm
by Elijah Lofgren
mark wrote:
isn't there a way to append .html to the end of pages.... page.html
Yes, I had thought it only worked with mod_rewrite but it works with "internal_pretty_urls" also to end up with URLs like:
/index.php/navigation_menus/navtop.html
If one of the following is set in config.php
Code: Select all
$config['assume_mod_rewrite'] = true;
$config['internal_pretty_urls'] = true;
Then setting:
Code: Select all
$config['page_extension'] = '.html';
Will make pages have a .html extension.
Re: Can CMS generate html pages ?
Posted: Fri Jul 14, 2006 9:19 pm
by Dr.CSS
so do you think .html pages load faster?
i have a feeling that was what he was reffering to...
maybe if they are hand code static pages...

Re: Can CMS generate html pages ?
Posted: Sat Jul 15, 2006 10:56 am
by tsw
You could always wget -r to get full set of html files
Re: Can CMS generate html pages ?
Posted: Sat Jul 15, 2006 3:21 pm
by Dr.CSS
tsw
tsw wrote:
You could always wget -r to get full set of html files

Re: Can CMS generate html pages ?
Posted: Sat Jul 15, 2006 3:39 pm
by nils73
CMS made simple will not "generate" HTML as static content - if that was the question. I know that there are CMS out there that can do that and I assume that one could write a module that could do that so that you have static pages again. There might be one or two situations I can figure where this would make sense but they rarely exist in real life.
Next best solution would be mod_rewrite and if that does not work then pretty-urls is your friend. Both simulate HTML-extensions but just to make the URL-scheme look prettier and maybe for some SEO reasons.
Regards
Nils
Re: Can CMS generate html pages ?
Posted: Sat Jul 15, 2006 4:26 pm
by Dr.CSS
so still the question is which loads faster :.
just curious

Re: Can CMS generate html pages ?
Posted: Sun Jul 16, 2006 1:36 pm
by nils73
Hm ... just a guess:
1. Generated HTML-pages (no DB-query at all)
2. Mod_Rewrite
3. Pretty URLs
Well ... 2 and 3 might be same speed, but I would gues that 3 is kind of slower still. Piratos might know better since he is Mr. Performance himself.
Regards
Nils
Re: Can CMS generate html pages ?
Posted: Sun Jul 16, 2006 1:41 pm
by tsw
mark wrote:
tsw
tsw wrote:
You could always wget -r to get full set of html files
wget fetches any html page and with parameter -r does it recursively and checking all links and gets those pages too (including all images and so on)
Re: Can CMS generate html pages ?
Posted: Wed Jul 19, 2006 5:18 am
by darkingPB
Can we develop a module that generate the static html pages automatic?It seems that typo3 can
Re: Can CMS generate html pages ?
Posted: Wed Jul 19, 2006 6:56 am
by Dr.CSS
i still ask Why?
do you think they load faster...
have you something against .php...
a lot of large, big name sites use .php...
Re: Can CMS generate html pages ?
Posted: Tue Jul 25, 2006 12:31 am
by darkingPB