• Resolved Alfrescow

    (@alfrescow)


    Hi,

    I’m having a few issues, listed in order of importance.

    1. I get a HTTP Error when uploading large files, I see in the previous support tickets others have had this error but there has been no mention on the fix.

    I have increased the max upload to 500mb in both my php.ini file, via the BuddyDrive max upload field and in the .htaccess file.

    The form on the page shows 500mb as the max file size (I’m testing uploading a 29.420mb .mp4 file).

    Of note is that I am running the site in IIS7 internally and I have tried uploading through Chrome, Firefox and IE. I didn’t have a HTTP error when running my site in XAMPP so assume a setting needs to be modified in IIS perhaps?

    It seems the error is only generated on files over 29mb in size

    2. It looks like the file names are aligning in the center, do you know where I can go to align the file names left?

    Many thanks

    https://wordpress.org/plugins/buddydrive/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    1. Try to also increase the post_max_size .. But i don’t know IIS sorry
    2. you can filter ‘buddydrive_global_css’ and use a specific stylesheet.

    Thread Starter Alfrescow

    (@alfrescow)

    Thanks I ended up resolving the IIS http error (which was also being seen directly in the media uploaded in the dashboard – so the error was not related to the buddydrive plugin) by changing the following:
    ————————————————————–

    Created .htaccess file in the website root location with the following:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    php_value upload_max_filesize 500M
    php_value post_max_size 500M
    php_value max_execution_time 800
    php_value max_input_time 800

    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>

    # END WordPress

    ————————————————————–

    PHP.ini file in the website root location

    file_uploads = on
    upload_max_filesize = 500M
    max_input_time = 800
    memory_limit = 500M
    max_execution_time = 800
    (a) post_max_size = 500M

    PHP.ini in PHP Manager IIS to include

    upload_max_filesize=500m
    post_max_size=500m
    max_execution_time=800

    ————————————————————–

    web.config file in the website root location

    <?xml version=”1.0″ encoding=”UTF-8″?>
    <configuration>
    <system.webServer>
    <security>
    <requestFiltering>
    <requestLimits maxAllowedContentLength=”2000000000″ />
    </requestFiltering>
    </security>
    </system.webServer>
    </configuration>

    – Also as additional information when I try and click the icon to upload files, it seems the selection is off slight and it selects the folder button instead, this only occurs up to the delete icon. If I hover slightly to the left of the file upload icon it works. Any ideas?

    – Is there anyway to have the website auto redirect to the users buddydrive folder after they have logged in? I want to hide the wordpress admin menu when they log in.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘HTTP Error’ is closed to new replies.