I am trying to change discover:sampleSize 500 to 1000 but I am getting an error Unable to update UI setting with superuser.
This answer might help you:
https://discuss.elastic.co/t/unable-to-update-ui-setting-request-failed-with-status-code-403/201409
Your user role might be missing access to the ".kibana" index.
Related
I put a downloaded file from DVWA in /opt/lampp/htdocs
and change config.inc.php.dist to config.inc.php
but when I open localhost/DVWA this is what shows up:
This page isn’t working localhost is currently unable to handle this
request. HTTP ERROR 500
From the spec:
The 500 (Internal Server Error) status code indicates that the server
encountered an unexpected condition that prevented it from fulfilling
the request.
Since this is the only piece of information you are delivering, some suggestions may be :
Check what the error log file says. You can find it in this location /opt/lampp/logs/error_log . You will find more information about the problem there
Check this question, I think that your problem is similar to that one, checking it may help you.
One content type is refusing to create records returning the error "an error occurred during content creation". Other content types seem unaffected. There are currently 2 items that have already been created for this content type so it was working previously.
I'm trying to figure out where to look for error logs, the Node console returns no errors and there are no Mysql database errors in the mysql log file.
Freebsd 12.0-RELEASE-p10
Mysql 8.0.17
Strapi 3.0.0-alpha.26.2
The problem turned out to be caused by a server limit on max file size but Strapi was only returning a generic error message.
I cant seem to find the error log of authorize.net api.
I have Laravel application which uses "authorizenet/authorizenet" package and the code where I try to create a customer profile, I get following error:
"Error getting valid response from API. Check log file for error details"
Can anyone tell me whereto find these logs? and what it's name?
I tried in /var/logs folder but i cant seem to find it.
if someone else has this issue, here is the solution.
The authorize.net has changed their endpoints from https://api.authorize.net to https://api2.authorize.net which is one of the possible reasons that you might get this error.
So if you are hardcoding these endpoints in your code then update it to the new one or if you are using library constant for it, same as me:
\net\authorize\api\constants\ANetEnvironment::SANDBOX
\net\authorize\api\constants\ANetEnvironment::PRODUCTION
Then simply update your library by running:
composer update authorizenet/authorizenet
This is how I resolved it and it seems to be the best way so far because it will update their library to take everything up to date if they have changes something else and you started experiencing this issue.
I hope it helps
I'm trying to install/configure a theme in a new/clean Prestashop 1.6.1.11 installation. I was able to install/enable the theme, but when I try to view the page it comes back with a 500 error message.
I changed _PS_MODE_DEV_ to true in /config/defines.inc.php but still I only get:
The x.x.x.x page isn’t working
x.x.x.x is currently unable to handle this request.
HTTP ERROR 500
It's not showing the error debug information so that I can troubleshoot.
Anywhere else where I need to enable this?
Thanks
You are not able to view the error even after enabling error debugging because the error is being generated before the error debugging is set to enabled. In order to debug your issues, you can check the error log on your server.
In case of Apache you can check following file:
/var/log/apache2/error.log
i have a problem with the manage categories. When i tries to change the already created category "Name" then it cant changes and not saved into the database and gives me the below error in the console.
"NetworkError: 403 Forbidden - http://www.test.com/index.php/admin/catalog_category/save/key/9487ff918e8f40544635df5359718b53/id/41/?isAjax=true" But, when i create the new category then it is saved and does not created the above error. The Problem is arise when i edit the old categories already created.
when i have seen in the console POST?Ajax=true the response gives as belowin the form of javascript parent.updateContent("http://www.test.com/index.php/admin/catalog_category/edit/id/41/key/f437a3f3555a03e0f9f7750af5b4fb6c/", {}, true);
It returns the null value as response.
Please, help me.....
It might be your mod_security causing the 403 errors.
Try adding the following at the top of your .htaccess file in your Magento root directory:
SecFilterEngine Off
SecFilterScanPOST Off
If that doesn't work, it would be easier to determine the exact cause my examining your apache error logs. The logs will give you more insight into why you are receiving 403 errors.