# Increase PHP timeout limits for large keyword batches
<IfModule mod_php.c>
    php_value max_execution_time 300
    php_value max_input_time 300
</IfModule>

# For FastCGI/CGI mode
<IfModule mod_fcgid.c>
    FcgidIOTimeout 300
    FcgidConnectTimeout 300
    FcgidBusyTimeout 300
    FcgidIdleTimeout 300
</IfModule>

# Allow .htaccess to override timeout settings
AllowOverride All

# Enable error reporting to help debug issues
# php_flag display_errors On
# php_value error_reporting E_ALL
