Create subsites

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
peterv0512

Create subsites

Post 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.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Create subsites

Post 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.
peterv0512

Re: Create subsites

Post 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?
Last edited by peterv0512 on Tue Aug 01, 2006 9:16 am, edited 1 time in total.
cyberman

Re: Create subsites

Post 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".
peterv0512

Re: Create subsites

Post by peterv0512 »

thanks  :), I'm still trying to figure out if I'm thinking to simple, or not simple enough  ;)
Locked

Return to “CMSMS Core”