Search found 6 matches

by sunflare
Wed 7. Jan 2004, 15:46
Forum: phpwcms Feature Requests
Topic: {SEARCH} Replacement Tag
Replies: 12
Views: 5986

like I said:
the look and feel should be in conf.template_default.inc.php
It's a nice and easy way to change layout.
by sunflare
Wed 7. Jan 2004, 13:17
Forum: phpwcms Feature Requests
Topic: {SEARCH} Replacement Tag
Replies: 12
Views: 5986

{SEARCH} Replacement Tag

What about a replacement tag for the search function?
It would simply do something like this (like in thread http://www.phpwcms.de/forum/viewtopic.php?t=517 )


{SEARCH:444}

<form action="###search_input_action:444###" method="post">
<input name="###search_input_field###" type="text" size="10 ...
by sunflare
Sun 23. Nov 2003, 13:23
Forum: phpwcms Support English
Topic: index.php?id=8,0,0,1,0,0 to 8.0.0.1.0.0.html HOWTO
Replies: 21
Views: 22221

You're surely right... :)
but I will go on and try to develop this little feature... it's just the same rendering overhead like renaming the links from ?id=... to ...html by regular expressions (developed by rudeboy).

I just need some help what all the id parameters mean (order etc.) and which ...
by sunflare
Sat 22. Nov 2003, 18:33
Forum: phpwcms Support English
Topic: index.php?id=8,0,0,1,0,0 to 8.0.0.1.0.0.html HOWTO
Replies: 21
Views: 22221

I think it's just a matter of aesthetics to have clean, logical and reasonable URLs.
Nothing ist more annoying then sending links like this via Mail:
http://www.amazon.com/exec/obidos/tg/detail/-/B0000DKDUR/ref=hfr_dh_1_9/102-4462808-4712145?v=glance&s=dvd&n=130

instead of
http://www.amazon.com/dvd ...
by sunflare
Sat 22. Nov 2003, 16:41
Forum: phpwcms Support English
Topic: index.php?id=8,0,0,1,0,0 to 8.0.0.1.0.0.html HOWTO
Replies: 21
Views: 22221

Yes, of course, these commas at my code should be replaced with a valid rewrite rule, I'm sometimes a bit too lazy to type *oops*

I'm currently working on an advanced url-rewriting for your cms. Instead of just rewriting the parameters, I'd like to use 'speaking urls' like /main/sub/subtext_1/ for ...
by sunflare
Sat 22. Nov 2003, 12:29
Forum: phpwcms Support English
Topic: index.php?id=8,0,0,1,0,0 to 8.0.0.1.0.0.html HOWTO
Replies: 21
Views: 22221

Apache's mod_rewrite

I had some problems with rewrite rules too, maybe this little checklist will help:
1)
Make sure that URL-rewriting is enabled.
Go to your httpd.conf and look for
LoadModule rewrite_module modules/mod_rewrite.so
AddModule mod_rewrite.c


2)
Maybe that url Rewriting in .htaccess doesn't work for ...