// Bunlar "php.ini" dosyasina eklenecek. memory_limit = 256M upload_max_size = 64M post_max_size = 64M upload_max_filesize = 64M max_execution_time = 300 max_input_time = 1000 // Bu kodlar ".htaccess" dosyasina eklenecektir! php_value memory_limit 256M php_value upload_max_filesize 64M php_value post_max_size 64M php_value max_execution_time 300 php_value max_input_time 1000 output_buffering = 2048 // Bu satirlari ise temanizin / functions.php dosyasi sonuna ekleyiniz. add_filter( 'https_local_ssl_verify', '__return_true' ); add_action('http_api_curl', 'sar_custom_curl_timeout', 9999, 1); function sar_custom_curl_timeout( $handle ){ curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, 30 ); curl_setopt( $handle, CURLOPT_TIMEOUT, 30 ); } add_filter( 'http_request_timeout', 'sar_custom_http_request_timeout', 9999 ); function sar_custom_http_request_timeout( $timeout_value ) { return 30; } add_filter('http_request_args', 'sar_custom_http_request_args', 9999, 1); function sar_custom_http_request_args( $r ){ $r['timeout'] = 30; return $r; }