how do I use this?
how do I use this?
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.
How do I get into editing mode?
Do I have any configuration problem?
Now I have no idea. please help me.
thanks.
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
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
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
-
- Posts: 4
- Joined: Mon 3. Nov 2003, 15:09
- Location: Dresden
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
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.
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.
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?
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?
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
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
Your browser have to support cookies AND javascript.
Oliver
Last edited by Oliver Georgi on Fri 7. Nov 2003, 08:46, edited 1 time in total.
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
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:
The File-Menu tells me this:
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, '');
Code: Select all
error while counting user files
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Session problems!
Look at the "=" parts. No User ID is available - that's why nothing works!!! Check that PHP session creation works.
Oliver
Code: Select all
phpwcms_articlecontent (acontent_aid, acontent_uid, ...)
============
VALUES (4, , '', 'Sinnloser Fülltext', 1, 0, 0, '', '', '', 0, '');
=====
Oliver
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:
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).
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
The log in procedure does not jump to phpwcms.php but returns to login.php (showing the user "webmaster" as being logged in).