WordPress: Allowing contributors to upload media

  This is the simplest way I found to allow for contributors to upload media on your WordPress blog:   Add this to the functions.php file in your current theme:       if ( current_user_can('contributor') && !current_user_can('upload_files') ) add_action('admin_init', 'allow_contributor_uploads');   function allow_contributor_uploads() { $contributor = get_role('contributor'); $contributor->add_cap('upload_files'); }… Continue reading

(gs): Installing BugZilla into a subdomain

Download a BugZIlla tarball Extract it to a public accessible web folder     Install all needed modules: /usr/bin/perl install-module.pl –all (lots of output)   Make the folder writable by the apache server chmod a+w . ./checksetup.pl   Change it's settings nano ./localconfig —————-   $webservergroup = ''; $db_driver = 'mysql';… Continue reading