Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RSS feed not triggering the crawler #1255

Closed
evmcl opened this issue Feb 26, 2012 · 1 comment
Closed

RSS feed not triggering the crawler #1255

evmcl opened this issue Feb 26, 2012 · 1 comment
Labels

Comments

@evmcl
Copy link

evmcl commented Feb 26, 2012

It looks like the path to run.php is wrong in line 60 of _lib/controller/class.RSSController.php

It expects run.php to be in the base folder, but it is in the crawler sub-folder.

Changing the string 'run.php?' to 'crawler/run.php' on line 60 seems to fix this.

E.

@ginatrapani
Copy link
Member

Confirmed. Changing line 60 from:

$crawler_run_url = $base_url.'run.php?'.sprintf('un=%s&as=%s', $email, $owner->api_key);

to:
$crawler_run_url = $base_url.'crawler/run.php?'.sprintf('un=%s&as=%s', $email, $owner->api_key);

Seems to fix it. This is a significant bug; I'll release 1.0.3 with the fix right away. Thank you for the very accurate diagnosis.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants