Page 1 of 1

Create subsites

Posted: Mon Jul 31, 2006 3:25 pm
by peterv0512
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.

Re: Create subsites

Posted: Mon Jul 31, 2006 4:02 pm
by Dr.CSS
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.

Re: Create subsites

Posted: Tue Aug 01, 2006 9:09 am
by peterv0512
;D thank you!

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?

Re: Create subsites

Posted: Tue Aug 01, 2006 9:36 am
by cyberman
Think simple and try this  ;) ...

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>
cssmenu-accessible-2.tpl is a copy from cssmenu-accessible.tpl so you can define a class "menuwrapper_2".

Re: Create subsites

Posted: Tue Aug 01, 2006 9:59 am
by peterv0512
thanks  :), I'm still trying to figure out if I'm thinking to simple, or not simple enough  ;)