Members: 16,996
Threads: 38,846
Posts: 159,391
Online: 22

Newest Member: Kl_broka@rediffmail.com


Odoo.tv - Outdoor Television


Sedo - Domains kaufen und verkaufen das Projekt mambers.com steht zum Verkauf Besucherstatistiken von mambers.com etracker® Web-Controlling statt Logfile-Analyse
Old 15.11.2004, 17:38   #1 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 6
krooman is on a distinguished road
Thumbs up Publishing

Hi,
My users are not able to submit news. My publishers are not able to create new items. Can anyone help?
Cheers!
krooman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Old 16.11.2004, 00:09   #2 (permalink)
Junior Mamber
 
prenkema's Avatar
 
Join Date: Aug 2004
Posts: 40
prenkema is on a distinguished road
Smile 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
prenkema is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 17.11.2004, 14:17   #3 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 6
krooman is on a distinguished road
Default 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
krooman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 18.11.2004, 17:46   #4 (permalink)
Junior Mamber
 
prenkema's Avatar
 
Join Date: Aug 2004
Posts: 40
prenkema is on a distinguished road
Default 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
prenkema is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 18.11.2004, 17:56   #5 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 6
krooman is on a distinguished road
Default Re: Publishing

Prenkenma Thanks,
The site is www.portal.wadn.org
I will proceed and check the global settings.
Really appreciate your help.
Krooman
krooman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 19.11.2004, 01:20   #6 (permalink)
Junior Mamber
 
prenkema's Avatar
 
Join Date: Aug 2004
Posts: 40
prenkema is on a distinguished road
Default 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
prenkema is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 20.11.2004, 17:27   #7 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 6
krooman is on a distinguished road
Default Re: Publishing

Excellent...thanks
krooman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 21.11.2004, 01:29   #8 (permalink)
Junior Mamber
 
prenkema's Avatar
 
Join Date: Aug 2004
Posts: 40
prenkema is on a distinguished road
Default 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
prenkema is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 21.11.2004, 16:52   #9 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 6
krooman is on a distinguished road
Default 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
krooman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 22.11.2004, 01:21   #10 (permalink)
Junior Mamber
 
prenkema's Avatar
 
Join Date: Aug 2004
Posts: 40
prenkema is on a distinguished road
Default 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
prenkema is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
News Publishing MarkM Mambo 4.5.1 'How Do I' Questions 0 20.10.2004 07:25
News Publishing easier Rajio Mambo 4.5 'How Do I' Questions 1 27.08.2004 17:35
MSAS publishing problem sinanata Mambo 4.5 'How Do I' Questions 1 21.08.2004 06:09
Publishing An Event From The Front End pplaut Mambo 4.5 'How Do I' Questions 4 19.05.2004 14:08
New component publishing joost Mambo 4.5 General Talk 1 08.05.2004 17:01


All times are GMT +2. The time now is 05:33.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
A vBSkinworks Design
© Copyright 2004-2008 by Arthur Konze Webdesign.