Login | Forgot password | Register
What is OpenID?
OpenID is an Internet-wide identity system that allows you to sign in to many websites with a single account.
With OpenID, your ID becomes a URL (e.g. http://username.myopenid.com/). You can get a free OpenID for example from myopenid.com.
For more information visit the official OpenID site.
Archive
SilverStripe Forums » Archive » How I can make 3 site view with 1 database
Our old forums are still available as a read-only archive.
|
Page:
1
|
Go to End | |
| Author | Topic: How I can make 3 site view with 1 database | 241 Views |
-
How I can make 3 site view with 1 database

4 December 2008 at 9:49pm
how to use one database for multiple patterns simultaneously?
I will be in the 1 site to showcase my designed templates
How could it be implemented?
I think I can help
?theme=mysite1&flush=1
?theme=mysite2&flush=1
?theme=mysite3&flush=1but what I write in _config.php instead
SSViewer:: set_theme ( 'askold'); -
Re: How I can make 3 site view with 1 database

5 December 2008 at 11:12am
Well its basically like how the current theme preview system works - its sets the theme name in the url. So exactly how you have done will work you just need this in your _config file.
Check to see if theme is set otherwise default to 'askold'
// in mysite / _config.php
$theme = (isset($_GET['theme']) ? $_GET['theme'] : 'askold';SSViewer::set_theme($theme);
| 241 Views | ||
|
Page:
1
|
Go to Top |


