Posted: Fri 30. Jul 2004, 10:35
War ja schon Trollt...ähh Freitag und nicht wirklich bös gemein!
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
hallo jkjmeyknecht wrote:ich weiss ja nicht, was ihr hier immer zwischen den Zeilen lest.
Hallo? Ich bin ein großer Fan von phpwcms und stelle es doch überhaupt nicht in Frage! Sonst würde ich dem Projekt doch überhaupt nicht so viel Zeit widmen, Mods entwickeln und es selbst benutzen.
Wenn Frontend Login im nächsten Release drinne ist, ist das doch auch eine tolle Sache. Deswegen sollte es doch aber kein Problem sein, bis dahin Frontend Logins als Mod zu benutzen. Meine Frage ging doch auch eher dahin, ob kurtyy die nötigen Änderungen einfach mal beschreibt (vielleicht hat er das ja sowieso schon) und veröffentlicht. Wenn er das nicht tut, isses doch auch kein Beinbruch.
Also, alle mal ganz locker bleiben
hallo cgcguenther wrote:Es war doch nur gefragt, ob der Frontendlogin-MOD mal dokumentiert werden könnte.
Es ist erfreulich, wenn das im nächsten Release drin sein sollte, allerdings vermisse ich dazu mal eine Roadmap, was in den nächsten Releases erwartet werden kann. Für mich ist es so, dass ich bei jedem Punkt, den ich als Missing im phpwcms einstufe, überlege ob ich dafür ein MOD schreibe & das u.u. im Release - das im blödesten Fall released wird, sobald ich meinen MOD fertig habe - nicht eingebaut ist.
Das ist doch nun mal echt der beschissenste Fall, dass man 'nen MOD baut, der am nächsten Tag nciht mehr gebraucht wird - oder sehe ich das flasch?
genau das ist mein problemPappnase wrote:[...] aber sie sagt ja leider nicht aus wann was kommt!*lächel*
I followed the instruction above,Jan212 wrote:THE ADDON IS RELEASED BY KURTYY_RESPECT TO HIM
SHORT TUTORIAL
INSTALLATION
Download the files at:
http://www.mendt.de/cmsdev.tar.gz
http://kurtyy.dyndns.org/cmsdev/cust_ac ... php.tar.gz
1. Run the CMS Basic Setup. Setup the right values in cms/.htpassword and .htaccess
1a) Don't patch up (now it's on 15.02.2004) - kurtyy will patch it as soon as possible.
2. Run the following SQL Code:
a) To create frontend user
------------------------------------------------
CREATE TABLE `phpwcms_front_users` (
`user_id` tinyint(4) NOT NULL auto_increment,
`creation_date` timestamp(14) NOT NULL,
`user_name` varchar(100) NOT NULL default '',
`user_pass` varchar(255) NOT NULL default '',
`user_full_name` varchar(255) NOT NULL default '',
`user_email` varchar(255) NOT NULL default '',
`user_active` char(1) NOT NULL default 'Y',
`user_admin` char(1) NOT NULL default 'N',
PRIMARY KEY (`user_id`)
) TYPE=MyISAM;
------------------------------------------------
b) Create the Blog Addons Table
------------------------------------------------
CREATE TABLE `phpwcms_blog` (
`blog_id` int(11) NOT NULL auto_increment,
`blog_author` varchar(255) NOT NULL default '',
`blog_date` datetime NOT NULL default '0000-00-00 00:00:00',
`blog_uid` int(11) NOT NULL default '0',
`blog_title` varchar(255) NOT NULL default '',
`blog_summary` blob NOT NULL,
`blog_aktiv` int(1) NOT NULL default '0',
`blog_public` int(1) NOT NULL default '0',
PRIMARY KEY (`blog_id`),
KEY `date` (`blog_date`)
) TYPE=MyISAM
------------------------------------------------
WARNING - remember to include your "db_prepend" eg: cms_table_phpwcms_front_users !!!
3. That's it.
FEATURES
You can use the following Replacement Tags.
1. {LOGIN} - showw the Login Form (Login for Frontend Users).
2. {SITEMAP} - creates a menu based sitemap in a pop up window.
3. {FRONTUSEREMAIL} - shows the email of the frontend user.
4. {FRONTUSERNAME} - shows the whole name of the frontend user.
5. {FRONTLOGOFF} - generates a logoff button for the frontend user.
With this Tags you can define the Content status.
6. [LOGIN] only visible for logged in users [/LOGIN]
7. [NOLOGIN] only visible for logged out users [/NOLOGIN]
8. [ADMINLOGIN] only visible for logged in admins [/ADMINLOGIN]
ADMINAREA
1. You can setup the Frontend Users
2. Htmlarena comes with two new features
-include dyn-functions (date...) --> if u need more, tell me
-add pictures from database, just using an comfortable select list
(pictures need to be set public AND active in the file area !!!!)
And another nice thing:
Now you can include PHP in articles like this:
<? echo date("D.M.Y") ; ?>
Questions