Page 2 of 23

ahh ok

Posted: Thu 2. Feb 2006, 15:26
by phalancs
Ok, I got you now, the actual download-login was not working!
I thought it was something after your installation :roll:

Ok, thanx to someone who changed the password in the admin section :evil: :evil:

If the PW was changed again, please inform me.
Next week I will disable this option in admin. So it won't happen again.

OK, but for now it is ok again.

Re: ahh ok

Posted: Thu 2. Feb 2006, 15:51
by isac
phalancs wrote:
Ok, thanx to someone who changed the password in the admin section :evil: :evil:
PEOPLE STOP DOING IT

Posted: Thu 2. Feb 2006, 17:19
by juergen
Hello phalancs,

dislike users changing password for disavantage of others as well !

Is it possible to show the online XXX_End users online to the frontend ? :idea:

Better to ask :wink: how ?

Jürgen

Posted: Thu 2. Feb 2006, 19:25
by phalancs
Nun, dass müsste gehen, ich werde mir den Code dazu mal ansehen, aber im Prinzip muss man nur die entsprechende Stelle aus der phpwcms.php in die include\inc_front\content\cnt203.article.inc.php kopieren.

Werde leider erst frühestens nächste Woche dazu kommen können.
Am interessantesten fände ich es allerdings wenn man diese Mail Zentrale als neuen Content Part herstellen könnte.

Dann bräuchten die meisten User den Adminbereich-Bereich ncih tmehr betreten.


--------------------


well that shoul be possible. The code must be somewhere in de phpwcms.php and has to be included in the
include\inc_front\content\cnt203.article.inc.php
Unfortunately i dont have the time to search, may be next week.

I am far more interested in creating a Message center Content part. :)

Posted: Fri 3. Feb 2006, 06:46
by selbaer
the download works fine for me,
i installed everything but cant find

//ENYM.com login-logout-panel
//thanx to markoehl
case "logout": //Logout
mysql_query("UPDATE ".DB_PREPEND."phpwcms_userlog SET logged_change=".time().", logged_in=0 WHERE logged_user='".$_SESSION["wcs_user"]."' AND logged_in=1;");
session_destroy();
header("Location: ".PHPWCMS_URL."login.php");
exit();
break;
//ENYM.com login-logout-panel


to replace with

//ENYM.com login-logout-panel: changed logout target
//thanx to markoehl
case "logout": //Logout
mysql_query("UPDATE ".DB_PREPEND."phpwcms_userlog SET logged_change=".time().", logged_in=0 WHERE logged_user='".$_SESSION["wcs_user"]."' AND logged_in=1;");
session_destroy();
header("Location: ".PHPWCMS_URL."index.php"); //Target Site you want to be shown after logout
exit();
break;
//ENYM.com login-logout-panel: changed logout target


in my phpwcms.php

Posted: Fri 3. Feb 2006, 07:00
by phalancs
try to find this:

Code: Select all

header("Location: ".PHPWCMS_URL."login.php");
This is the line that redirects you to the given url after logout (see comment for that) The rest is exactly the same

Then just change the part

Code: Select all

"login.php"


to

Code: Select all

"index.php"
and you are fine :)[/quote]

Posted: Fri 3. Feb 2006, 07:24
by selbaer
thx, that was fast,
i will get right on it...

isn't it 7:30 in the morning in hamburg?
i would have never thought someone would answer me that fast :D

Posted: Fri 3. Feb 2006, 07:56
by selbaer
hmmm, so far, so good,
i found the line and replaced the content but now i have on my index/home page my name with a (0) below...no grafic or login/out box

i must have something done wrong

Posted: Fri 3. Feb 2006, 07:57
by selbaer
got it, i see this only when i'm logged in,
i tryed with my sec. computer and there it was working because not logged in,

thx. winx to hamburg

Posted: Fri 3. Feb 2006, 17:19
by dlohma
Es gibt eine kleine Verbesserungsmöglichkeit, wenn man nicht die Standardtabellen verwendet, sondern ein DB_PREPEND.

Code: Select all

				$calink_sql = "SELECT article_id, article_title, article_cid FROM ".
					$DB_PREPEND."phpwcms_article WHERE article_id =".intval($clogin["calink"]).";";
Das $ vor dem DB_PREPEND gehört dort nicht hin!

Wie bekommt das Panel am einfachsten auf jede Seite im linken Menübereich?

Ansonsten gefällt mir das Panel sehr gut !!!

Login-panel

Posted: Fri 3. Feb 2006, 19:26
by Oky
I installed the login-logout panel
But I have some questions about it.

I want the the panel to appear in the right column so I added {RIGHT} In the template -> right:.
I don't want the panel to appear in the navmenu so I've hidden that category, but then the panel will never show.
So I added [ID login]Login[/ID] to the right column.
So that link will always show.
but it will also show when I'm already logged in and that's not what I want. I only want the 'Login-link' to show when not logged in.

Also when I click the login-link, the Main(content)-area will show the Login-article-title + breadcrumb: I don't want the content-area to change when accessing the login panel.
How do I achieve this?

Posted: Fri 3. Feb 2006, 21:54
by Stim
"Paal" and "gthibodeaux" Try : http://www.enym.com

and login with:
username: user
password: phpwcms

Works for me and kan see download link.

login panel in right column

Posted: Fri 3. Feb 2006, 23:20
by Oky
Maybe I should explain what I want in a different way:

For starters: I want the login panel to always appear in the right column.
Something like this:
Image

I've tried putting the following in the template > right-column:
{CONTENT:14}
{PHP:http://www.domain.com/phpwcms/index.php?login}
Those didn't work.

The only thing that sort of works is: [ID Login]Login[/ID]{RIGHT}
But then the 'Content area' also changes when I click the link.

Posted: Sat 4. Feb 2006, 00:36
by phalancs
Okay Oky and all the others asking for that:

SOLUTION for having the panel visible anwhere all the time :)

Why don't you try "jensz's" SHOW_CONTENT Replacement Tag.
I guess this is exactly what you all need. I did it like with that RT:
I dont have the link at hand but you can now download it from the download section on http://www.enym.com (when logged in).

1. use:

{NAV_TABLE_COLUMN:X}
X is the ID of the structure Level containing your menu things.
to have the menu

Code: Select all

Home (ID X)
| (here is an Article with login-logout Panel) (ID a)
|_
   Structure level 1 (ID y)
   |(according article)
|_
   Structure level 2 (ID Z)
   |(according article)
2. Then you additionally put this RT somewhere in your HTML:

{SHOW_CONTENT:a} (where you want the login panel to appear)




The Login-Logout Panel Content has to be in the first level (home). You can call that content to appear anywhere you want if you use jensz
great RT!

Hope that helps!

BTW: I do not have the link to jensz RT at hand, so i uploaded it on the site you can get it when logged in!

http://www.enym.com

"jensz's" SHOW_CONTENT Replacement Tag

Posted: Sat 4. Feb 2006, 01:15
by Oky
Thanks :D
Works like a charm!