Support

Account

Home Forums Backend Issues (wp-admin) file field pointing at folder other than 'uploads'?

Helping

file field pointing at folder other than 'uploads'?

  • hello, I am working on a site for which I cannot upgrade the file maximum upload size.
    I simply have no access to php.ini
    Is it possible to have a field (like the ‘file’ field) point at another folder in the wordpress install?

    thank you

  • Hi @nf,

    Thanks for the post.

    It is also possible to increase the maximum upload size through your functions.php file through the following code snippet:

    @ini_set( 'upload_max_size' , '64M' );
    @ini_set( 'post_max_size', '64M');
    @ini_set( 'max_execution_time', '300' );
    
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘file field pointing at folder other than 'uploads'?’ is closed to new replies.