I'm getting following error for one of my trackers, that has announce/scrape listener placed in sub-folder like
http://somehost:80/directory/announce
$scraper->get_errors()
Array
(
[0] => Invalid scrape connection (somehost:80).
)
after enable file_get_contents get output
PHP Warning: file_get_contents(http://somehost:80/scrape?info_hash=somehash): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in other words, my original address was replaced to the domain root
http://somehost:80/announce
Other trackers, that stores theirs announce listeners in the root - works well, suppose that's get_passkey issue where parser confuses by regex at line
if ( ! is_null( $path ) && preg_match( '/[a-z0-9]{32}/i', $path, $matches ) ) {
I'm getting following error for one of my trackers, that has announce/scrape listener placed in sub-folder like
http://somehost:80/directory/announceafter enable
file_get_contentsget outputin other words, my original address was replaced to the domain root
http://somehost:80/announceOther trackers, that stores theirs announce listeners in the root - works well, suppose that's
get_passkeyissue where parser confuses by regex at line