Uploaded images do not show on localhost

It would seem your permissions and / or ownership on /usr/share/wordpress/ could be wrong. Try setting this directory to 777 and CHOWN the owner to Apache (on Ubuntu it runs as user www-data). If WordPress was unzipped/expanded in /usr/share/wordpress you would have a folder wp-content – and the /uploads folder should be created in there … Read more

Is there any good way to use SVN for uploads directory?

You could hook into the action add_attachment and perform an SVN commit. add_action( ‘add_attachment’, ‘svn_commit_attachments’ ); function svn_commit_attachments( $attachment_ID ) { // collect data about the attachment, for example its path, the user and so on. shell_exec ( ‘$ svn commit -m “$user added file $filename.”‘ ) }

Restrict authors to seeing ONLY their media files

Not tested, but maybe you can just extend the $pagenow check? Instead of … if( ‘upload.php’ != $pagenow ) … try … if( ! in_array( $pagenow, array ( ‘upload.php’, ‘post-new.php’, ‘post.php’ ) ) ) That should cover the post editor screens too.

Symbolic link for uploads in wordpress

You will need to ensure that your web server has symlinks enabled. For Apache2, this is Options FollowSymLinks. For Nginx, the option is disable_symlinks off;. If you are not using either of these, you may need to consult your servers documentation. If you are you using a web hosting provide, you can also see if … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)