Search found 16 matches

by bepposun
Thu 9. Aug 2007, 14:03
Forum: phpwcms Discussion
Topic: left navigation
Replies: 3
Views: 2356

works

Cool. this did the trick ;)

Is there anywhere a docu for this syntax?

Cheers, Beppo
by bepposun
Thu 9. Aug 2007, 12:15
Forum: phpwcms Discussion
Topic: left navigation
Replies: 3
Views: 2356

left navigation

I think I'm on the wrong trail.... I'm trying to create a vertical menu which shows only a sub level and the levels behind using NAV_LIST_UL. For this I'm using a small PHP script to get the correct level: [PHP] if(isset($GLOBALS['LEVEL_ID'][3])) { $level_id = $GLOBALS['LEVEL_ID'][3]; echo '<div cla...
by bepposun
Fri 20. Jul 2007, 17:14
Forum: phpwcms Discussion
Topic: Google analytics
Replies: 5
Views: 4029

phpMyVisites vs. GoogleAnalytics

It seems to work now with Google Analytics, thanks for the hint. Is it worth to use phpMyVisites instead?

Cheers, Beppo
by bepposun
Wed 18. Jul 2007, 16:29
Forum: phpwcms Discussion
Topic: Google analytics
Replies: 5
Views: 4029

Google analytics

Maybe a stupid question,

I would like to use Google analytics to track the visits. There is a code which should inserted in the html file. Where to put it in in phpwcms?

index.php ?
pixelTracking.php ?

Cheers, Beppo
by bepposun
Tue 10. Jul 2007, 21:37
Forum: phpwcms Support Deutsch
Topic: feLogin texte ändern
Replies: 7
Views: 2462

hat sich erledigt

war noch nicht richtig kopiert ;)
by bepposun
Tue 10. Jul 2007, 21:25
Forum: phpwcms Support Deutsch
Topic: feLogin texte ändern
Replies: 7
Views: 2462

verschieden templates fuer das login?

Ist es moeglich verschiedene Templates fuer das login zu verwenden?

Wenn ich in die Verzeichnisse:
/template/inc_cntpart/felogin/
/template/inc_default

ein zweites template kopiere, z.B. mein_login.tmpl taucht das zumindet bei der Auswahl nicht auf.

Habe ich was uebersehen?

Gruss, Beppo
by bepposun
Sun 1. Jul 2007, 23:39
Forum: phpwcms Discussion
Topic: database access
Replies: 1
Views: 2173

database access

Hi all, what would be the best method to access a table from the database. Somebody mentioned it's all (db name, user etc.) already in an array? Backround: I creted a new table containing additonal info about bike tours which I read out with a php script which I include in a specific template. I try...
by bepposun
Fri 29. Jun 2007, 15:46
Forum: hacks & enhancements
Topic: 2 Simple Scripts For Image-Gallery And Banner-Rotation
Replies: 2
Views: 6131

IPTC-Header

I can partly answer the question myself. This should be possible using the iptcparse function.

Joerg
by bepposun
Fri 29. Jun 2007, 15:00
Forum: hacks & enhancements
Topic: 2 Simple Scripts For Image-Gallery And Banner-Rotation
Replies: 2
Views: 6131

nice

and easy this script and it works great. I wonder how you realised the lightbox option on your (surfclub) page. Is the code available?
I'm also looking for the possibility to read out exif or even better IPTC data and put it as comment below the picture.

Anybody realised something like that?

Beppo
by bepposun
Thu 28. Jun 2007, 22:29
Forum: hacks & enhancements
Topic: Does a {ALIAS} RT exist?
Replies: 4
Views: 4505

Thanks, for the alias of the upper level category I use now:

$alias = $GLOBALS['content']['struct'][($GLOBALS['LEVEL_ID'][3])]['acat_alias'];
echo $alias;

Seems to work.

Cheers, Beppo
by bepposun
Thu 28. Jun 2007, 17:52
Forum: phpwcms Discussion
Topic: How to get the actual category
Replies: 3
Views: 2901

Thanks, this thing print_r($GLOBALS) is really interesting.

With $GLOBALS['LEVEL_STRUCT'][3] I get the category name above the actual category (in this case).

Now I discovered that I need not the category name, but the alias. Any idea how to get this?

Regards, Joerg
by bepposun
Thu 28. Jun 2007, 08:31
Forum: phpwcms Discussion
Topic: How to get the actual category
Replies: 3
Views: 2901

How to get the actual category

I found in the forum the way how to use pagetitle etc. http://www.phpwcms.de/forum/viewtopic.php?t=13841 So with $GLOBALS['content']["cat_name"]; it's possible to get the category. Fine. However I try to get the name of the category above the actual level. Example: Level0->Level1->Level2->...
by bepposun
Mon 25. Jun 2007, 14:54
Forum: phpwcms Discussion
Topic: Splitted vertical Menu
Replies: 2
Views: 2441

WOW!!! Thanks!
by bepposun
Fri 22. Jun 2007, 22:08
Forum: phpwcms Discussion
Topic: PHP code inside html (article)
Replies: 2
Views: 2640

Aha, exactly, thanks!
DeXXus wrote:"conf.inc.php"

Code: Select all

$phpwcms['allow_cntPHP_rt']   = 1; //allow PHP replacement tags and includes in content parts
by bepposun
Fri 22. Jun 2007, 17:46
Forum: phpwcms Discussion
Topic: Splitted vertical Menu
Replies: 2
Views: 2441

Splitted vertical Menu

Hi all, my vertical category menu looks like that: Bicycle->Racing Bike->Tour1->Map Bicycle->Racing Bike->Tour1->Details next would be Bicycle->Racing Bike->Tour2->Map Bicycle->Racing Bike->Tour2->Details etc. My intention is to have a basic menu including Tour1 on the left side and the submenu incl...