Can CMS generate html pages ?
Can CMS generate html pages ?
This is maybe faster.I found manbo and postnuke don't support it. Can cms support?
Re: Can CMS generate html pages ?

- Elijah Lofgren
- Power Poster
- Posts: 811
- Joined: Mon Apr 24, 2006 1:01 am
- Location: Deatsville, AL
Re: Can CMS generate html pages ?
If you are having problems with pages now working try doing the following: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.
Open config.php,
find:
Code: Select all
$config['internal_pretty_urls'] = true;
Code: Select all
$config['internal_pretty_urls'] = false;
Note: I don't have time to take on any more projects. I'm quite busy. I may be too busy to reply to emails or messages. Thanks for your understanding. 

Re: Can CMS generate html pages ?
Elijah
isn't there a way to append .html to the end of pages.... page.html
isn't there a way to append .html to the end of pages.... page.html
- Elijah Lofgren
- Power Poster
- Posts: 811
- Joined: Mon Apr 24, 2006 1:01 am
- Location: Deatsville, AL
Re: Can CMS generate html pages ?
Yes, I had thought it only worked with mod_rewrite but it works with "internal_pretty_urls" also to end up with URLs like:mark wrote: isn't there a way to append .html to the end of pages.... page.html
/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;
Code: Select all
$config['page_extension'] = '.html';
Note: I don't have time to take on any more projects. I'm quite busy. I may be too busy to reply to emails or messages. Thanks for your understanding. 

Re: Can CMS generate html pages ?
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...
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 ?
You could always wget -r to get full set of html files
Re: Can CMS generate html pages ?
tsw

tsw wrote: You could always wget -r to get full set of html files

Re: Can CMS generate html pages ?
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
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 ?
so still the question is which loads faster :.
just curious
just curious

Re: Can CMS generate html pages ?
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
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 ?
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)mark wrote: tswtsw wrote: You could always wget -r to get full set of html files![]()
Re: Can CMS generate html pages ?
Can we develop a module that generate the static html pages automatic?It seems that typo3 can
Re: Can CMS generate html pages ?
i still ask Why?
do you think they load faster...
have you something against .php...
a lot of large, big name sites use .php...
do you think they load faster...
have you something against .php...
a lot of large, big name sites use .php...