Page 1 of 3

how do I use this?

Posted: Thu 6. Nov 2003, 16:26
by itsu
I installed wcms. and know able to login(maybe). When I login from login.php, nothing happen except the name of user that I use to login displayed under 'USER ONLINE'.

How do I get into editing mode?
Do I have any configuration problem?

Now I have no idea. please help me.
thanks.

Posted: Thu 6. Nov 2003, 17:15
by Oliver Georgi
look for the navigation on top.

You are the admin - go to admin nav - site structure and create the structure you like

if this is done you can begin to edit under article

some starter documentation is online
http://www.phpwcms.de?documentation

Posted: Thu 6. Nov 2003, 22:58
by ManiacViper
Hi,

I have the same problem. When you want to login your username is displayed under User online. Then try to enter your username and password again, then you should see the admin section.

bye Daniel

Posted: Thu 6. Nov 2003, 23:04
by Oliver Georgi
Maybe (I have never seen) the redirection to the "real" phpwcms page is not working well. If you think you are logged in try to load the page "phpwcms.php".

Oliver

Posted: Fri 7. Nov 2003, 03:15
by itsu
I enter phpwcms.php, but It redirect me to the login.php.
Looks like I 'm not logged in yet.
After user name displayed under 'USER ONLINE'.
I tried to login again. but I can't.

Which setting do I have to checkout?
I tried to set all Directory and file permission to 777.

I'm sure that I have a user in DB.

Posted: Fri 7. Nov 2003, 03:24
by dfault
I have the same Problem! can't login... just shows me that Im online.

I tried to comment out the usercheck file, to be able to check the admin interface out... I can navigate through it but cant create anything or upload... just gives me a mySQL create table Error...

Don't know if this Is because of the login problem... Are there any settings In php.ini that must be right?

Posted: Fri 7. Nov 2003, 08:45
by Oliver Georgi
Maybe this also can be session problems with your PHP installation. I have no tip to handle this - I have made installations on vary systems and never saw such problem.

Your browser have to support cookies AND javascript.

Oliver

Posted: Fri 7. Nov 2003, 08:46
by itsu
Does wcms record any log in anywhere?

this is how it look, when I try to login.
Image :cry:

I want to use it early. This looks very cool. and It seems to be convenient.

Posted: Fri 7. Nov 2003, 08:47
by Oliver Georgi
How is it if you try to jump to phpwcms.php?

Posted: Fri 7. Nov 2003, 08:57
by itsu
As I wrote It above, It doesn't work.

Posted: Fri 7. Nov 2003, 09:00
by Oliver Georgi
Fxxx - I really don't know how I can help you :(? Maybe give me a login to your account and the link (if possible).

Your database works :)

Oliver

Posted: Fri 7. Nov 2003, 09:02
by (Murphy)
I do have the same problem. When I try to jump to phpwcms.php I get redirected to login.php

So I commented out "require_once ("include/inc_lib/checklogin.inc.php");" in phpwcms.php to get that page running. It then works partly.

I get the options: ARTICLE, FILE, MESSAGE, CHAT, PROFILE

I can make new articles but their content won't get saved:

Code: Select all

error while creating new article content
sql: INSERT INTO phpwcms_articlecontent (acontent_aid, acontent_uid, acontent_title, acontent_text, acontent_type, acontent_sorting, acontent_visible, acontent_subtitle, acontent_before, acontent_after, acontent_top, acontent_image) VALUES (4, , '', 'Sinnloser Fülltext', 1, 0, 0, '', '', '', 0, '');
The File-Menu tells me this:

Code: Select all

error while counting user files

Posted: Fri 7. Nov 2003, 09:09
by Oliver Georgi
Session problems!

Code: Select all

phpwcms_articlecontent (acontent_aid, acontent_uid, ...)
                                      ============
VALUES (4,       , '', 'Sinnloser Fülltext', 1, 0, 0, '', '', '', 0, '');
           =====
Look at the "=" parts. No User ID is available - that's why nothing works!!! Check that PHP session creation works.

Oliver

Posted: Fri 7. Nov 2003, 09:19
by itsu
Thanks for analyzing my problem.
I have to say sorry because I don't have enough knowledge about PHP.
Could you please teach me how to check PHP session creation works in detail?

Posted: Fri 7. Nov 2003, 09:20
by (Murphy)
I guess I have this session problem, because I did not really log in?

So I uncommented the user check again to see what my error.log will tell. This is what it says:

Code: Select all

[Fri Nov  7 09:14:01 2003] [error] PHP Notice:  Undefined index:  form_aktion in /Library/WebServer/Documents/phpwcms/login.php on line 39
[Fri Nov  7 09:14:01 2003] [error] PHP Notice:  Undefined variable:  err in /Library/WebServer/Documents/phpwcms/login.php on line 149
[Fri Nov  7 09:14:01 2003] [error] PHP Notice:  Undefined variable:  wcs_user in /Library/WebServer/Documents/phpwcms/login.php on line 159
[Fri Nov  7 09:14:15 2003] [error] PHP Notice:  Undefined index:  form_aktion in /Library/WebServer/Documents/phpwcms/login.php on line 39
[Fri Nov  7 09:14:15 2003] [error] PHP Notice:  Undefined variable:  err in /Library/WebServer/Documents/phpwcms/login.php on line 149
[Fri Nov  7 09:14:15 2003] [error] PHP Notice:  Undefined variable:  wcs_user in /Library/WebServer/Documents/phpwcms/login.php on line 159
My actions: call login.php -> login as "webmaster" with "admin" as password.
The log in procedure does not jump to phpwcms.php but returns to login.php (showing the user "webmaster" as being logged in).