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.
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.