-
Notifications
You must be signed in to change notification settings - Fork 412
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
spiderable errors #1150
Comments
same error here… |
@aldeed did you find a fix for this issue? |
No. Removed spiderable for now. |
Spiderable was working on my local server. I've just uploaded to a digital ocean server using mup (with the option to install PhantomJS set to true) and I'm also seeing this error. Can anyone help solve this? |
Same issue here.. |
Anyone figured this out yet? Or have a workaround? |
Eventually it didn't have much to do with iron router, but with some client-side javascript errors that crashed phantomjs, make sure there are no client-side javascript errors whatsoever. |
Strange...no client-side errors for me at all but still the same issue! |
Ok I found what I think was causing the issue for me — it looks like when I take away all my external |
I ran into the same problem and it drove me crazy. Removing the
|
Well.. actually, it did not solved my problem. Back to crazy :( Everything used to work perfectly fine until two weeks ago (the application is deployed on modulus, works fine in local) |
@fabien-h I tried out your solution with several scripts moved from my |
hum, that will be a problem... Do you know how to check if the page is rendered by the client or by phantom js ? |
seeing the same error. even when i remove everything from the |
Seems working on my config with iron:router@1.0.12 |
I'm running into the same issue. In my particular case I'm using both the spiderable package (for rendering the majority of the pages on my site to web crawlers), and the I followed the code back through the stack trace and it looks like an issue in the var opts = CurrentOptions.get(); I copied an pasted all of the code for the // see if we have the CurrentOptions dynamic variable set.
if (typeof CurrentOptions !== 'undefined') {
var opts = CurrentOptions.get();
if (opts && _.has(opts, key))
return opts[key];
} I still get the following error at the cli, but the page renders:
|
Seeing this error with every spiderable request using latest iron:router (1.0.6).
Is it something in one of my router hooks? What's the best way to debug this?
The text was updated successfully, but these errors were encountered: