Support » Fixing WordPress » Larger Audio Files; what's the preferred method?

  • I want to upload mp3 files that are larger than the WordPress 7mb limit. What’s the preferred way to do this?

      direct upload to server?
      host on 3rd party server and direct link to WordPress?
      something else?
Viewing 1 replies (of 1 total)
  • add this to the theme functions.php file

    @ini_set( 'upload_max_size' , '64M' );
    @ini_set( 'post_max_size', '64M');
    @ini_set( 'max_execution_time', '300' );

    or this to php.ini file

    upload_max_filesize = 64M
    post_max_size = 64M
    max_execution_time = 300

    or this to .htaccess file (if you use apache)

    php_value upload_max_filesize 64M
    php_value post_max_size 64M
    php_value max_execution_time 300
    php_value max_input_time 300

    or just use sound cloud or other music hosting site.

Viewing 1 replies (of 1 total)
  • The topic ‘Larger Audio Files; what's the preferred method?’ is closed to new replies.