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
try the componet "lightpost" just search for it at: http://mamboportal.com
not found any lightpost in downloads section :(
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 :)
vBulletin® v3.8.0, Copyright ©2000-2013, Jelsoft Enterprises Ltd.