\- تأكد من أن المدونة تستطيع الاتصال بـ "api.wordpress.org"، لأن من الممكن أن يكون هناك حائط ناري "firewall" في الاستضافة تمنع الاتصال الخارجي. وفي هذه الحالة راجع قسم الدعم في الاستضافة.
\* أو جرب التالي:
- إذا كان لديك في ملف "wp-admin/plugin-install.php" سطر:
\[code\]
$request = wp\_remote\_post('http://api.wordpress.org/plugins/info/1.0/', array( 'timeout' => 15, 'body' => array('action' => $action, 'request' => serialize($args))) );
\[/code\]
قم بتغيير قيمة " 'timeout' => 15 " إلى " 'timeout' => 25 " ليكون السطر بالشكل:
\[code\]
$request = wp\_remote\_post('http://api.wordpress.org/plugins/info/1.0/', array( 'timeout' => 25, 'body' => array('action' => $action, 'request' => serialize($args))) );
\[/code\]
إطلعني بما هو جديد.