I noticed that the backlink check was very slow and sometimes stopped
so I changed in components/HttpClient.php in line 100
- Code: Select all
if (!preg_match("#^http://.+#", $url)) {
to
- Code: Select all
if (stristr($url, $backlink)) {
now it seems to be faster