We re sorry but something went wrong
We re sorry but something went wrong
Heroku «We’re sorry, but something went wrong»
Firstly, I’m quite a newbie in rails/heroku, so forgive the newbiness in advance!
I did the Rails tutorial (http://guides.rubyonrails.org/getting_started.html) and generated a blog-like «post» app, pushed it into github, and then pushed into heroku.
My app works fine locally, but when I try to run it online, it has the «We’re sorry, but something went wrong» in red font error.
Here is the heroku logs:
In a nutshell, f.name is an object representing an entry in the database (so is most of the information for f)
The «undefined method `name'» error seems strange to me, as it works perfectly locally.
My hypothesis is that the database is not linked properly between heroku and my app. However, I don’t know how I can solve/check this problem.
My app is using the ‘shared database’ by default right now.
Any hints on what check? Something I missed?
EDIT 1: migrating database. The table ‘posts’ seems to be already ‘detected’. Here is a trace:
EDIT 2: Tried dropping te database. Strange error:
После деплоя ошибка 500, логи пустые, как быть?
We’re sorry, but something went wrong.
If you are the application owner check the logs for more information.
В строке браузера, стоит в скобочках (500). Попробовал посмотреть логи rails в log/production.log. Они пустые. Как выявить проблему?
Во вторых, ещё раз проверить от кого запускаются сервисы, права на запись/чтение и доступность сокетов.
Папка с приложением лежит в /home/username/app_name
Лог из nginx
2015/08/14 04:50:30 [crit] 1576#0: *9 connect() to unix:/home/roman/collab/shared/sockets/puma.sock failed (2: No such file or directory) while connecting to upstream, client: my_ip, serv$, server: localhost, request: «GET / HTTP/1.1», upstream: «http://unix:/home/roman/collab/shared/sockets/puma. «, host: «my_ip»
Алексей POS_troi:
puma.rb
# Change to match your CPU core count
workers 1
# Min and Max threads per worker
threads 1, 6
app_dir = File.expand_path(«../..», __FILE__)
shared_dir = «#
# Default to production
rails_env = ENV[‘RAILS_ENV’] || «production»
environment rails_env
# Set up socket location
bind «unix://#
# Logging
stdout_redirect «#
# Set master PID and state locations
pidfile «#
state_path «#
activate_control_app
on_worker_boot do
require «active_record»
ActiveRecord::Base.connection.disconnect! rescue ActiveRecord::ConnectionNotEstablished
ActiveRecord::Base.establish_connection(YAML.load_file(«#
end
lavezzi1: Вам Nginx прямо говорит что не может найти файл сокета, проверить создаётся ли он в принципе, если он создаётся то убедиться что у nginx есть право на чтение домашнего каталога пользователя (хотя судя по тому что как 500-я ошибка отдаётся файл /public/500.html то доступ всё-же есть).
По вашей ссылке ещё раз гляньте секцию «Create Puma Upstart Script» не забыли ли указать
We re sorry but something went wrong
A 500 error indicates that the web server encountered a severe problem returning a page to you. This can indicate problems on their side, or that Firefox sent something unexpected.
To check whether it is a server error, you could try viewing the same page in another browser, such as IE9/IE10.
On Firefox’s side, when you have a problem with one particular site, a good «first thing to try» is clearing your Firefox cache and deleting your saved cookies for the site.
(1) Bypass Firefox’s Cache
Use Ctrl+Shift+r to reload the page fresh from the server.
Alternately, you also can clear Firefox’s cache completely using:
orange Firefox button (or Tools menu) > Options > Advanced
On the Network mini-tab > Cached Web Content : «Clear Now»
If you have a large hard drive, this might take a few minutes.
(2) Remove the site’s cookies (save any pending work first). While viewing a page on the site:
Then try reloading the page. Does that help?
«We’re sorry, but something went wrong.» in development mode #11063
Comments
istana commented Jun 23, 2013
But in development mode (log level is debug, all_requests_considered_local) it should display backtrace with informations.
Problem occurs when render is called fom controller or view and view (or partial) is misformatted (tested on slim, haml and erb) or somehow throws error. Does this with RC2 and master as well.
Whole log for request look like this:
The text was updated successfully, but these errors were encountered:
senny commented Jun 23, 2013
@istana can you please upload an isolated sample application to GitHub to reproduce the issue?
istana commented Jun 23, 2013
Finally I know why. problem is ‘ň’ in the path. I tried few non-acsii characters (ľ, á) and none worked. Also tried every combination of ruby 1.9.3, 2.0.0, rvm and rbenv.
I don’t know, if this is issue, but I thought Ruby (or Rails?) is UTF-8 compatible and behaviour is really weird.
@senny what do you think?
steveklabnik commented Jun 23, 2013
Make sure that your browser is properly escaping the character. Don’t trust the URI bar, check the logs.
I’m pretty sure this isn’t a bug.
istana commented Jun 24, 2013
Problem is related to filesystem path, not URIs. If application is located in /home/user/čosi/application it shows logs like in production mode while in development mode. If I rename it to /home/user/cosi/application it works just fine.
istana commented Jun 24, 2013
steveklabnik commented Jun 25, 2013
Ahhh. We have a ticket related to filepaths having a [ in it somewhere.
pixeltrix commented Jun 25, 2013
senny commented Jun 25, 2013
I’ll take a look and report back.
senny commented Jun 25, 2013
I can confirm this is an encoding problem. It’s related to the backtrace generated when you have non-ascii characters in your file paths. Here is a simplified reproduction: https://gist.github.com/senny/5857653
cristianferrarig commented Oct 9, 2013
I had the same problem but only on some routes in the app.
In my case, this was because it had special characters in the respective controllers.
To fix this, I add at the beginning of each controller the next line
# encoding: utf-8
Sorry if this is not the best solution, but it worked for me. (for now)
printercu commented Jan 25, 2014
Hussein1147 commented Mar 23, 2014
hello I am having a somewhat similar issue in production mode, this is the same log i get
We’re sorry, but something went wrong.
If you are the application owner check the logs for more information.
My application works perfectly in development mode.
Hussein1147 commented Mar 23, 2014
in the server log there is this error
ActionController::RoutingError (No route matches [GET] «/»), but here is the whole log if that helps:
If you are the application owner check the logs for more information. Error 500
I created a page in rails with a SignUp form and it works great locally, everything was fine, so I deployed the project in Heroku, where the statics_page’s works perfectly, but this Form is not working and is throwing me the error:
We’re sorry, but something went wrong.
If you are the application owner check the logs for more information.
So I reviewed the log, where everything loads fine until this comes up in red:
2020-01-26T02:13:09.077537+00:00 heroku[router]: at=info method=GET path=»/signup» host=safe-shelf-03588.herokuapp.com request_id=a96a3ba1-41ed-4963-8f6a-5cd3676954ff fwd=»181.115.249.233″ dyno=web.1 connect=0ms service=5ms status=500 bytes=1891 protocol=https
I reviewed forums and the most logical reason was to review routes, but error 500 is a very common issue code for different reasons and I had no luck.
We’re sorry, but something went wrong. If you are the application owner check the logs for more information
In localhost my projects works perfectly but every time I deploy to heroku I receive Something went wrong. I also ran Heroku run rake db:migrate. Any idea what is going on here?
2 Answers 2
Trending sort
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending.
Switch to Trending sort
This is your error:
The problem seems to be that the path for your listing.image.url was unrecognised.
I’m not sure why Rails is treating this as a fatal error (normally, it will just show the HTML img with a «not found» image), but in this case, it’s causing the entire Rails application to fail.
The workaround (to get this working) is to remove from your app/views/listings/index.html.erb file.
This won’t be a fix, but should resolve the immediate problem.
The fix will be two-fold (I’m not entirely sure what the cause of the issue is):
The issue seems to be that /original/1_maxresdefault.jpg doesn’t exist.
This image name is used by YouTube, so I suspect you’re either lifting Youtube cover images or trying to mimick YouTube’s video processing structure.
Either way, the folder structure you should have in your app is as follows:
It seems to me that your path isn’t being called properly, or that you don’t have the correct filename inside it. You may have manually populated the filename or something.
I would personally remove the entire /public/system folder (it is Paperclips’), remove all the references to attachments in your db and go through all my listings to upload new images.
Why am I getting error 500 «We’re sorry but something went wrong» when pushing my app to Heroku?
I pushed my app to Heroku and am getting «We’re sorry, but something went wrong (500)» Why is this? I know the error message is coming from one of my own files in the /public directory titled 500.html but i’m not sure why this is happening.
My heroku logs are below as well as my mongoid.yml file. Thanks.
1 Answer 1
Error
The 500 server error is basically a cover for all the times your server has an internal issue (and can’t render your request)
The reason you’re seeing the 500 error could be anything inside your app. Here’s what I’d do to fix it:
Environment
You’re getting the error in production, meaning a difference with the environments will be causing the issue
I would begin by looking at what’s changing. Typically, it’s the DB, or some environment settings (different DB provider etc) that’s causing the issue
DB
Most common 500 errors are caused by DB inconsistencies between development & production environments. I don’t know about mongoid, but with the likes of MYSQL / PGSQL the issue will be to do with not migrating in production:
heroku run rake db:migrate normally fixes most db issues in production
Exception Notification
There’s a very good gem called exception notification (extracted from the Rails core), a piece of middlware which sends error notifications by email:
We’re sorry, but something went wrong. Error Just after updating #3951
Comments
owlg commented Jun 26, 2017 •
After updating by using git fetch and git pull and the docker updating steps, I am receiving this error everytime I try to log
We’re sorry, but something went wrong.
When accessing the instance when logged out, I can still see the main page. But after logging in I get that error.
The text was updated successfully, but these errors were encountered:
noraworld commented Jun 26, 2017
It seems to be the browser cache. The same situation doesn’t occur in my environment and instance.
Try it with the private browsing mode of your browser. Does such a situation still occur?
owlg commented Jun 26, 2017
@noraworld Yes, I have already tried on Private Browsing on Chrome. The main page works but not after I logged in.
noraworld commented Jun 26, 2017
@owlg After upgrading and taking a while (not after JUST upgrading), does the same situation still occur?
owlg commented Jun 26, 2017
@noraworld After waiting for close to an hour, I am still encountering the same error
noraworld commented Jun 26, 2017
@owlg Well, tell us the following 2 information.
Gargron commented Jun 26, 2017
You specified that this happens on master. Besides the warning not to run master in production environments, have you performed db:migrate?
owlg commented Jun 27, 2017 •
@noraworld I’ve been redirected after logging in on incognito to «/auth/sign_in», on the normal web browser which I am already logged in to, I am not redirected.
I am upgraded from 1.4.3 to the latest master
owlg commented Jun 27, 2017 •
@Gargron I’ve performed db:migrate and the precompile assets under Docker environment.
How do I revert the files to the release 1.4.6 instead of master? I’m trying to do so but I can’t figure out how.
noraworld commented Jun 29, 2017
@owlg I have no idea what is happening on your instance. How about trying to restart a Docker daemon? It helps when we don’t know what is the cause. I resolved other issue by this way.
WARNING: If the commands above run, all containers, images, volumes, and networks will be removed. So be carefully. If you would simply like to restart a Docker daemon, run systemctl restart docker only. All deletions are a last resort in case of a simple restart didn’t solve the problem.
Btw, if you would like to revert to v1.4.6, try this:
Gargron commented Jul 2, 2017
Whenever you encounter a «something went wrong», please provide server logs. docker logs mastodon_web_1 etc. The default error message is absolutely generic and provides no information other than there is an error.
xvilo commented Jul 13, 2017 •
I have the exact same thing here. Just updated to lastest release with:
Heroku error: We’re sorry, but something went wrong
i have deployed an app to heroku(finance tracker under «ROR developer course» from udemy.com). The login button works fine but when i click on the signup button, it gives me this error
I have ran heroku run rake db:migrate successfully. I used devise gem for authentication. Pls any idea someone. thanks
2 Answers 2
Trending sort
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending.
Switch to Trending sort
So the first thing you should do is go to the Heroku admin panel for your app and look through the log file. You should find a stack trace (should look like an error followed by a bunch of method calls and line numbers). Another option is for you to remotely access the app server, go to you Heroku app directory on your computer and run (assuming you have Heroku CLI installed)
then navigate to your log directory and run
(log file should be production.log or develop.log) and that will show you a real time stream of the log activity, so just go recreate the bug and see what happens.
Replace these lines
With these lines
What happened is the gem devise that you are using changed its API in version for so the syntax you are were using is no longer valid. I am assuming that at some point in time you did a bundle update or something that inadvertently upgraded you gem
We’re sorry, but something went wrong. If you are the application owner check the logs for more information. #728
Comments
ndgspn commented Nov 10, 2017 •
===========
We’re sorry, but something went wrong.
If you are the application owner check the logs for more information.
on console error like this :
This error only appear on Production mode, but on Development mode camaleon running well.
Please help how to resolve.
Thank you very much.
The text was updated successfully, but these errors were encountered:
rfestag commented Nov 11, 2017
I ran into the same issue recently. I ended up basically copying my development database over. You have a few simple options:
There may be an easier way to do this, but that’s what I ended up doing. I swapped my development system over to Postgres, manually configured it, then dumped it and loaded it into my production database.
500 We’re sorry, but something went wrong. #36
Comments
CalaxDev commented Jun 18, 2015
Why do I get this error? I have set everything up correctly according to https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/gitlab-ci/README.md yet I get this error. I have no idea what data to provide either so. Someone help please?
The text was updated successfully, but these errors were encountered:
Ablu commented Jun 30, 2015
I get this error too after I hit Login with GitLab and hitting Authorize on the dialog on the gitlab page.
sameersbn commented Jul 1, 2015
@Z3roCoder @Ablu Please refer to my comment #28 (comment) for a possible fix.
CalaxDev commented Jul 8, 2015
None of any of those things helped.
Commands I am calling both docker-compose.yml’s with:
CalaxDev commented Jul 8, 2015
outcoldman commented Jul 8, 2015
@Z3roCoder check the production.log,
Execute bash in your ci container (you can find the name with docker ps )
Go to the location of the logs
And check the production.log
CalaxDev commented Jul 8, 2015
CalaxDev commented Jul 8, 2015
outcoldman commented Jul 8, 2015
CalaxDev commented Jul 9, 2015
And where do I see what my Gitlab-Callback URL is?
@outcoldman
CalaxDev commented Jul 9, 2015
(As it said «One URL per line» I thought you could enter multiple, as Gitlab and Gitlab-CI are supposed to work with ReverseProxies later)
@outcoldman
outcoldman commented Jul 9, 2015
CalaxDev commented Jul 9, 2015
Hmh, but how shall I do that? I can not use net: «host» or similar, and linking containers does not work either as when I link containers, the gitlab-url gets mapped to the hosts file, but an internal on elike «172.xxx.xxx.xxx» which I can not access on another computer. So letting the env GITLAB_URL get set automatically is no option either
outcoldman commented Jul 9, 2015
@Z3roCoder is http://192.168.16.133:10080/gitlab a url which you user in browser?
CalaxDev commented Jul 10, 2015
Alright, I have now solved my problems. I have updated Docker as well as Docker-Compose to the newst Version and changed the following:
«We’re sorry, but something went wrong» error #2
Comments
tansaku commented May 23, 2018
However the app logs appear clean:
we do see errors in the nginx logs:
we are using dokku 0.10.3
The text was updated successfully, but these errors were encountered:
tansaku commented May 23, 2018
we just upgraded to 0.12.7 and still the same 🙁
AubreyHewes commented May 23, 2018
Does the application listen on the PORT environment variable? If it does not, it needs to. See this doc for more details.
tansaku commented May 24, 2018
Hi @AubreyHewes thanks for your help. We created an application following precisely the instructions in the README for this repo, i.e.
as well as all the other steps in the README
and then the application was deployed by cloning this repo locally, and then via git push, i.e.
Applications not using EXPOSE
Any application that does not use an EXPOSE directive will result in Dokku defaulting to port 5000. This behavior mimics the behavior of a Buildpack deploy. If your application does not support the PORT environment variable, then you will either need to:
modify your application to support the PORT environment variable.
switch to using an EXPOSE directive in your Dockerfile.
I’m a little unsure what you mean when you say «application» as that could apply to app we create via dokku apps:create mediawiki or the kingsquare/mediawiki-dokku mediawiki application that we then run in that container.
GitLab 500: We’re sorry, but something went wrong [closed]
Part of GitLab Collective
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
500: We’re sorry, but something went wrong.
/home/git/gitlab/log/production.log:
1 Answer 1
It seems to be linked to the python you are using:
The last 3 issues with an exception on the blob.colorize line were fixed by reinstalling/updating python or making sure /usr/bin/env python was >= 2.5 and
Not the answer you’re looking for? Browse other questions tagged gitlab or ask your own question.
This question is in a collective: a subcommunity defined by tags with relevant content and experts.
Related
Hot Network Questions
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.
We re sorry but something went wrong
A 500 error indicates that the web server encountered a severe problem returning a page to you. This can indicate problems on their side, or that Firefox sent something unexpected.
To check whether it is a server error, you could try viewing the same page in another browser, such as IE9/IE10.
On Firefox’s side, when you have a problem with one particular site, a good «first thing to try» is clearing your Firefox cache and deleting your saved cookies for the site.
(1) Bypass Firefox’s Cache
Use Ctrl+Shift+r to reload the page fresh from the server.
Alternately, you also can clear Firefox’s cache completely using:
orange Firefox button (or Tools menu) > Options > Advanced
On the Network mini-tab > Cached Web Content : «Clear Now»
If you have a large hard drive, this might take a few minutes.
(2) Remove the site’s cookies (save any pending work first). While viewing a page on the site:
Then try reloading the page. Does that help?
We re sorry but something went wrong
If you are experiencing the authentication issue, please create a ticket to Support. They will be able to fix this for you.
Sorry for the inconvenience.
I am getting the same error, and after trying to go to that link and logging in, I get nothing but a blank white page. I’ve tried several different browsers, clearing cache, etc. Nothing works.
Everytime i try to login, i get this Error, submitting a ticket also doesnt work, because the site doesnt load after logging in and yes, i tried with different browsers and clearing my cookies
We suggest you to log in via Uplay at <ССЫЛКА УДАЛЕНА>www.uplay.com. You will need to accept “new agreements” and change your password. We believe it will solve this log in issue and you will be able to launch the game again.
Should this issue persists, we will require several log files associated with the Mighty Quest game client. Please follow the instructions below on how to generate these logfiles and attach them to your ticket.
To access the MQEL Diagnostic Tool, please navigate to:
C:\Program Files (x86)\The Mighty Quest For Epic Loot\Launcher
Once there, launch the file «MQELDiagnostics.exe» and select “Export debug data”. It will generate an archive/zip and place it on your desktop. You will then need to attach that file to this ticket so our engineers can take a look.
Also, if you see a “Crash report” pop-up when your issue arises, we ask you to please click “Yes” so that our developer team can receive the crash report as well.
«We’re sorry, but something went wrong.» after deployment to Heroku
I’ve made a minor app, where a user can log in/out, be created and so forth. I’m using mySQL as the database and everything is working fine in local environment. But after I’ve deployed it to heroku and migrated the database and so forth, the heroku version doesn’t work. I’m getting this when I tail the log:
I can see that it completes the 500 error at some point, but I have no idea why. Any suggestions to this? Thanks in advance!
1 Answer 1
Check that you have this in config/environments/production
Basically your problem is that your assets are not being automatically compiled.
In development mode Rails 3.1 is going to automatically compile ( minify both JS and CSS, transform images to base64 in some cases, etc) all your assets, creating a small, versioned package.
In production mode this is not automatic. You may either enable automatic compilation of the assets, or manually run bundle exec rake assets:precompile before deployment.
How to fix We’re sorry, but something went wrong in Rails/Heroku app?
These are the logs when I see the error page for my Rails app. Any advice on how to fix this?
Here is my Review controller. It refers to the fulltext line. I’m using the Sunspot gem that seems to work in the development environment.
3 Answers 3
Trending sort
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending.
Switch to Trending sort
I think you might find this answer helpful, since, as I can see, you use full text search.
That’s a 500 page that can be changed in the settings of the app on heroku. Right now you it’s prob a amazon served page.
If you want to resolve whatever is causing the 500 error, i’d post the index acton (or the entire controller) where the problem is (line 5).
Can you paste your ReviewsController#index code? As the log says here, the error is occurring on line 5 of this method.
The heroku[router] line is irrelevant here, that’s just log line from the Heroku router for a separate request from somewhere else that’s attempting to fetch a favicon for your app.
Update
It looks like your Review#search method is causing this error. Have you investigated that there could be something wrong with that?
Heroku & Rails 3.2 We’re sorry but something went wrong
I’m having a really bad day at this: #rails-noob #githubsucks #herokufail #abouttosmashmylaptop. Ok, I feel better.
UPDATE: As per culix’s suggestion, I tried to turn on the log level although but it doesn’t seem to change the log output (time codes removed).
app[web.1]: Started GET «/» for 124.148.153.24 at 2013-08-11 07:30:40 +0000
app[web.1]: Processing by StaticPagesController#splash as HTML
app[web.1]: Rendered static_pages/splash.html.erb within layouts/application (2.6ms)
heroku[router]: at=info method=GET path=/ host=genericappname.herokuapp.com fwd=»124.148.153.24″ dyno=web.1 connect=2ms service=1470ms status=500 bytes=643
app[web.1]: Completed 500 Internal Server Error in 1459ms app[web.1]: ActionView::Template::Error (undefined method `[]’ for nil:NilClass
app[web.1]: (in /app/app/assets/stylesheets/application.css)):
However, when I was pushing changes back to Heroku I did pick up two issues:
Related, or an entirely new problem?
UPDATE 2: In response to some comments/questions:
I’m struggling with lack of Heroku error info to guide me, so directions in that regard welcome also.
UPDATE 3: After running ‘run rake assets:precompile’ I got a whole heap of Deprecation warnings, along the lines of:
You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed in Rails 4.0. Move them out and bundle them into your gemfile.
But my vendor/plugins folder is empty?
Suddenly website not working and come this error #2174
Comments
surya5353 commented Jan 30, 2019
We’re sorry, but something went wrong.
The issue has been logged for investigation. Please try again later.
Technical details for the administrator of this website Error ID: a4c93c83 Details: Web application could not be started by the Phusion Passenger application server.
Please read the Passenger log file (search for the Error ID) to find the details of the error.
http://ssrcarzone.com
You can also get a detailed report to appear directly on this page, but for security reasons it is only provided if Phusion Passenger is run with environment set to development and/or with the friendly error pages option set to on.
For more information about configuring environment and friendly error pages, see:
Nginx integration mode
Apache integration mode
Standalone mode
This website is powered by Phusion Passenger®, the smart application server built by Phusion®.
The text was updated successfully, but these errors were encountered:
CamJN commented Jan 30, 2019
I understand the confusion, but the message just means that the owners of that website use our software. However we do not run that website, nor have any access to it. So we aren’t able to help.
surya5353 commented Jan 30, 2019
How can find that? I am using wordpress. Yesteday also site working. Its happening suddenly.
Where and how can i find using that software in my website?
CamJN commented Jan 30, 2019
Ah well it turns out I’m the one that misunderstood. I didn’t realize this was your website. Passenger has nothing to do with WordPress usually. Can you fill out this form so I can understand your setup better?
Please follow the steps below if you have found an issue with Passenger, or would like to request a feature.
Post to Stack Overflow instead if you are not sure, or if you have a question about your configuration.
Issue report
Fill in as much as possible so that we can understand, find and fix the problem.
Please try with the newest version of Passenger to avoid issues that have already been fixed
Question 1: What is the problem?
Be as detailed as possible in your descriptions, include any logs and stack traces (don’t just cut/paste the error, provide some logging before that too).
(if you are requesting a feature instead of reporting an issue, describe here what you have in mind and how it would help you)
Question 2: Passenger version and integration mode:
Question 3: OS or Linux distro, platform (including version):
Question 4: Passenger installation method:
Your answer:
[ ] RubyGems + Gemfile
[ ] RubyGems, no Gemfile
[ ] Phusion APT repo
[ ] Phusion YUM repo
[ ] OS X Homebrew
[ ] source tarball
[ ] Other, please specify:
Question 5: Your app’s programming language (including any version managers) and framework (including versions):
Question 6: Are you using a PaaS and/or containerization? If so which one?
Question 7: Anything else about your setup that we should know?
We strive for quality and appreciate you taking the time to submit a report! Please note that if you want guaranteed response times and priority issue support we encourage you to join our enterprise customer base. They also provide us with the means to continue our high level of open source support!
We’re sorry, but something went wrong
Dear Support team,
I am getting this error since today morning and I search and try to fix this issue but no luck.
so finally I have to open case in spiceworks.
As previously mentioned, we’ve had a few people report this. In order to keep everything centralized, I’m going to lock this topic. Please follow this one for updates: https://community.spiceworks.com/topic/1859302-network-monitor-we-re-sorry-but-something-went-wrong
8 Replies
Yes I too am seeing this error message over the past 24 hours.
Upon logging into the Network Monitor Tool, all I see is the «We’re Sorry, buts something went wrong» error.
I have had other random issues with Network Monitor, so took the opportunity to build a fresh Windows 2008R2 server. The only applications installed are all available Windows Update, then NM pre-requisites and then Network Monitor itself.
I have attempted to open from IE11 and also Google Chrome, but same result.
Any assistance would be appreciated.
Can this be merged
Gary D Williams
Same problem for me
There seems to be a lot of issues with NM at present.
Please wait for support to check these posts
Same issue here also..
Dear Support team,
I am getting this error since today morning and I search and try to fix this issue but no luck.
so finally I have to open case in spiceworks.
Dear Support team,
I am getting this error since today morning and I search and try to fix this issue but no luck.
so finally I have to open case in spiceworks.
Noa Solution is an IT service provider.
Same issue here on most PCs but not all.
Same here. What is the cause if this pain??
As previously mentioned, we’ve had a few people report this. In order to keep everything centralized, I’m going to lock this topic. Please follow this one for updates: https://community.spiceworks.com/topic/1859302-network-monitor-we-re-sorry-but-something-went-wrong
This topic has been locked by an administrator and is no longer open for commenting.
To continue this discussion, please ask a new question.
Read these next.
Building a better IT toolbox
Hi all,Been banging my head against a wall for this one.We’ve got an organisation with two type of people. Group A and Group B we’ll call them.Group A needs to see Group B in their address lists, however, not see anyone but themselves from Group A.Group B.
Can a professional network security assessment be done with just F/OSS tools?
I tend to doubt it. To have a professional quality security assessment, you would need to scan for the latest vulnerabilities. I am not sure if any free tool is kept that up-to-date. Maybe I’m wrong.Maybe with the correct combination of tools? OpenVAS, Me.
Snap! PyPI phishing, Twilio breach, VPNs, Artemis I, photos of the moon, & more
Your daily dose of tech news, in brief. Welcome to Monday, everyone! On August 29, 1990, the Computer Misuse Act became the United Kingdom’s legal defense against hacking and criminalized several acts, including accessing data without authorization.
We’re sorry something went wrong when attempting to log in #1838
Comments
udisun commented Mar 30, 2020 •
Description
we are having issues when some users attempt to log in, the message We’re sorry something went wrong when attempting to log in but just some of our users are experiencing this issue.
I logged in remotely to a user experiencing this issue,
from my pc i can log in to his account, but from his pc i can’t login to his or my account.
There was no error or log in the console. all the requests /authenticate and /jwks got a 200 response with correct values.
he had no extensions on chrome at all.
I’ve deleted all local storage, cookies and cache and still could not log in.
Got the message “We’re sorry something went wrong when attempting to log in”.
We are using the lock widget with custom domain configured in our auth0 tenant.
The user sees this message but in the auth0 dashboard we can see:
[Success Cross Origin Authentication]
Reproduction
Can’t find a way to reproduce it, although several companies are struggling with this issue, and have reported it in the Auth0 Community pages:
https://community.auth0.com/t/lock-were-sorry-something-went-wrong-when-attempting-to-log-in-message/36260
Environment
The text was updated successfully, but these errors were encountered:
stevehobbsdev commented Mar 31, 2020
Thanks for raising this @udisun. Just to clarify, you’re not seeing any errors in the logs in your Auth0 Dashboard either?
kdawgwilk commented Apr 22, 2020 •
We are seeing this issue as well and not seeing any logs in auth0 for the few users that are experiencing this issue. FWIW we seem to be seeing this issue mostly on mobile users. On mobile we use PKCE which is the only main difference between web and mobile. We are also on a similar lock version, 11.22.4, but we plan on trying to bump to 11.23.1 to see if that fixes anything
stevehobbsdev commented Apr 23, 2020
@kdawgwilk Let us know how you get on. This is proving difficult to repro without any concrete error messages, unfortunately.
jaredswenson commented Apr 29, 2020
Any updates on this? I’m experiencing the same issue.
ColCoutts commented Apr 29, 2020 •
@kdawgwilk @jaredswenson have you noticed this issue occurs when using webviews + PKCE in an app? Can the end-user still login on a mobile browser (Chrome, Safari etc.)?
jaredswenson commented Apr 29, 2020
@ColCoutts My issue is when someone tries logging in on a mobile device browser, such as Chrome and Safari.
kdawgwilk commented Apr 29, 2020
Yes appears to be mobile only and the same users with same creds can login fine on a browser. We even had a user reset their password to something temporary so we could try to reproduce on our end but we were able to login fine, it is only happening on their device. We also have some anomaly detection features turned on and I was able to reproduce it once on my own device but have never seen it again. It was an invalid state error that was given in the response
h-tong commented May 4, 2020
Hi, my team and I have been experiencing this issue for the past couple of weeks as well. We’ve found that reports are typically from users who tried to login on Safari. Is there any update on this?
ghost commented Jun 13, 2020
We faced this issue as well, when multiple tabs are opened and one of them being logged out silently.
kaymaylove commented Jul 2, 2020
I see that various of you are facing this issue. I can’t guarantee they are all related and the same issue. But I can provide some troubleshooting steps for us to pinpoint the potential issue (hopefully your users are willing).
Can the users sign into other devices?
Can you give the user a second set of credentials and try to sign into the device that isn’t working?
Do they have any third party apps that may be disabling/blocking cookies?
Have the user try signing in using a different ip (different internet source)
Try having the customer uninstalling the app on their device, clearing their cache and cookies; re-downloading the app and signing in
Were these users ever able to sign in using their device where they are experiencing this issue?
Can you please check that the user doesn’t have a time skew on their phone (making sure the current time matches the time on their device), this could cause authentication issues
Did this issue just started happening, was there a specific date you started getting complaints around this? If you could provide a date, we can see what changes took place around that time that might be causing this.
I wasn’t able to reproduce this issue and others in Auth0 haven’t been able to. We think it’s a device specific issue related to cookies that are lost or blocked linked to certain ips. The best thing to do is to provide this information in a support case and then, the support team can investigate why this may be happening. But if there’s correlation between the answers that everyone here provides, we may be able to draw some conclusions and figure out what’s going on.
kdawgwilk commented Jul 11, 2020
We tried basically everything on that list and those steps resolved some cases but not all. We ended up deciding to move away from auth0 oauth web flow and implement the login natively ourselves.
psamim commented Aug 16, 2020 •
Ugly hacks, but works.
hablodoug commented Nov 5, 2020
Has anyone been able to resolve this? We’re also having this issue with a small number of users. We’re able to login using their credentials, but when they try on their own device, they’re not able to. The auth token seems to be rejected/destroyed right after logging in/signing up for these users, and a ‘login_required’ oauthError is thrown (despite credentials being correct).
davinryan commented Jan 21, 2021 •
We are also noticing this issue but appears to be due to CDN issue during login being unavailable. This is still an issue for us.
joeizang commented Feb 9, 2021
I can confirm what @davinryan is reporting. this is an issue for us with basically the same error
1cf0fe682e88b6ce06471c26098c81ae2c3cd766.89d45ce93e74f1fd614e.js:1 GET https://cdn.auth0.com/client/2z7hdIgXsgMULANr3qyWBP68FwPqqGRu.js?t1612834928256
A built in login using WebAuth works fine but the the lock modal isn’t working at all
stevehobbsdev commented Feb 19, 2021
Thanks both. I’m looking into this but it’s proving extremely difficult to reproduce. I’m happy to continue testing but what would really help is a repro sample that demonstrates the error; if I can get a hold of that, I’d be happy to continue investigating.
omichowdhury commented Jun 8, 2021 •
I’ve seen this issue a bunch of times with end users but I’m not able to reproduce it myself:
So far it seems like it only affects safari
DrJakeW commented Jun 17, 2021 •
Not sure if this is related to the above but we have started having this issue after iOS users started to upgrade to 14.6 recently.
For months we haven’t had a problem, but now any iPhone that upgrades to 14.6 encounters the «We’re sorry, something went wrong when attempting to log in”.
This is despite the user entering the correct credentials (we have a custom message if they enter the incorrect credentials).
We have tried logging on with the same user credentials on other devices that are not yet on 14.6 and they still work and function as expected. The same applies to android where the same users are able to login without any problems.
We have tried removing all customisations from the login and return to the default lock, but the same error shows.
Only iPhone on 14.6 we’ve managed to get it to work on is a 6s, newer models from XR onwards seem to have the issue.
Any thoughts on this one?
UPDATE: Managed to get an XR to work on 14.6 after a fresh install.. Not a practical option for most of our users though so hoping to avoid that as a resolution.
Обновить RedMine c 3.2.0 до 4.0.0
Добрый день. Подскажите что делаю не так, ни как не могу обновить редмайн.
Есть сервер c Ubuntu 14 и RedMIne 3.2.0 Я его клонировал что бы попробовать обновить. Для начала обновил убунту до 16 версии. После обновления старый редмайн запускается норм. Далее по ниструкции
Сам редмайн с правами redmine:redmine
Далее по инструкции. Качаю архив с 4.0.0 извлекаю в папку /opt/ где хранится 3.2.0 Даю права папке /opt/redmine-4.0.0 для пользователя redmine.
Далее по инструкции копирую нужны файлы и директории из старого редмайна в новый с сохранением прав.
Выдает ошибку. Делаю purge ruby, install ruby-full
Далее rm /usr/local/bin/bundle и gem install bundler После чего комманда срабатывает.
svn update пропускаю.
В итоге сайт не работает, выдаёт:
We’re sorry, but something went wrong. We’ve been notified about this issue and we’ll take a look at it shortly.
If that didn’t work, then the problem is probably caused by your application being run under a different environment than it’s supposed to. Please check the following:
pushing to Heroku gives error «We’re sorry, but something went wrong.»
I’ve been at this for an hour or two, but can’t seem to figure out what the problem may be.
I was using sqlite3 for dev but before pushing to heroku I decided to switch to pg (using ubuntu), and it works fine on my local dev environment.
then I pushed to Heroku I keep getting a blank bage with the follow:
‘this doesn’t really help. Is there a log file for production I can access via heroku?
Also my best guess is it has something to do with the bd, maybe it didn’t load properly. I checked my heroku account and click the following addon:
Heroku Postgres Dev :: Olive
now my db says size of 6mb but tables 0, which is concerning. However I don’t know how to query my db on heroku and there seems to be no interface on the site to view my db. Does db not automatically push with «git push heroku master»
Anyways, db is my best guess at the moment but I can’t be certain, I’m not sure what to do since I have no logs
I was able to check the db on heroku using:
from https://devcenter.heroku.com/articles/heroku-postgresql however, there are no enteries in my db, there are enteries in my dev db but apparently it did not transfer to heroku, is there a way to push (or overwrite) your heroku db with the one in your dev environment?
Kyle: I tried the taps thing,Failed to connect to database:
pc us my username for pg on my ubuntu machine, however my password is ok since its working on my local machine
my database.yml file
EDIT: I checked the log and it is infact the db causing the problem, the enteries in my table aren’t being pushed into heroku and with an empty db my app is crashing (bad design I know)
Redmine
Redmine won’t start (Ubuntu 14.04, redmine 3.1.2)
I’m trying to install redmine 3.1.2 on a virtual Ubuntu 14.04 (host windows).
I’ve use the tutorial HowTo Install Redmine 3.0.x on Ubuntu 14.04 with Apache2, Phusion Passenger, MySQL, Subversion and Git (Gitolite) and I had a problem with the following command:
The command line was unable to be successful because there were a version conflict between «_gem ‘redcarpet’, ‘
> 3.1.2‘_» and «gem ‘redcarpet’, ‘
> 3.2.2‘». So I’ve changed, in opt/redmine/redmine-3.1.2/plugins/redmine_git_hosting, the line: «gem ‘redcarpet’, ‘
> 3.1.2′» into «gem ‘redcarpet’, ‘
Then I was able to continue installation. Installation works well (without error) until the end.
However, when I wanted to launch 127.0.0.1/redmine in firefox, I’ve firstly had an access denied error. So I’ve modified the access right to the passenger file with the command:
sudo chmod 644 /etc/apt/sources.list.d/passenger.list
Now, when I go to 127.0.0.1/redmine, I have no explicit message error, just the following message:
We’re sorry, but something went wrong.
We’ve been notified about this issue and we’ll take a look at it shortly.
Can someone tells me what I did wrong and how to resolve this?
We re sorry but something went wrong
Профиль
Группа: Участник
Сообщений: 16
Регистрация: 20.1.2010
Репутация: нет
Всего: нет
Эксперт
Профиль
Группа: Завсегдатай
Сообщений: 1878
Регистрация: 12.3.2007
Репутация: 12
Всего: 56
Профиль
Группа: Участник
Сообщений: 16
Регистрация: 20.1.2010
Репутация: нет
Всего: нет
Цитата(source777 @ 20.4.2010, 11:53) |
Ты видимо запустил сервер в production mode, запусти в development mode и тогда он покажет тебе описание твоей ошибки. |
Профиль
Группа: Участник
Сообщений: 16
Регистрация: 20.1.2010
Репутация: нет
Всего: нет
Цитата(source777 @ 20.4.2010, 11:53) |
Ты видимо запустил сервер в production mode, запусти в development mode и тогда он покажет тебе описание твоей ошибки. |
Эксперт
Профиль
Группа: Завсегдатай
Сообщений: 1878
Регистрация: 12.3.2007
Репутация: 12
Всего: 56
Цитата(Rname @ 29.4.2010, 10:50 |
Следуя советам всех, кто мне их давал, я распаковал во все возможные директории. |
Что распаковал? Насколько я помню для работы с SQLite надо установить SQLite, а не распаковывать какие-то библиотеки во все возможные директории.
Профиль
Группа: Участник
Сообщений: 16
Регистрация: 20.1.2010
Репутация: нет
Всего: нет
Цитата(Rname @ 29.4.2010, 10:50 |
Следуя советам всех, кто мне их давал, я распаковал во все возможные директории. |
Что распаковал? Насколько я помню для работы с SQLite надо установить SQLite, а не распаковывать какие-то библиотеки во все возможные директории.
Эксперт
Профиль
Группа: Завсегдатай
Сообщений: 1878
Регистрация: 12.3.2007
Репутация: 12
Всего: 56
Цитата(Rname @ 7.5.2010, 08:48 |
На самом деле, использовать SqLite не просто нужно, но очень нужно. |
Ну если у тебя embedded база данных в каком-то десктопном приложении, то да. А для веб-приложений даже сложно представить зачем может понадобиться использовать SQLite.
Если Вам понравилась атмосфера форума, заходите к нам чаще! С уважением, source777.
[ Время генерации скрипта: 0.1249 ] [ Использовано запросов: 21 ] [ GZIP включён ] We’re sorry, but something went wrong heroku railsI am having problems deploying a rails 3.2 app with heroku, I am getting the above error when I load the app. Here are my logs: I am fairly new to rails/heroku, so any help is much appreciated. I am trying to deploy after alot of development. For the future, is it better to push to heroku early in the development process and then keep pushing as you go? Thanks! 1 Answer 1ActiveRecord::StatementInvalid (PG::Error: ERROR: relation «houses» does not exist. For the future, is it better to push to heroku early in the development process and then keep pushing as you go? At the project I am currently working with our team, we have 2 instances of heroku, means 2 apps, one is for production, the second for testing, changes are pushed to testing app first and if all goes well we move it to production. Edit As I found out your are using sqlite for development: Remove sqlite3 or move it into a development group in your Gemfile like this: or easier, just use PG on your local computer for development. You might have some sql statements that will work in sqlite and will not work in postgres on heroku, so in your place I would use PG on development. We’re sorry but work doesn’t work properly without JavaScript enabled. #5470Commentsalien-neko commented May 12, 2020VersionEnvironment infoSteps to reproduceI created a VueJS app and I’m getting the following error when I look at the source code in the web browse We’re sorry but work doesn’t work properly without JavaScript enabled. Please enable it to continue. What is expected?Vue running smoothly What is actually happening?The text was updated successfully, but these errors were encountered: sodatea commented May 12, 2020It’s expected. The Preview panel will try to render HTML but it does not run JavaScript so it only shows the content of the tag. The full source code is shown in the Response tab. babak-karimi-asl commented Aug 1, 2020elizavetaanisimova commented Aug 2, 2020I have the same problem, Xcode babak-karimi-asl commented Aug 5, 2020 •my problem solved by replacing vue instantiation code in main.js with the following : one of my colleagues did this i don’t know from where. kennyj2016 commented Sep 16, 2020I had mine resolved. It was due to a CORS policy setting. You may want to check your server’s CORS policy setting. For Django, it needs following to be set in the settings.py if CORs module is installed. Other servers may have different syntax or configurations. We’re sorry, but something went wrong #341Commentsbzbzh commented Aug 22, 2018 •
We’ve been notified about this issue and we’ll take a look at it shortly. And yet log-in directly from portal clicking on the company app is working. The URL giving this error looks like: The text was updated successfully, but these errors were encountered: pitbulk commented Aug 22, 2018That error message came from OneLogin and not from the php-saml toolkit. Can you verify that the user you are trying to log in has access to the App (Check it on the SAML connector at OneLogin)? bzbzh commented Aug 23, 2018It has since I can log to the app directly from OneLogin website (clicking the app logo). pitbulk commented Aug 23, 2018Then you will need to create a support ticket at OneLogin since the error came from the OneLogin platform. This github space is to solve code issues, not for offer this kind of support. We’re sorry, but something went wrong. (Rails, Nginx, Puma, Postgres, Capistrano)So I have been trying to deploy my rails app with no luck. There is no problem when I run: but when I open my server ip, the only thing I see is: We’re sorry, but something went wrong.If you are the application owner check the logs for more information.And I have checked the production.log the output is: How do I fix this? What could be the problem, any ideas? Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.Browse other questions tagged ruby-on-rails ruby ruby-on-rails-3 postgresql nginx or ask your own question.RelatedHot Network QuestionsSubscribe to RSSTo subscribe to this RSS feed, copy and paste this URL into your RSS reader. By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. We re sorry but something went wrongThe big problem is that it is wrong since more than 2 months. And i have to use back IE only for fb. Occurency : always Firefox version : up to date, now v15 Extension and plugins : default ones Conditions : brand new PC at work For info, i have the same issue on my home PC since 3 months, since FF12 release, in this case with plugins protecting privacy. But even desactivated, it is not working. As a first contact, i posted related bug report in fb process, but i never had any reply since, neither one email to confirm bug report. How to do, please? Modified September 5, 2012 at 3:50:19 PM PDT by kokoro Chosen solutionThis can be caused by blocking cookies from specific domains. Do you have the cookie settings set to «Ask me every time»? You can remove a possible cookie exception for www.facebook.com and create an exception for facebook.com instead to include all facebook domains. All Replies (4)Clear the cache and the cookies from sites that cause problems. «Clear the Cache»: «Remove Cookies» from sites causing problems: Start Firefox in Safe Mode to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes). This office PC is brand new, and same behavior as at home. Here, i have default theme and no plugin/extension installed since PC delivery. I cleared the cache&cookies (as i did many times trying to solve by myself this issue). And in safe mode, i have the same issue : Chosen SolutionThis can be caused by blocking cookies from specific domains. Do you have the cookie settings set to «Ask me every time»? Heroku error: We’re sorry, but something went wrongi have deployed an app to heroku(finance tracker under «ROR developer course» from udemy.com). The login button works fine but when i click on the signup button, it gives me this error I have ran heroku run rake db:migrate successfully. I used devise gem for authentication. Pls any idea someone. thanks 2 Answers 2Trending sortTrending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers. It falls back to sorting by highest score if no posts are trending. Switch to Trending sort So the first thing you should do is go to the Heroku admin panel for your app and look through the log file. You should find a stack trace (should look like an error followed by a bunch of method calls and line numbers). Another option is for you to remotely access the app server, go to you Heroku app directory on your computer and run (assuming you have Heroku CLI installed) then navigate to your log directory and run (log file should be production.log or develop.log) and that will show you a real time stream of the log activity, so just go recreate the bug and see what happens. Replace these lines With these lines What happened is the gem devise that you are using changed its API in version for so the syntax you are were using is no longer valid. I am assuming that at some point in time you did a bundle update or something that inadvertently upgraded you gem sonarqube updatecenter error We’re sorry, but something went wrongI can see the following error in sonar.log: 8: 9: @rescues_path[«rescues/_trace.erb»] %> 10: gems/gems/actionpack-2.3.15/lib/action_controller/templates/rescues/diagnostics.erb:7 org/jruby/RubyKernel.java:2227:in `send’ gems/gems/actionpack-2.3.15/lib/action_view/renderable.rb:34:in `render’ gems/gems/actionpack-2.3.15/lib/action_view/base.rb:306:in `with_template’ gems/gems/actionpack-2.3.15/lib/action_view/renderable.rb:30:in `render’ gems/gems/actionpack-2.3.15/lib/action_view/template.rb:205:in `render_template’ gems/gems/actionpack-2.3.15/lib/action_view/base.rb:265:in `render’ gems/gems/actionpack-2.3.15/lib/action_controller/rescue.rb:133:in `rescue_action_locally’ gems/gems/actionpack-2.3.15/lib/action_controller/rescue.rb:152:in `rescue_action_without_handler’ gems/gems/actionpack-2.3.15/lib/action_controller/rescue.rb:73:in `rescue_action’ gems/gems/actionpack-2.3.15/lib/action_controller/rescue.rb:162:in `perform_action_with_rescue’ gems/gems/actionpack-2.3.15/lib/action_controller/rescue.rb:160:in `perform_action_with_rescue’ gems/gems/actionpack-2.3.15/lib/action_controller/flash.rb:151:in `perform_action_with_flash’ org/jruby/RubyKernel.java:2235:in `send’ gems/gems/actionpack-2.3.15/lib/action_controller/base.rb:532:in `process’ gems/gems/actionpack-2.3.15/lib/action_controller/filters.rb:606:in `process_with_filters’ gems/gems/actionpack-2.3.15/lib/action_controller/base.rb:391:in `process’ gems/gems/actionpack-2.3.15/lib/action_controller/base.rb:386:in `call’ gems/gems/actionpack-2.3.15/lib/action_controller/routing/route_set.rb:450:in `call’ gems/gems/actionpack-2.3.15/lib/action_controller/dispatcher.rb:87:in `dispatch’ gems/gems/actionpack-2.3.15/lib/action_controller/dispatcher.rb:85:in `dispatch’ gems/gems/actionpack-2.3.15/lib/action_controller/dispatcher.rb:121:in `_call’ gems/gems/actionpack-2.3.15/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack’ org/jruby/RubyProc.java:290:in `call’ org/jruby/RubyProc.java:224:in `call’ gems/gems/activerecord-2.3.15/lib/active_record/query_cache.rb:29:in `call’ gems/gems/activerecord-2.3.15/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache’ gems/gems/activerecord-2.3.15/lib/active_record/query_cache.rb:9:in `cache’ gems/gems/activerecord-2.3.15/lib/active_record/query_cache.rb:28:in `call’ gems/gems/activerecord-2.3.15/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call’ gems/gems/actionpack-2.3.15/lib/action_controller/string_coercion.rb:25:in `call’ gems/gems/actionpack-2.3.15/lib/action_controller/params_parser.rb:15:in `call’ file:/F:/Program Files/sonarqube-5.0/sonarqube-5.0/lib/server/jruby-rack-1.1.13.2.jar!/jruby/rack/session_store.rb:70:in `context’ gems/gems/actionpack-2.3.15/lib/action_controller/failsafe.rb:26:in `call’ gems/gems/actionpack-2.3.15/lib/action_controller/dispatcher.rb:106:in `call’ file:/F:/Program Files/sonarqube-5.0/sonarqube-5.0/lib/server/jruby-rack-1.1.13.2.jar!/rack/adapter/rails.rb:34:in `serve_rails’ file:/F:/Program Files/sonarqube-5.0/sonarqube-5.0/lib/server/jruby-rack-1.1.13.2.jar!/rack/adapter/rails.rb:39:in `call’ file:/F:/Program Files/sonarqube-5.0/sonarqube-5.0/lib/server/jruby-rack-1.1.13.2.jar!/rack/handler/servlet.rb:22:in `call’ Im using the Sonaqube 5.0, java 8 and mysql 5.6 server. It is working very well for past 1 year. Today I tired to check for updates and i got this error. Please help me on this. Thanks. Heroku «We’re sorry, but something went wrong» after Postgres migrationI recently did Heroku’s requested database migration from a «shared database» to Postgres. I followed Heroku’s directions carefully, and it all went fine until the last step: removing the old shared database. At that point, my app went down with the «something went wrong» message, and it’s been down ever since (going on two weeks now). Note that the app was still working after the step in which I switched to the new database, and according to «heroku config», it is using the new database. It shouldn’t care about the old one disappearing. The logs say nothing other than 500 errors. I submitted an urgent support request to Heroku, but they were not helpful. They just said that my data is still there but, «Your application isn’t logging so it’s not clear why this is happening but it doesn’t appear to be due to the migration.» That was a week ago, so it’s not looking like they’re going to do anything more. I agree that the problem shouldn’t be due to the migration, but given that I’ve made no changes to the app except the migration, and that it died exactly when I removed the old database, I don’t see what else it could be. My app is probably pretty old at this point (Rails 3.0.3), so my only thought now is to update everything to the latest versions and redeploy. The app is used to record merit badges and rank advancements for our local Boy Scout troop, so I really need to get it running again. Any advice would be greatly appreciated. Network Monitor «We’re sorry, but something went wrong»We are having an issue with our Network monitor. Has been working fine up till this point in time. We are running Version 1.5.111 on a 64bit Window 10 Professional tower. Our Spiceworks is located on a different Server. Hi guys, talked with our Ops team. This is a continuation of some issues we’ve had recently with our load balancer. We think it was affecting the Community as well, but in a less noticeable way. Both cases seem to have been inconsistent (did not affect 100% of connections). Packet inspection revealed a problem with cipher negotiation that was causing a failure connecting between your client (your Network Monitor app) and the accounts service and Community. This explains why auth was failing and emails were also held up. The fix involved creating a new cipher configuration on our load balancer that controls which TLS ciphers are available for negotiation on client and server. We didn’t recently change the configuration around these ciphers so we’ll be continuing to work with the load balancer vendor to understand why the existing cipher configuration unexpectedly stopped accepting some connections. Sorry about the problems today. We have this thoroughly documented in case there are further issues with the load balancer that prevent connections, like this. EDIT: Updated the technical bit in the 3rd paragraph to add some more details. We’re sorry, but something went wrong HerokuDon’t start app at Heroku. Migrate I was do, but it don`t work anyway. Please help my anyone 1 Answer 1This error comes from your app’s code. However, your app is sending it’s logs to the local filesystem, which means you don’t see the exception in heroku logs. You would need to configure your app to send logs to STDOUT or STDERR to be able to see them. Once you have added this gem to your app and redeployed it, the raised exception should show in your logs and you can fix in your app’s code. Not the answer you’re looking for? Browse other questions tagged heroku or ask your own question.RelatedHot Network QuestionsSubscribe to RSSTo subscribe to this RSS feed, copy and paste this URL into your RSS reader. By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. FIX: We’re sorry, but something went wrong Instagram errorInstagram is one of the most popular social media platforms, that also allows you to use two accounts. And what is even more impressive is that Instagram Live is available to both Windows 10 PC and mobile users. However, sometimes, the app might not work properly, as you won’t be able to run it in normal conditions. Users described ending up with a crashed program or not being allowed to load any posts. Moreover, from what we found, issues can also appear when sending DMs to friends. When attempting to connect you’ll get a message from Instagram, which says the following:
This may cause the platform to crash or just stop you from posting on Instagram, and we truly understand how irritating it can be. We selected only the best options to quickly solve this annoying issue. Make sure you keep reading our guide to find them all. But first, let’s see some common reasons why the error shows up in the first place. Why does the Instagram error: Sorry, something went wrong appear?There are two main leading causes for Instagram bugs: the service is down or there is a problem with your Internet connection. Before assuming that Instagram got glitches, you should first check whether the app is down all over the world or not. Yes, note that sometimes it faces issues globally, and other times it only affects specific regions. However, account glitches are the most common reasons that explain why the Instagram error: We’re sorry, but something went wrong appears. Quick Tip: Try opening the platform using Opera. It has built-in integrations for Instagram, both for computer apps and mobile. Enter your credentials and access the feed from the sidebar. Opera is a secure browser, with anti-tracking features, plus a free, unlimited VPN to make sure all your private data stays protected. OperaRemove errors and keep track of your Instagram feed, and quickly respond to your messages directly from the sidebar! How can I fix the Sorry, something went wrong error?1. Make sure that Instagram server is availableSometimes, Instagram servers can be temporarily unavailable. You can confirm this by using a live outage map online or ask your friends if they are having the same issue. Just confirm that the problem is only related to your account and not to the entire Instagram server. 2. Login through FacebookNote that this can only be possible if you had earlier connected these two accounts. So, it is advisable to get your Facebook and Instagram accounts connected. Expert Tip: Some PC issues are hard to tackle, especially when it comes to corrupted repositories or missing Windows files. If you are having troubles fixing an error, your system may be partially broken. We recommend installing Restoro, a tool that will scan your machine and identify what the fault is. Linking them can prevent from being hacked and help quickly resolve the Sorry something went wrong Instagram error. Since the day Facebook bought Instagram, the connection between the two of them has become extremely significant. There even are some features, like Instagram ads, that you can enjoy through Facebook. If these options didn’t work for your situation, make sure you check and try the other listed ones. 3. Use the Windows 10 Instagram appIn case the Instagram app is not working on your computer, take a look at some useful tips to solve the issue right away. Up next, you are clearly ready to contact your friends, so check out how to send direct messages from PC. 4. Temporarily disable your accountThe We’re sorry, but something went wrong Instagram error might occur randomly, so temporarily disabling your account can clear the app from any glitches. In case you choose to use this option, your photos, comments, and likes will be hidden until reactivating your profile. Also, note that you can only disable the Instagram account from a computer or mobile browser. 5. Uninstall and reinstall the Instagram appYou can quickly uninstall and reinstall your Instagram app yet keep in mind that this solution works only if you’re using the Windows 10 Instagram app. Uninstalling the app on your phone or computer will only delete it. All your content, like photos, tags, likes, or comments will still be there. When you reinstall Instagram, sign back in as uninstalling it will log you out. The process doesn’t do anything to your profile and everything will be the same when you start using the app again. 6. Contact Instagram Help CenterCheck out some others Instagram problemsThe Something went wrong error was just one example, but you might encounter some other annoying Instagram issues. Take a look at the following list including the most common ones: Is Instagram one of the most popular social platforms?Even if Instagram users sometimes face random issues, this remains one of the most popular social media platforms. To prove it, take a look at the following statistics: As you can see, Instagram is the fourth most popular social platform worldwide, after Facebook, Youtube, and Whatsapp. According to the 2021 study, Instagram registered a total of 1.300 million global active users. So, no matter how many issues it can bring up, our presented app will always be on top of the most-used social media tools. You’ve already seen some potential solutions that might help you fix the Sorry something went wrong Instagram error. However, if you notice that your Instagram account is already connected to a Facebook page, reconnecting the accounts can resolve the issue and this isn’t the only tip to apply. Do you have any others questions regarding the above procedures? Feel free to share them with us by simply leaving a comment in the dedicated section below. Restoro has been downloaded by 0 readers this month. When deploying my rails app to heroku i get the following error: I checked the logs with: It shows a lot of syntax errors: However, in my development mode, I have no syntax errors and everything works fine. Here is the part of the code giving the syntax error: In Chrome, dev tools i get a 500 error Note: I have installed the rails 12 factor gem in the production env, i still get this error. This code works as is in development mode with no syntax errors. Any ideas/help please? 1 Answer 1As the error says, you have a syntax error in your hash: In particular, you cannot define symbol hash keys with an appended : when those keys contain a hyphen. (This should be true regardless of environment since its a Ruby syntax issue, so your comment that it works in development is odd.) Instead, you have to define those hash key-value pairs using the old => : Note that Rails also supports defining data-* attributes with a nested hash: This does not work for arbitrary hyphenated attributes, however. Heroku Error? We’re sorry, but something went wrong. We’ve been notified about this issue and we’ll take a look at it shortly herokuHi I wonder why one of our pages is in trouble. I run heroku logs in our cli And this is the output: I really don’t know what happened? When I’m browsing http://peekbox.tv/bo The error still appears. Should i run heroku rake db:migrate to heal the errors or any other solutions We’re totally in trouble. 2 Answers 2Trending sortTrending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers. It falls back to sorting by highest score if no posts are trending. Switch to Trending sort The actual error is a couple of lines down: Therefore one of your post objects has a poster that is nil. Experiment in the console on Heroku ( heroku run console ) and see if you can find the post that doesn’t have a poster. Putting my «comment» here so the text can be formatted properly. From the terminal try: This should get you started. Your error is showing that post.poster is nil and you want to find out why. But I agree with @ryanbigg that you need to learn the basics. Judging from your experience level this might not be something you can figure out on your own. Resolved We’re sorry, but something went wrong.SolaromNew PleskianI am trying to deploy a NodeJS application on my server, but an error message appears. IgorGForums AnalystSolaromNew PleskianOkay, I have pull a NodeJS application from my remote repository. Only, when I wish to access my domain: «api.as-sellerie.fr», an error appears with the code «c61ecbaf». In the domain logs, an error 500 : Honestly, I’m a brand new Plesk customer and I use Google Translate to communicate in English, lol. If you have an idea, or a hypothesis, I am interested. I keep looking for the answer to the problem in the meantime, and come back to you if I have an idea. SolaromNew PleskianIt’s possible not to use phusion passenger? I found the logs : [Wed Apr 01 01:32:46.549460 2020] [autoindex:error] [pid 444:tid 140497834174208] [client 192.168.1.1:56202] AH01276: Cannot serve directory /var/www/vhosts/as-sellerie.fr/api.as-sellerie.fr/: No matching DirectoryIndex (index.html,index.cgi,index.pl,index.php,index.xhtml,index.htm,index.shtml) found, and server-generated directory index forbidden by Options directive I tried this, it didn’t work IgorGForums AnalystWhat is the output of command: SolaromNew Pleskian
In the file manager, I clicked on «as-sellerie.fr«. Then I go to the files for my subdomain and i add the file .htaccess. My website appears with an error 500. Here is the log. [Wed Apr 01 16:34:04.627038 2020] [core:alert] [pid 19115:tid 140497996625664] [client 192.168.1.1:57794] /var/www/vhosts/as-sellerie.fr/api.as-sellerie.fr/.htaccess: SolaromNew PleskianPhusionPassenger did not detect the startup file «app.js«. Do not specify listening on a strict number as I have been able to do. For example, for PhusionPassenger to work, write: And not : Thank you Igor for the time you spent trying to find a solution. I hope my post will help other users. Network Monitor «We’re sorry, but something went wrong»FINAL UPDATE: The issue has been resolved. UPDATE 10/5/2016 7:45 PST: There is an active problem on Spiceworks HQ’s end that is preventing anyone running Network Monitor from logging in. Just ran into this problem today, but haven’t opened Network Monitor since last week so no clue how long the problem has been going on. After attempting to log in to Network Monitor I get a screen that just says «We’re sorry, but something went wrong». This is occurring on 3 different Network Monitor servers in 3 different sites. Popular Topics in Spiceworks General Support70 RepliesMe too facing same problem. not much details available even in google search. contacted Spicework team Glad it’s not just me. This started today. Sounds like something at Spiceworks HQ went screwy 🙁 Same problem here. Same problem also here today Same problem here 🙁 Same problem here 🙁 same issue with me as well..Please inform me if anyone got solution. OK, well good to know that I’m not the only one. Hope this gets resolved soon. Same problem here. reinstalled same result as the OP The services not restarting, or stopping, properly is a known bug that we are close to fixing. The «We’re sorry, but something went wrong» message is new. I haven’t seen that before, but I’m able to reproduce this on two separate installs on my end. I’m looping in our dev team and marking this high priority until we get it figured out. having the same problem and was wondering if it was just me Same here. Too bad I had to reinstall again thinking it was just me 🙁 Seems I will have to do the configuration all over! Same thing is happening to me. Yes been running for a long time now getting same error. Add this to the very long list of bugs in Network Monitor Have 3 separate installs on separate networks, all showing the same. Is it fixed yet?? 😀 Same problem here. Same problems here. Wireshark captures seem to indicate a problem on the Spiceworks cloud. Same problem here I opened a ticket with Spiceworks and their team is working on it regarding authentication. Same problem here. At first I thought one of my backups messed something up last night as I was changing around my backup settings. Did a Network Monitor VM restore to a few days ago, that didn’t work. Did a VM restore to a week ago and that didn’t work. Came to Google, put in the error msg and sorted it the results by date and found this at the top. I’m glad I’m not the only one having this problem. I have tried installing an older version with the same result. I’m sure you will find them, but if you want me to let you know of any do give me a shout. Jaime D (Spiceworks) I have tried installing an older version with the same result. Posted this on my way out the door last night, checked this morning to my phone blown up. Glad (maybe not the right word) that it wasn’t just me. I’ve edited my OP to say that this is a global issue on Spiceworks HQ’s end. Having the same issue with the services not «stopping» and same error «Something went wrong». The services issue has been happening alot in the last few days. The Spiceworks Event Processor is the service showing «stopping». I have to kill the service and restart it. I feel so blind without Network Monitor up and running. I think I will go hide in a corner until it’s fixed. Is there an official notice on this? Status page etc? My network monitor alerts started coming through now. My network monitor alerts started coming through now. I’m back up too. Nice work! Can you guys try logging in and let me know if it works? If you haven’t already. Can you guys try logging in and let me know if it works? If you haven’t already. Mine is Now Working, as 11am US Central Time Looks like it’s solved. Noa Solution is an IT service provider. Sweet! Thanks for confirming that for us! I’m back up, thanks guys! I’m back in, thanks! This topic has been locked by an administrator and is no longer open for commenting. To continue this discussion, please ask a new question. Read these next.Building a better IT toolboxHi all,Been banging my head against a wall for this one.We’ve got an organisation with two type of people. Group A and Group B we’ll call them.Group A needs to see Group B in their address lists, however, not see anyone but themselves from Group A.Group B. Can a professional network security assessment be done with just F/OSS tools?I tend to doubt it. To have a professional quality security assessment, you would need to scan for the latest vulnerabilities. I am not sure if any free tool is kept that up-to-date. Maybe I’m wrong.Maybe with the correct combination of tools? OpenVAS, Me. Snap! PyPI phishing, Twilio breach, VPNs, Artemis I, photos of the moon, & moreYour daily dose of tech news, in brief. Welcome to Monday, everyone! On August 29, 1990, the Computer Misuse Act became the United Kingdom’s legal defense against hacking and criminalized several acts, including accessing data without authorization. We re sorry but something went wrongПрофиль Репутация: нет Здравствуйте. Без вашей помощи, дорогие специалисты, не могу обойтись. После запуска rake assets:precompile при запуске в окружении production вижу, как сайт извиняется http://petromi.com/get/9ac77e194e.png
При запуске в окружении development показывает следующее http://petromi.com/get/bb6bbb0af9.png
Showing /home/virtwww/w_office-trend-ru_c209ba3b/http/app/views/public/_main_menu.html.erb where line #12 raised: undefined method `transliteration’ for nil:NilClass В чём я допустил ошибку? Как её исправить? Как поднять сайт обратно? Шустрый Профиль Репутация: нет Опытный Профиль Репутация: нет
простите меня пожалуйста, но я не могу удержаться Сообщения с сайта на почту пользователю j2FunOnly, этот вопрос фрилансерам решить не удается. Иначе я бы не просил помощи здесь, заведомо ничего не понимая в программировании. Добавлено через 51 секунду Nameless One, не знаю, как это делать логи нашел вот такие (не знаю, те или не те, нашел в нете, что надо смотреть именно в логах с таким именем) Вложения
Something went wrong when installing Prey SMOG SETTINGS WRONG CMOS Setting Wrong. Wrong FireBird Binaries «We’re sorry but something went wrong please try again» when enabling testing/simulator for Smart Home actionWhen enabling testing of my Smart Home action for an old project I get «we’re sorry but something went wrong please try again» and my Smart Home action does not show up for linking in the Google Home app. I created a new project and I can enable testing mode for it. However, I would like to use my old project as I have set up several services/APIs (like report state) that I would prefer not to set up from scratch on a new project. Any way to know why I am getting «we’re sorry but something went wrong please try again» and/or figure out what is different between my old and new projects that makes the old not work? My old application was responding to Google Assistant commands but I had to unlink ir because re-sync’ing my smart home devices was failing. After unlinking I am not able to re-link because I cannot get my application in testing mode due to this problem. Fatal error & uncaught error with WooCommerce Product Bundles plugin #5338CommentsOrhn commented Aug 8, 2018PrerequisitesDescriptionFatal error, uncaught error, when using WooCommerce Product Bundles plugin. It was working with RC4. Steps to reproduceIsolating the problemEnvironment== Server Environment == == WordPress Environment == == Theme == == User == == Active Plugins == == Must-Use Plugins == ErrorFatal error: Uncaught Error: Call to a member function is_type() on string in /app/public/wp-content/plugins/woocommerce-product-bundles/includes/class-wc-pb-display.php:294 Stack trace: #0 /app/public/wp-includes/class-wp-hook.php(286): WC_PB_Display->add_edit_in_cart_notice(») #1 /app/public/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(», Array) #2 /app/public/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #3 /app/public/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php(133): do_action(‘woocommerce_bef. ‘) #4 /app/public/wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php(216): ElementorPro\Modules\Woocommerce\Documents\Product->print_content() #5 /app/public/wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php(169): ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager->do_location(‘single’) #6 [internal function]: ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager->ElementorPro\Modules\Them in /app/public/wp-content/plugins/woocommerce-product-bundles/includes/class-wc-pb-display.php on line 294 The text was updated successfully, but these errors were encountered: Receive «We’re sorry, but something went wrong.» error when attempting to sign CLA #104Commentsjoelrbrandt commented Feb 26, 2015After I authenticate with GitHub, fill out the form, and click «submit», I get an error that says «We’re sorry, but something went wrong.» This happens both in Chrome (40.0.2214.115 (64-bit)) and Safari (Version 8.0.3 (10600.3.18)) I’m filling the form with this information: The text was updated successfully, but these errors were encountered: dionyziz commented Feb 26, 2015I get an HTTP 500 error which I don’t know if it’s the same. Here’s a screenshot of the error. This occurs after the form is POSTed. The details I entered are: Email: dionyziz@kamibu.com rwaldron commented Feb 26, 2015Don’t laugh—I can’t sign the CLA for JSHint. mattflaschen commented Feb 27, 2015I get the same error, in both Firefox and Chromium. schuyler1d commented Feb 27, 2015I also get the same error (also need to sign CLA for JSHint). dionyziz commented Feb 27, 2015I ended up signing via GPG. On Fri, Feb 27, 2015 at 5:17 AM, Schuyler Duveen notifications@github.com
— victor-homyakov commented Feb 27, 2015FAIL. Can’t sign the CLA. subnetmarco commented Feb 27, 2015bollwyvl commented Feb 28, 2015fabiomcosta commented Feb 28, 2015I had the same issue svendahlstrand commented Mar 1, 2015jugglinmike commented Mar 1, 2015Would anyone subscribed to this issue mind hopping back over to https://www.clahub.com/agreements/jshint/jshint and trying to sign again? @stevenbenner just successfully signed (thanks, Steven!), and I’m cautiously optimistic that this has magically fixed itself (especially since the webhook handler seems to be working as well) joelrbrandt commented Mar 2, 2015@jugglinmike Works for me! Closing this issue. subnetmarco commented Mar 2, 2015The bug is still there when I try to sign at https://www.clahub.com/agreements/Mashape/kong subnetmarco commented Mar 2, 2015To give some more context, below is the snapshot of my form. I am also the creator of the CLA, so the issue may be related to owners signing their own CLAs. jugglinmike commented Mar 2, 2015@thefosk I’m not so sure about that—I was the first to sign my project’s CLA. Then again, @rwaldron is also an owner of the GitHub repository (but not the license on CLAHub), and he couldn’t sign. It might be that he triggered the bug when he first attempted to sign. @rwaldron: do you remember if you commented here immediately after attempting to sign? jasonm commented Mar 5, 2015Hm, yes there are errors logged for these. Here’s a redacted subset for some of the JSHint-related ones: https://gist.github.com/jasonm/761b3d3d25aa697d3cda Interestingly the access_token that I redacted from those logs doesn’t appear attached to any CLAhub user; I’d expect it to be @jugglinmike ‘s token, i.e the owner of the Agreement. @jugglinmike did you go through the OAuth flow anew recently? If so, @thefosk have you gone through a new OAuth flow to get the reduced scopes for #101? If not, could you try visiting https://clahub.com/sign_out and then signing in fresh, and see if that (1) sets the reduced GitHub OAuth scope, and (2) fixes this issue? jasonm commented Mar 5, 2015If this is the case, then it is only the owner of the repo whose auth token needs to be updated, not every signer. jugglinmike commented Mar 5, 2015@jasonm I can’t say for sure :/ I did not create the CLA for JSHint until after gh-101 was deployed, but I already had an account with CLAHub. It sounds like this is related to my account and not necessarily tied to any specific license. subnetmarco commented Mar 5, 2015@jasonm I confirm that after signing out, accepting the new OAuth scopes, and signing the CLA again it finally worked. nijikokun commented Apr 28, 2015New user registering on CLAHub I have this issue @jugglinmike I am not the owner. Hundreds of people wanting to sign our CLA are having this issue. jugglinmike commented Apr 28, 2015@nijikokun You might try de-authorizing CLAHub from the GitHub administrative interface, then completely signing out of both CLAHub and GitHub and then signing in again. The owner of the CLA should try the same (in that case, de-authorizing may delete the existing CLA—you should confirm with the maintainers before trying that if you already have signatures). This may or may not have been what fixed the issue for me. That’s about as much assistance as I can provide. If things still don’t work for you, then @jasonm is probably your best bet—he is the maintainer of CLAHub ( and a swell guy 🙂 ) Footer© 2022 GitHub, Inc. You can’t perform that action at this time. You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. GitLab 500: We’re sorry, but something went wrong [closed]Part of GitLab Collective This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered. 500: We’re sorry, but something went wrong./home/git/gitlab/log/production.log: 1 Answer 1It seems to be linked to the python you are using:
Not the answer you’re looking for? Browse other questions tagged gitlab or ask your own question.This question is in a collective: a subcommunity defined by tags with relevant content and experts. RelatedHot Network QuestionsBy clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. Customizer: We’re sorry, but something went wrong. [SOLVED]Please Login to CommentHi, Edit: as suggested by wstein, it was an UTF-8 related problem. hey I’m new to this but I just made an echo dot Millenium Falcon case when I click on it it just said sorry something went wrong so it similar but not the same issue The way to find out what’s wrong usually is to strip away parts from your code and try the rest until it works. The part that you stripped before it started working can then be considered the problematic one. Slow going, but if none of the usual suspects is responsible for the problem, that will work even if it lacks elegance 😉 It works for me, changed every parameter there is (see picture test.png). change line 152 this way and it works: text(text=str(«angle: «, corpus_angle, «\u00B0»), size=outerDiameter*0.18, valign = «top»); The degree char is unicode U+00B0. Maybe Customizer parser can’t handle UTF-8 source correct. Heroku logs reveal no errors yet most of my URLs read «We’re sorry, but something went wrong.»My app works wonderfully on my local machine but when I create my first post after pushing the app to Heroku I get «We’re sorry, but something went wrong.» on every page except /posts/new The heroku logs command reveals: Heroku customer service isn’t available today due to the holiday. I was wondering if anyone knows how I might troubleshoot this. I have expanded logging enabled. 2 Answers 2Trending sortTrending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers. It falls back to sorting by highest score if no posts are trending. Switch to Trending sort This is not a direct answer to the question above, but more for the related issue of why logs on Heroku are not detailed enough. For those who arrive at this SO post, as I did, because they have sparse logs and can’t understand why, and have Rails 4, note that you need the rails_12factor gem in your Gemfile in order to get detailed debug level logs in your Heroku logs. Essentially, adding the gem enables STDOUT logging in Rails4, without which your debug level logs information is not passed into the Heroku logs. «We’re sorry but something went wrong please try again» when enabling testing/simulator for Smart Home actionWhen enabling testing of my Smart Home action for an old project I get «we’re sorry but something went wrong please try again» and my Smart Home action does not show up for linking in the Google Home app. I created a new project and I can enable testing mode for it. However, I would like to use my old project as I have set up several services/APIs (like report state) that I would prefer not to set up from scratch on a new project. Any way to know why I am getting «we’re sorry but something went wrong please try again» and/or figure out what is different between my old and new projects that makes the old not work? My old application was responding to Google Assistant commands but I had to unlink ir because re-sync’ing my smart home devices was failing. After unlinking I am not able to re-link because I cannot get my application in testing mode due to this problem. Если вы являетесь владельцем приложения, проверьте журналы для получения дополнительной информации. Ошибка 500Я создал страницу в rails с формой SignUp, и она отлично работает локально, все было хорошо, поэтому я развернул проект в Heroku, где static_page работает отлично, но эта форма не работает и выдает мне ошибку:
If you are the application owner check the logs for more information. Итак, я просмотрел журнал, где все загружается нормально, пока это не становится красным:
Я просмотрел форумы, и наиболее логичной причиной было просмотреть маршруты, но ошибка 500 является очень распространенным кодом проблемы по разным причинам, и мне не повезло. ЗадачиСохранённые запросыBug #12305foreman-one We’re sorry, but something went wrong.Описание I’m getting this error after adding formen-one plugin and trying to edit one of the compute profile (small/medium/large). We’re sorry, but something went wrong. We’ve been notified about this issue and we’ll take a look at it shortly.
История#1 Обновлено Eyal Maran почти 7 года назадSorry, just realized it’s in digital-ocean plugin part.. I don’t know how to move it to the correct one.. #2 |