le12484 wrote:Is it possible to have multiple deployments using the same user database but everything will use it own table prefix?
The "approved" (and proved) way of having multiple JForum instances is to have a different database (or catalog or schema depending on your server's vernacular ) for each instance. Then configure each instance's
JDBC URL to point to the different databases. (Note, most DB Servers support multiple "databases" within a single server instance.)
If you can't do that, then it *MIGHT* be possible to edit the <server type>.sql queries to use different table names. But the DAO's may do some special query construction outside these. So, you may need to search and modify this part of the code too.
You'll also want to edit the *struct.sql files which create the tables for each instance as well.
Once you have your multiple instances set up, there is no reason an SSO implementation couldn't be done to tie all them to one authentication agent.
[originally posted on jforum.net by monroe]