Hi,
Is it possible to let users log into CMSimple, and let them create theire own subsite?
This subsite just needs to be a couple of pages, and accessible through www.mydomain.com/subsite
If not, I guess I need to look for another CMS... which I do not want to do...
thanks and greetings.
Create subsites
Re: Create subsites
The subsite needs to be another install of CMSMS in a folder under main site with it's own DB or at least a new prefix as in cms_ , cms1_ , cms2_ , etc..
I have many such subsites on mine that users can log into and make changes etc. all in separate folders any of these typed into a browser will show diff. sites.
multiintech.com/
multiintech.com/debra/
multiintech.com/cmsite/
multiintech.com/cmsms1.0/
multiintech.com/Beta2/
multiintech.com/mit-computers/
even my old hand coded .html none DB one
multiintech.com/old/
NO need to leave CMSMS, for what you want is EZ to do.
I have many such subsites on mine that users can log into and make changes etc. all in separate folders any of these typed into a browser will show diff. sites.
multiintech.com/
multiintech.com/debra/
multiintech.com/cmsite/
multiintech.com/cmsms1.0/
multiintech.com/Beta2/
multiintech.com/mit-computers/
even my old hand coded .html none DB one
multiintech.com/old/
NO need to leave CMSMS, for what you want is EZ to do.
-
peterv0512
Re: Create subsites
I should have figured that out myself
... another thing ....
I'm working with the split navigation
{cms_module module='menumanager' template='cssmenu-accessible.tpl' number_of_levels='1'}
{cms_module module='menumanager' template='cssmenu-accessible.tpl' start_level='2' collapse='1'}
But then you get 2 DIV's with the same ID (menuwrapper), which - as you probably know - gives problems sometimes (javascript and aparently some css) and also the 2 UL's get the same id (primary-nav).
Is this something I did wrong? If not, maybe it's a good idea make 'menuwrapper' a class and the second div the ID secondary-nav?
Last edited by peterv0512 on Tue Aug 01, 2006 9:16 am, edited 1 time in total.
-
cyberman
Re: Create subsites
Think simple and try this
...
cssmenu-accessible-2.tpl is a copy from cssmenu-accessible.tpl so you can define a class "menuwrapper_2".
Code: Select all
<div id='topNav'>
{cms_module module='menumanager' template='cssmenu-accessible.tpl' number_of_levels='1'}
</div>
<div id='subNav'>
{cms_module module='menumanager' template='cssmenu-accessible-2.tpl' start_level='2' collapse='1'}
</div>-
peterv0512
Re: Create subsites
thanks
, I'm still trying to figure out if I'm thinking to simple, or not simple enough 

