• [ Moderator note: moved to Fixing WordPress. ]

    Does anyone know of a plugin for WP that lets users/members upload small files to the site for sharing? (private server, so space is my only limitation.)

    I searched plugins but there are just too many to sort through and most only allow the Admin to attach a download. ??

    Thx.

    [ No bumping please. ]

Viewing 1 replies (of 1 total)
  • You can do that with many ways which all can manipulate the maximum upload size.

    in the functions.php file you can paste that there
    @ini_set( ‘upload_max_size’ , ‘5M’ );

    Or edit from php.ini file in the server search for that
    upload_max_filesize = 5M

    Or from htaccess file
    php_value upload_max_filesize 64M

Viewing 1 replies (of 1 total)
  • The topic ‘Need a plugin lets USERS upload small attachments’ is closed to new replies.