[UPDATE] phpwcms PRE 1.2.2-DEV ist da !!!

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
nepo
Posts: 4
Joined: Mon 26. Apr 2004, 22:30
Location: bei Oldenburg (Oldb)
Contact:

[UPDATE] phpwcms PRE 1.2.2-DEV ist da !!!

Post by nepo »

Hallo Leute,

eine neue Release PRE 1.2.2-DEV steht zum "Rumprobieren" zur Verfügung.

Ein wichtiger Hinweis !!! :!:

Dies ist eine NICHT offizielle PRE-DEV RELEASE!!!
NO SUPPORT

Updated release - some fixes and patches:
http://www.phpwcms.org/phpwcms_pre1.2.2-dev.zip
http://www.phpwcms.org/phpwcms_pre1.2.2-dev.rar

Viel Spaß beim Rumtesten!!!

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

Post by Oliver Georgi »

Achtung. Die ist wirklich nur für ganz Ungeduldige.

Ist aber soweit stabil und beinhaltet u.a. den Patch zum Kopieren von Content Parts.

Update 11.04.2005 - nicht mehr nötig:
Ihr müsst unbedingt - AUCH BEI NEUINSTALLTION - die upgrade.php öffnen und das Datenbankupdate von 1.2.1 auf 1.2.2 machen oder das hier manuell hinzufügen:

Code: Select all

ALTER TABLE `phpwcms_user` ADD `usr_wysiwyg` INT( 2 ) NOT NULL ;
ALTER TABLE `phpwcms_user` ADD `usr_fe` INT( 1 ) NOT NULL ;
UPDATE `phpwcms_user` SET usr_fe =2 ;
ALTER TABLE `phpwcms_userlog` ADD `logged_section` INT( 1 ) NOT NULL ;
CREATE TABLE `phpwcms_sysvalue` (
	`sysvalue_key` VARCHAR( 255 ) NOT NULL ,
	`sysvalue_tstamp` TIMESTAMP NOT NULL ,
	`sysvalue_value` MEDIUMBLOB NOT NULL ,
	PRIMARY KEY ( `sysvalue_key` ) ,
	FULLTEXT ( `sysvalue_key` )
);
ALTER TABLE `phpwcms_article` ADD `article_nositemap` INT( 1 ) DEFAULT '0' NOT NULL ;
ALTER TABLE `phpwcms_articlecat` ADD `acat_nositemap` INT( 1 ) DEFAULT '0' NOT NULL ;
Oliver
Last edited by Oliver Georgi on Mon 11. Apr 2005, 21:53, edited 1 time in total.
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
Rainer G
Posts: 377
Joined: Wed 16. Feb 2005, 10:26
Location: Hannover - Germany
Contact:

Post by Rainer G »

Was sind denn die Neuerungen gegenüber der 1.2.1?
rushclub
Posts: 915
Joined: Tue 17. Feb 2004, 18:52

Post by rushclub »

i havent had the time to install the new version yet, but there is a file called ›fe_user_login.inc.php‹. is there a frontend login integrated now?

cheers
rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
rushclub
Posts: 915
Joined: Tue 17. Feb 2004, 18:52

Post by rushclub »

have installed the new version with the sql-update but i am not able to login. sqltables are filled. i see my username in phpmyadmin but the login is not working. anyone has an idea?

cheers
rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
Paal
Posts: 204
Joined: Wed 6. Oct 2004, 19:54
Location: Budapest, Hungary
Contact:

Post by Paal »

After fresh install, can't login... :?
User avatar
dbaron
Posts: 74
Joined: Tue 25. Jan 2005, 11:53
Location: France

Post by dbaron »

I did and it works, just update the database with the code than Oliver gave:

Code: Select all

ALTER TABLE `phpwcms_user` ADD `usr_wysiwyg` INT( 2 ) NOT NULL ;
ALTER TABLE `phpwcms_user` ADD `usr_fe` INT( 1 ) NOT NULL ;
UPDATE `phpwcms_user` SET usr_fe =2 ;
ALTER TABLE `phpwcms_userlog` ADD `logged_section` INT( 1 ) NOT NULL ;
CREATE TABLE `phpwcms_sysvalue` (
   `sysvalue_key` VARCHAR( 255 ) NOT NULL ,
   `sysvalue_tstamp` TIMESTAMP NOT NULL ,
   `sysvalue_value` MEDIUMBLOB NOT NULL ,
   PRIMARY KEY ( `sysvalue_key` ) ,
   FULLTEXT ( `sysvalue_key` )
);
ALTER TABLE `phpwcms_article` ADD `article_nositemap` INT( 1 ) DEFAULT '0' NOT NULL ;
ALTER TABLE `phpwcms_articlecat` ADD `acat_nositemap` INT( 1 ) DEFAULT '0' NOT NULL ;
But I don't know how the login/logout for users works :cry:
rushclub
Posts: 915
Joined: Tue 17. Feb 2004, 18:52

Post by rushclub »

also with the sl-query it didnt work for me.

cheers
rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
purnsam
Posts: 12
Joined: Tue 1. Feb 2005, 02:34

login o.k.

Post by purnsam »

After install, login doesn't work.

so I looked login.php

line 123
aporeplace(md5($wcs_pass))."') AND usr_aktiv=1 AND (usr_fe=1 OR usr_fe=2);";

but there is no usr_fe field in phpwcms_user table. so I changed it into
line 123
aporeplace(md5($wcs_pass))."') AND usr_aktiv=1;";

Oliver, please check this.

Now login is working. I going to look what is changed....

regards,
User avatar
dbaron
Posts: 74
Joined: Tue 25. Jan 2005, 11:53
Location: France

Post by dbaron »

purnsam, you are wrong, because you need to install, and then, before login for the first time, you need to alter the tables with the code above.

Am I wrong?
purnsam
Posts: 12
Joined: Tue 1. Feb 2005, 02:34

Post by purnsam »

Thanks. dbaron.

I can't speak german. so I didn't know that.
After install, I executed above sql code. so now...

Now login is working. everything is O.K :)

I found:
- copy&past article function not working at root level and working at other level
- copy&past article content part function working..
- forum topic write & reply functin working...
- forum topic author always displaying as guest
- forum topic access function not working... ( everybody can always write)
Last edited by purnsam on Wed 6. Apr 2005, 16:46, edited 4 times in total.
User avatar
dbaron
Posts: 74
Joined: Tue 25. Jan 2005, 11:53
Location: France

Post by dbaron »

Me too, can't speak german, and just a little english :lol:

Could you tell me if you can use the login/logout functions for the frontend users? Impossible for me to work :cry:
rushclub
Posts: 915
Joined: Tue 17. Feb 2004, 18:52

Post by rushclub »

dbaron wrote:purnsam, you are wrong, because you need to install, and then, before login for the first time, you need to alter the tables with the code above.

Am I wrong?
have done it that way but it didnt work ;(

cheers
rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post by frold »

frontend users
I pretty sure that frontend users doesnt work - else would Pappnase or OG make a post about it... we are many ppl who just wait on that feature and Im sure OG already know that ;-)
http://www.studmed.dk Portal for doctors and medical students in Denmark
cyrano
Posts: 1598
Joined: Sat 31. Jan 2004, 18:33
Location: Stuttgart
Contact:

Post by cyrano »

now you can define and setup a frontend user, but didn't find out to setup a login anyway...

so this is a preprerelease.

but nice to see the more steps..
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
Post Reply