|
View:
New views
5 Messages
—
Rating Filter:
Alert me
|
|
|
Multiblog community with timtabHi,
the problem i want to solve is multiblog - I'm using cwt_community as a community extension with allow users to register on site and i want it to createing a user blog just after registration. So, my question is how to organize the page structure and how can i set up userblog during registration. I'll be thankfull for all tips. Thanks, David. _______________________________________________ TYPO3-project-community mailing list TYPO3-project-community@... http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-community |
|
|
Re: Multiblog community with timtabDawid wrote:
> Hi, > > the problem i want to solve is multiblog - I'm using cwt_community as a > community extension with allow users to register on site and i want it to > createing a user blog just after registration. So, my question is how to > organize the page structure and how can i set up userblog during > registration. I'll be thankfull for all tips. > > Thanks, > David. Hi David, Ingo Renner invented timtab - so perhaps has a better solution than the followin one, but the only solution I could imagine is to create a single page for each user in the backend, each time you create a new user. So you could make something like that: -pagetree |- user1 | |-blog-page | | |- Sysfolder for blog entries | | |-... |- user2 | | ... It is not very elegant, but it is the only way I can think of. The positive aspect is, that you could use the T3 frontend - login mechanism to hide contents for certain users... Another possibility could be to "overwrite" the sysfolder ids for the blog entries for each user, but dunno how you could do that. Hope this helps a little Regards Mimi P.S. we are developing a new community extensions which I hope can cope with functionality like the one you need - so perhaps you just have to wait a little. _______________________________________________ TYPO3-project-community mailing list TYPO3-project-community@... http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-community |
|
|
Re: Multiblog community with timtab2007/10/7, Michael Knoll <mimi@...>:
> > Dawid wrote: > > Hi, > > > > the problem i want to solve is multiblog - I'm using cwt_community as a > > community extension with allow users to register on site and i want it > to > > createing a user blog just after registration. So, my question is how to > > organize the page structure and how can i set up userblog during > > registration. I'll be thankfull for all tips. > > > > Thanks, > > David. > > Hi David, > > Ingo Renner invented timtab - so perhaps has a better solution than the > followin one, but the only solution I could imagine is to create a > single page for each user in the backend, each time you create a new user. > > So you could make something like that: > > -pagetree > |- user1 > | |-blog-page > | | |- Sysfolder for blog entries > | | |-... > |- user2 > | | ... > > It is not very elegant, but it is the only way I can think of. The > positive aspect is, that you could use the T3 frontend - login mechanism > to hide contents for certain users... > > Another possibility could be to "overwrite" the sysfolder ids for the > blog entries for each user, but dunno how you could do that. > > Hope this helps a little > > Regards > > Mimi > > P.S. we are developing a new community extensions which I hope can cope > with functionality like the one you need - so perhaps you just have to > wait a little. Hi, If that structure could be problematic in performance when the number of registred users grow to about 3000? Yes, i heard about the new community extension that you develop but i think i can't wait for it in the project that I working with. When you gonna release it? Thank for reply, David. _______________________________________________ TYPO3-project-community mailing list TYPO3-project-community@... http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-community |
|
|
Re: Multiblog community with timtabHi,
i used tt_news with News_feedit. In the news database a new column tx_newsfeedit_fe_cruser_id. sry for my bad english :D here is a solution from georg ringer: write a new extension ----------------------------- in the localconf.php: <? if (TYPO3_MODE == 'FE') { require_once(t3lib_extMgm::extPath('yourext').'class.tx_rgnewsowner.php'); } $TYPO3_CONF_VARS['EXTCONF']['tt_news']['selectConfHook'][] = 'tx_rgnewsowner'; ?> ---------------------------- in the class.tx_rgnewsowner.php: <? class tx_rgnewsowner { // hook for tt_news function processSelectConfHook(&$pObj,$conf) { $this->cObj = t3lib_div::makeInstance('tslib_cObj'); // local cObj. $this->pObj = &$pObj; $this->realConf = $pObj; $rgsgConf = $this->realConf->conf['rgsmoothgallery.']; #$userid = $this->realConf->conf['userid']; $userid = ... here the userid from get index.php?id=108&userid=16 // wenn userid, erweiterst du das select und gibst es zurück if ($userid ) { $conf['where'].= ' AND tx_newsfeedit_fe_cruser_id IN ( '.$userid .')'; } return $conf; } #end extraItemMarkerProcessor } if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rgsmoothgallery/class.tx_rgsmoothgallery_fe.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rgsmoothgallery/class.tx_rgsmoothgallery_fe.php']); } ?> ------------------------------- a example link: index.php?id=108&userid=16 id=108 = tt_news list this is not the best solution, because the user news in one sysfolder, but this works with tt_news. Regards Alexander Obster Dawid schrieb: > Hi, > > the problem i want to solve is multiblog - I'm using cwt_community as a > community extension with allow users to register on site and i want it to > createing a user blog just after registration. So, my question is how to > organize the page structure and how can i set up userblog during > registration. I'll be thankfull for all tips. > > Thanks, > David. TYPO3-project-community mailing list TYPO3-project-community@... http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-community |
|
|
Re: Multiblog community with timtabDawid wrote:
> 2007/10/7, Michael Knoll <mimi@...>: >> Dawid wrote: >>> Hi, >>> >>> the problem i want to solve is multiblog - I'm using cwt_community as a >>> community extension with allow users to register on site and i want it >> to >>> createing a user blog just after registration. So, my question is how to >>> organize the page structure and how can i set up userblog during >>> registration. I'll be thankfull for all tips. >>> >>> Thanks, >>> David. >> Hi David, >> >> Ingo Renner invented timtab - so perhaps has a better solution than the >> followin one, but the only solution I could imagine is to create a >> single page for each user in the backend, each time you create a new user. >> >> So you could make something like that: >> >> -pagetree >> |- user1 >> | |-blog-page >> | | |- Sysfolder for blog entries >> | | |-... >> |- user2 >> | | ... >> >> It is not very elegant, but it is the only way I can think of. The >> positive aspect is, that you could use the T3 frontend - login mechanism >> to hide contents for certain users... >> >> Another possibility could be to "overwrite" the sysfolder ids for the >> blog entries for each user, but dunno how you could do that. >> >> Hope this helps a little >> >> Regards >> >> Mimi >> >> P.S. we are developing a new community extensions which I hope can cope >> with functionality like the one you need - so perhaps you just have to >> wait a little. > > > Hi, > > If that structure could be problematic in performance when the number of > registred users grow to about 3000? > > Yes, i heard about the new community extension that you develop but i think > i can't wait for it in the project that I working with. When you gonna > release it? > > Thank for reply, > David. Hi David, the release will take some time. I hope to come out with a first prototype during the end of November. One of the biggest problem for me are the quick changes in lib/div on which I started to implement the new extension. I think there will be no beta version of our community extension until lib/div goes beta. At the beginning there will be only little more functionality than cwt_community, but it will be based on lib/div and thereby easier to extend. So far Mimi _______________________________________________ TYPO3-project-community mailing list TYPO3-project-community@... http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-community |
| Free embeddable forum powered by Nabble | Forum Help |