PDA

View Full Version : User Send News


fbnet
01.07.2004, 05:02
Hello,

i'm searching for anything that give any user acces to "POST" news, but i didn't found anything... :(

do you know any component/addon that do this? :question:

i'm looking for something that any registed user could send "text" to a specific category... :eek:

thanks. :O

mrjinx
08.07.2004, 15:26
try the componet "lightpost" just search for it at: http://mamboportal.com

TheSpy
03.08.2004, 14:18
not found any lightpost in downloads section :(

TheSpy
05.08.2004, 18:50
I found how to make user access to put news.

1. Find includes/gacl.class.php file.
2. Insert into 158,159 lines this

array( 'action', 'add', 'users', 'registered', 'content', 'all' ),
array( 'action', 'edit', 'users', 'registered', 'content', 'own' ),

It'll be:

// actions
array( 'action', 'add', 'users', 'registered', 'content', 'all' ),
array( 'action', 'edit', 'users', 'registered', 'content', 'own' ),

array( 'action', 'add', 'users', 'author', 'content', 'all' ),
array( 'action', 'add', 'users', 'editor', 'content', 'all' ),
array( 'action', 'add', 'users', 'publisher', 'content', 'all' ),
array( 'action', 'edit', 'users', 'author', 'content', 'own' ),
array( 'action', 'edit', 'users', 'editor', 'content', 'all' ),
array( 'action', 'edit', 'users', 'publisher', 'content', 'all' ),
array( 'action', 'publish', 'users', 'publisher', 'content', 'all' ),
............

That's all :)