# UPLOAD VALUES FILE SIZES php_value upload_max_filesize 50M php_value post_max_size 50M php_value memory_limit 50M php_value max_execution_time 200 php_value max_input_time 200 ## If you experience problems on your site block out the operations listed below # ## Deny access to extension xml files (uncomment out to activate) # #Order allow,deny #Deny from all # Satisfy all # ## End of deny access to extension xml files RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR] # Block out any script trying to base64_encode crap to send via URL RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress