-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Oops, looks like there's no route on the client or the server for url: "http://my-domain.com/dicom-app-viewer" #115
Comments
I am too troubled with the same issue when the page placed in a subdirectory. |
There are two issues here:
I'll see if we can get those fixed. |
Can you guys try this again? I merged some changes for the absoluteUrl function which should fix some issues with using subdirectories in ROOT_URL. e.g. if I build with -u localhost:3000/subdirectory and use the redirectingSimpleServer with the same URL, I can use: without any issues. |
Thank you, swederik. Add the my situation. Script meteor-build-client with -u localhost: 3000 can also work with http: // localhost: 61498 by changing ROOT_URL set to meteor_runtime_config of index.html that placed on my test site, even without rebuilding. So, even if it is placed in a subdirectory, it is still unnecessary to rebuild and imagine that it works only by changing meteor_runtime_config. Is not there a misunderstanding? By the way, I tried using the code in the download SampleClientOnlyBuild, but this did not change the behavior before. |
Yes you need to run meteor npm install before building. That's why it's complaining about babel-runtime. I don't understand the second paragraph. You would need to rebuild because we changed OHIF.utils.absoluteUrl. If you just edit your index.html you won't have the updated version of the JavaScript code. I did not update SampleClientOnlyBuild, so it makes sense that nothing changed using that. |
I am sorry, I have omitted one step for build process. I execute meteor npm install, rebuild client, and copy to my site, then successfully displayed the Viewer at http://localhost:3000/sample. Please forgive my poor English. I mean that |
I tried it again. I feel like, use clinical.route instead of iron.route solve this problem. How is that? |
seems to be an iron router issue iron-meteor/iron-router#848 and nosqlclient/nosqlclient#237 and looks like @nasu38yen suggestion should be a drop-in replacement |
I had this problem yesterday but it was related to having two mongo databases running on localhost |
It looks like this issue has been resolved. If any of you are still experiencing it, please feel free to create a new GitHub issue with the steps to reproduce or a minimal reproduction in a separate repository that you can link to. |
…gbrowser0216 Update ohif extension-dicom-tag-browser to 0.2.16
I need to deploy a standalone-viewer to my production server.
I've did everything like described in this article - https://github.com/OHIF/Viewers/wiki/Running-and-building-the-Standalone-Viewer
But when I navigate to http://my-domain.com/dicom-app-viewer I get error:
I've compiled my application using this command:
METEOR_PACKAGE_DIRS="../../Packages" meteor-build-client dicom-app-viewer -u http://my-domain.com/dicom-app-viewer
(as described in article above).What am I doing wrong?
P.S.: What I need in the end:
I have a server application which will be used to provide an api for viewer.
Also how to configure viewer to make requests to specified url to get json with list of dicom files?
The text was updated successfully, but these errors were encountered: