| | | |  |  | |  |
15.11.2004, 17:38
|
#1 (permalink)
| | Baby Mamber
Join Date: Nov 2004
Posts: 6
| Publishing Hi,
My users are not able to submit news. My publishers are not able to create new items. Can anyone help?
Cheers! |
| |
16.11.2004, 00:09
|
#2 (permalink)
| | Junior Mamber
Join Date: Aug 2004
Posts: 40
| Re: Publishing Quote: |
Originally Posted by krooman Hi,
My users are not able to submit news. My publishers are not able to create new items. Can anyone help?
Cheers! | Please state the nature of the medical emergency, do they get an error message or are they plain stupid
Did you create and enable the users and did you assign them editor and publisher rights ?
__________________ Going On, means going far, Going Far means Returning |
| |
17.11.2004, 14:17
|
#3 (permalink)
| | Baby Mamber
Join Date: Nov 2004
Posts: 6
| Re: Publishing Thanks. Actually, they do not get the editor to allow then to submit the content. As an admin, I log in from the frontend and found the same problem. No editior displays.
Thks  |
| |
18.11.2004, 17:46
|
#4 (permalink)
| | Junior Mamber
Join Date: Aug 2004
Posts: 40
| Re: Publishing Is you site on-line to see what's happening ?
In the global settings of the site did you select a editor ?
And what about the rights of the directories, are they set as well ?
__________________ Going On, means going far, Going Far means Returning |
| |
18.11.2004, 17:56
|
#5 (permalink)
| | Baby Mamber
Join Date: Nov 2004
Posts: 6
| Re: Publishing Prenkenma Thanks,
The site is www.portal.wadn.org
I will proceed and check the global settings.
Really appreciate your help.
Krooman |
| |
19.11.2004, 01:20
|
#6 (permalink)
| | Junior Mamber
Join Date: Aug 2004
Posts: 40
| Re: Publishing apart from my private messages also I found this link for you : http://www.tim-online.nl/index.php/c...+store+failed/
I think this is causing your problems.
by the way, please check and verify before we can start wroking on a solution
__________________ Going On, means going far, Going Far means Returning |
| |
20.11.2004, 17:27
|
#7 (permalink)
| | Baby Mamber
Join Date: Nov 2004
Posts: 6
| Re: Publishing Excellent...thanks |
| |
21.11.2004, 01:29
|
#8 (permalink)
| | Junior Mamber
Join Date: Aug 2004
Posts: 40
| Re: Publishing Hi,
Please verify and confirm the user have the proper rights, they are Author, Editor or Publisher....
Several times when I try to submit News or a link : or I get the not authorized message : or submitting the news gives me only three buttons but no possibility to enter something, the weblinks show but don't allow me to save........
I fixed a similar problem for a co-worker by the following :
The problem itself is basically hand-made by Mambo. I would call it bug actually. Mambo is using a random number plus the REMOTE_ADDR to create a unique session ID using the md5() function. See mambo.php, line 2071:
Code:
$this->session_id = md5( $randnum . $_SERVER['REMOTE_ADDR'] );
When checking if a session ID has been given to the client Mambo of course decrypts the session ID (taken from the local cookie) with the same method using REMOTE_ADDR. See mambo.php, line 259:
Code:
if ($session->load( md5( $sessioncookie . $_SERVER['REMOTE_ADDR'] ) )) {
Since the request may come from a different proxy server having a different REMOTE_ADDR the comaprison to the originally assigned one fails. Voila, you get a new session ID.
Since the creation of the session ID is done via md5() applied to a combination of md5(uniqid( microtime(),1)) and REMOTE_ADDR, one can say that it is already unique even without combining it with REMOTE_ADDR. So for the sake of combining it with and IP address you can also use SERVER_ADDR (which at least will not change).
That is exactly what I have done in mambo.php to solved this problem:
mambo.php, line 259:
Code:
if ($session->load( md5( $sessioncookie . $_SERVER['SERVER_ADDR'] ) )) {
mambo.php, line 2071:
Code:
$this->session_id = md5( $randnum . $_SERVER['SERVER_ADDR'] );
Look luck and let me know
Peter
P.S. You have several problems, with pictures as well (they don't show)
__________________ Going On, means going far, Going Far means Returning |
| |
21.11.2004, 16:52
|
#9 (permalink)
| | Baby Mamber
Join Date: Nov 2004
Posts: 6
| Re: Publishing Peter,
This is great! Very great! I sent a mail to you the other day...did you get it?
Okay, I have edited the codes...However, nothing has changed. Its still the same. I check the permissions and they are okay.
I have changed the editor and its still the same?
Is there special security for the frontend that overrides any user settings?
Regards
Last edited by krooman; 21.11.2004 at 18:00.
Reason: New Info
|
| |
22.11.2004, 01:21
|
#10 (permalink)
| | Junior Mamber
Join Date: Aug 2004
Posts: 40
| Re: Publishing Quote: |
Originally Posted by krooman Peter,
This is great! Very great! I sent a mail to you the other day...did you get it?
Okay, I have edited the codes...However, nothing has changed. Its still the same. I check the permissions and they are okay.
I have changed the editor and its still the same?
Is there special security for the frontend that overrides any user settings?
Regards | OK, we have to dig in a little bit more.
Switch on "Debug Site" (global configurastion) and see what happens when you try to submit a link and/or news (site show normal, but scroll down to see what happens, hopefully we get some information to investigate......
And do you have access to the log file of the webserver ??
Good Luck
__________________ Going On, means going far, Going Far means Returning |
| | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT +2. The time now is 05:33. | | | |