Search found 56 matches
- Fri Feb 05, 2010 8:53 am
- Forum: General Discussion
- Topic: Dating website on Cmsms ?
- Replies: 10
- Views: 5557
Re: Dating website on Cmsms ?
JeremyBASS any suggestions on the modules to use in this project ?
- Thu Feb 04, 2010 5:50 pm
- Forum: General Discussion
- Topic: Dating website on Cmsms ?
- Replies: 10
- Views: 5557
Re: Dating website on Cmsms ?
replytomk3 who are you talking about ? i didn;t find anybody on this forum that made a dating site with cmsms .. or maybe you reffer to somebody else ?...
- Wed Feb 03, 2010 9:45 am
- Forum: CMSMS Core
- Topic: HELP: relative URLS..
- Replies: 2
- Views: 1365
Re: HELP: relative URLS..
well I think in the config you have localhost as server and it will not work when you access the address using the ip .
If you need it to work, maybe you should change localhost from your config, to your local IP...
If you need it to work, maybe you should change localhost from your config, to your local IP...
- Wed Feb 03, 2010 8:27 am
- Forum: General Discussion
- Topic: Dating website on Cmsms ?
- Replies: 10
- Views: 5557
Re: Dating website on Cmsms ?
well I was looking at some dating scripts ... and from my point of view, it's just a php script that has users, member pages, member search, member profiles,etc. ...... and I think CMSMS is powerfull enough to do all of this . So I would like to make this project public and anyone who wants to add s...
- Sun Jan 31, 2010 11:19 am
- Forum: General Discussion
- Topic: Dating website on Cmsms ?
- Replies: 10
- Views: 5557
Dating website on Cmsms ?
Hello people .
I'm just wondering if I could use CMSMS for a dating community ...
anybody did this before ? is CMSMS good for such an application ?
thanks for the input .
I'm just wondering if I could use CMSMS for a dating community ...
anybody did this before ? is CMSMS good for such an application ?
thanks for the input .
- Tue Jan 12, 2010 9:54 am
- Forum: CMSMS Core
- Topic: Redirect to external URL ?
- Replies: 1
- Views: 1115
Redirect to external URL ?
Hello .
How do I redirect to an external URL ? is there a function for this ?
thanks .
How do I redirect to an external URL ? is there a function for this ?
thanks .
- Thu Jan 07, 2010 10:13 am
- Forum: CMSMS Core
- Topic: [SOLVED] how to display content lists
- Replies: 4
- Views: 1824
Re: how to display content lists
{site_mapper start_page="phpcoding"}
yup, this works ... it was a little wird because the help is on the menu manager, not on the site_mapper help page ..
thanks .
yup, this works ... it was a little wird because the help is on the menu manager, not on the site_mapper help page ..
thanks .
- Thu Jan 07, 2010 10:05 am
- Forum: CMSMS Core
- Topic: [SOLVED] how to display content lists
- Replies: 4
- Views: 1824
Re: how to display content lists
i mean pages, not news .
and with site mapper, how can I specify a subcategory to display the content pages only from that subcategory ?
and with site mapper, how can I specify a subcategory to display the content pages only from that subcategory ?
- Thu Jan 07, 2010 9:45 am
- Forum: CMSMS Core
- Topic: [SOLVED] how to display content lists
- Replies: 4
- Views: 1824
[SOLVED] how to display content lists
Hello .
How can I display a list of all content articles in a category or subcategory ?
How can I display a list of all content articles in a category or subcategory ?
- Mon Dec 21, 2009 9:07 pm
- Forum: CMSMS Core
- Topic: Pretty URLs problem .
- Replies: 4
- Views: 2194
Re: Pretty URLs problem .
ok . I will do just that . I have a funtion that needs to $_GET a var over the URL, besides page var, so I know what to pull out of the database . I have a custom database, besides the cms default stuff, and I will make links like : http://www.site.com/index.php?page=home&[b]myvar=somedata[/b] w...
- Mon Dec 21, 2009 7:50 pm
- Forum: CMSMS Core
- Topic: Pretty URLs problem .
- Replies: 4
- Views: 2194
Re: Pretty URLs problem .
in the dark ... looking for the light ... still no way out .
i have tryed out many combinations of conditions and rulez, nothing works ....
I found a fix for the news rss with the htaccess . i tryed to do it like that, still, nothing ... it doesn;t work ...
i have tryed out many combinations of conditions and rulez, nothing works ....
I found a fix for the news rss with the htaccess . i tryed to do it like that, still, nothing ... it doesn;t work ...
- Mon Dec 21, 2009 2:13 pm
- Forum: CMSMS Core
- Topic: Pretty URLs problem .
- Replies: 4
- Views: 2194
Re: Pretty URLs problem .
the only thing that works is a combined link and that kinda sucks :
http://www.site.com/home/[b]?myvar=somedata[/b]
how do I make this go way
http://www.site.com/home/[b]?myvar=somedata[/b]
how do I make this go way

- Mon Dec 21, 2009 12:53 pm
- Forum: CMSMS Core
- Topic: Pretty URLs problem .
- Replies: 4
- Views: 2194
Pretty URLs problem .
Hello pplz . I'm trying to build a new website with cmsms 1.6.6 .. and I am trying to build a new function to read some custom databases and output some info . I installed pretty URLS (.htaccess and config modrewrite) . So now, http://www.site.com/index.php?page=home becomes http://www.site.com/home...
- Sun Dec 20, 2009 10:29 pm
- Forum: CMSMS Core
- Topic: [RESOLVED]Passing URL vars ?
- Replies: 5
- Views: 2435
Re: Passing URL vars ?
well....
i donno how I made this work and I still donno how good it works, but here is what works for me :
$smarty->assign('VAR',$_GET['VAR']);
$VAR= $smarty->get_template_vars('VAR');
and I think with pretty urls the security problem is less of a problem .
i donno how I made this work and I still donno how good it works, but here is what works for me :
$smarty->assign('VAR',$_GET['VAR']);
$VAR= $smarty->get_template_vars('VAR');
and I think with pretty urls the security problem is less of a problem .
- Sun Dec 20, 2009 10:20 pm
- Forum: CMSMS Core
- Topic: [RESOLVED]Passing URL vars ?
- Replies: 5
- Views: 2435
Re: Passing URL vars ?
well.... something like that . only I'm looking to do this inside a /function.dblist.php file, and $this->assign('var',$_GET['var']); does not work outside content . anyway .. yup, i'm looking for something like that . My main problem is that using simple $_GET would be vurnerable and I was thinking...