Against what frontend users should be authenticated?

Discuss phpwcms here, please do not post support requests, bug reports, or feature requests! Non-phpwcms questions, discussion goes in General Chat!

Against what database frontend users should be authenticated?

backend users
7
13%
frontend users (create new db table)
44
81%
external users (e.g. Nuke...)
3
6%
 
Total votes: 54

User avatar
Oliver Georgi
Site Admin
Posts: 9892
Joined: Fri 3. Oct 2003, 22:22
Contact:

Against what frontend users should be authenticated?

Post by Oliver Georgi »

I have added a new checkbox in site structure editing which is used to mark this structure level as "visible only for frontend users". An article and/or content part based extended version will be available later (but it is simple).

It will be a very poor solution at the moment. But it is planned to be extended for use of special frontend users/usergroups later.

Please fill in the poll or write some thought of your own.

Thank you
Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post by frold »

I do not understand the Q!
http://www.studmed.dk Portal for doctors and medical students in Denmark
vvo
Posts: 50
Joined: Sun 9. Nov 2003, 14:07
Location: Netherlands

Post by vvo »

I believe Oliver means that your website could contains parts/articles only viewable after login (at the frontend). Some sort of protected area or intranet usage.

The frontend user should be no backend user IMHO.

Greetz,

Johan.
MarcoB
Posts: 30
Joined: Thu 13. Nov 2003, 03:30
Contact:

phpwcms.nl

Post by MarcoB »

For all dutch viewers,

http://www.phpwcms.nl
Professional webhosting...
http://www.silver.nl - sales@silver.nl
waggis
Posts: 18
Joined: Wed 31. Dec 2003, 13:59

Post by waggis »

a kind of extranet or members only section ? great thing!

waggis
tcm
Posts: 7
Joined: Fri 9. Jan 2004, 12:37

Post by tcm »

Könntest du das ganze nochmal auf deutsch erklären?
Alexander Schlegel
Posts: 108
Joined: Fri 10. Oct 2003, 15:11
Location: München
Contact:

Post by Alexander Schlegel »

Ich hoffe, dass ich jetzt richtig gevotet habe, wenn Lösung 2 für einen geschützten Bereich für User von außen steht ... Naja, wird schon stimmen ...;)

Gruß
Alexander
waggis
Posts: 18
Joined: Wed 31. Dec 2003, 13:59

Post by waggis »

i try to explain what oliver means:
a frontend user can have acces to a kind of restricted area of the site.
the question is: where are those users regitrated ? in the backend like
administrators and publishers or in the frontent (new table
in the database) ?

my own wish is: frontend (in a new table in the database).

oliver, do you also plan user groups ? by restricting the pages where
users are allowed ? e.g. special pages for customers / for resellers ?

waggis
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post by frold »

waggis wrote:i try to explain what oliver means:
a frontend user can have acces to a kind of restricted area of the site.
the question is: where are those users regitrated ? in the backend like
administrators and publishers or in the frontent (new table
in the database) ?

my own wish is: frontend (in a new table in the database).

oliver, do you also plan user groups ? by restricting the pages where
users are allowed ? e.g. special pages for customers / for resellers ?

waggis
now I get... well I have chosen frontend (in a new table in the database) because I understand feature like this:

On the frontend it will be able for users to login and then see pages that are not visible for "normal" users. This would be good for me, eg. if the site have a phonelist that is not going to be public etc.... This would be a VERY greate feature I think. This way you can also hide content for search engines etc....
Last edited by frold on Sun 11. Jan 2004, 17:06, edited 2 times in total.
http://www.studmed.dk Portal for doctors and medical students in Denmark
hblaschka
Posts: 10
Joined: Sun 4. Jan 2004, 15:06
Location: Weil am Rhein, Germany
Contact:

Post by hblaschka »

Just a little reminder:
Oli, try to code a way that enables us to extend the code to other authentication-sources like NDS/ADS via LDAP in the future....
Think about that:
The following statement is true!
The last statement is false!
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post by frold »

frold wrote:now I get... well I have chosen frontend (in a new table in the database) because I understand feature like this:

On the frontend it will be able for users to login and then see pages that are not visible for "normal" users. This would be good for me, eg. if the site have a phonelist that is not going to be public etc.... This would be a VERY greate feature I think. This way you can also hide content for search engines etc....
and you can share internal files (there aren´t going to be public) etc....

Actually the point of the backend right now is not the way I would like...

Functions like internal chat and messages should be visible via frontend after you login and the backend should ONLY be accesible for the admin.

Right now you mix admin and users using the same backend - and that is not optimal ....

Just what I think, but I´m not going to share my the backend with 10+ users so actually I don´t care :D - but that was my opinon... and I will stil use phpwcms anyway!! :lol: :lol: :lol: :lol: :lol: :lol:
http://www.studmed.dk Portal for doctors and medical students in Denmark
User avatar
Oliver Georgi
Site Admin
Posts: 9892
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

:shock: I have absolutely no experience in solving this at the moment (LDAP). So this can be extended later - now it has to work :wink: as described.

And I've made a decision. For faster implementation and more consistent developement it's recommand to have only 1 user database. But this will be extended for handling frontend and backend users.

I will create an external authenticate/frontend login check. This can be changed easy for your needs - also athenticate against other non phpwcms user databases.

Multiple frontend permissions can be included later. Now the have of such login process would be an important step.

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
Florian
Posts: 119
Joined: Wed 19. Nov 2003, 16:50
Location: Hamburg
Contact:

Post by Florian »

Hello together!

It might be telepathy. I started today buliding a Frontenduser solution for phpwcms.
I'd choosed the second solution. I made a table with this design:


Code: Select all

CREATE TABLE phpwcms_feuser (
  feu_id int(11) NOT NULL auto_increment,
  feu_login varchar(30) NOT NULL default '',
  feu_pass (50) NOT NULL default '',
  feu_email varchar(150) NOT NULL default '',
  feu_thislogintime(14) NOT NULL,
  feu_lastlogin timestamp(14) NOT NULL,
  feu_overalllogin int(4) NOT NULL default '0',
  feu_active int(1) NOT NULL default '0',
  feu_lang varchar(50) NOT NULL default '',
  feu_title varchar(50) NOT NULL default '',
  feu_firstname varchar(50) NOT NULL default '',
  feu_lastname varchar(100) NOT NULL default '',
  feu_company varchar(100) NOT NULL default '',
  feu_street varchar(120) NOT NULL default '',
  feu_city varchar(120) NOT NULL default '',
  feu_zip varchar(50) NOT NULL default '',
  feu_country char(2) NOT NULL default '',
  feu_fon varchar(30) NOT NULL default '',
  feu_fax varchar(30) NOT NULL default '',
  feu_mobile varchar(30) NOT NULL default '',
  feu_newsletter int(1) NOT NULL default '1',
  PRIMARY KEY  (feu_id)
) TYPE=MyISAM COMMENT='Table for the frontend user data';

So you've got all basic claims data you maybe need.
Overall it's a VERY IMPORTANT and usefully option which will hopefully be published shortly :D

Cheers,
Florian
adriano
Posts: 165
Joined: Sun 16. Nov 2003, 15:24
Location: Bremerhaven
Contact:

Post by adriano »

Grundsätzlich sollten für den Frontenduser möglichst viele Bereich nutzbar sein mit nur einem Login pro Website. Ich sehe schon auf meiner Site mindestens vier verschiedene Logins: Einmal phpwcms, einemal phpbb, einmal die Bilddatenbank Coppermine und zum Schluß noch das Projektmanagment für meine Kunden.

Also, je mehr ich die Daten zentralisieren kann auf meinem Servier, desto besser. Schließe daraus bitte meinen Wunsch, Oliver.
Fotos von Norddeutschland und der Nordseeküste
Photos of Northern Germany and the North Sea Coast:
http://www.wackernah.net
fitus
Posts: 88
Joined: Sat 13. Dec 2003, 19:04

Post by fitus »

wie wärs mit beidem, das sich user vonselbst registrieren können aber auch nur vom admin einen zugan erhalten können.
Post Reply