Unable to access admin settings page wso2 api-m - wso2

I am trying to access the admin settings from the admin page
https://localhost:9443/admin
But the settings drop down is empty. Is there any process I need to follow to enable this.

Please note that the Alerts configuration which was under the Settings tab earlier has been moved to the analytics dashboard since 2.6[1]. That's why it's empty now. Ideally, the Settings tab should have been removed.
Anyway, you can ignore this.
[1] https://docs.wso2.com/display/AM260/Configuring+Alerts

Related

Pinax stripe not allowing me to add payment plans in admin panel

I am developing a django application using Pinax Stripe(https://github.com/pinax/pinax-stripe). I have added the web hooks, test api keys. But when I login into the admin panel and go to 'plans' section to create a plan, in the 'create a plan' page. It doesnt show the text fields for admin to create a plan. Have a I gone wrong with the setup somewhere? I really dont understand this.
To create a plan you have to do the following.
Go to the Stripe account settings https://dashboard.stripe.com/account
Set up your webhook under the "webhook" tab
Go to the Dashboard https://dashboard.stripe.com/test/dashboard
On the left side under "subscriptions" go to "plans"
Create a plan.
Go back to your virtual envrionment and write the following management command in the consolepython manage.py sync_plans
Once this is done you should be able to see your plans. Let me know if that works.

Access denied for all pages including admin in Drupal 8

Recently I made following 2 changes in the admin, after that it show "You are not authorized to access this page" for all pages including admin panel. I do not know how to restore it.
The changes are
1) Enabled Web services modules of HAL, Basic Auth and Resful API
2) Admin > People > Permission, checked on the checkbox for some settings.
Right now only the header and footer is loading with above message for all pages including admin panel. Please help me to fix this.
Note : I tried by clearing browser cache and execute update.php but nothing works.

wso2 dashboard user information recovery

Does the WSO2 dashboard allow for User information recovery? I am looking at it currently, and documentation shows that it allows for users to log in and manage their account. Does the Dashboard also support User Information Recovery, (i.e. resetting the password or finding a forgotten username). And if it does, what values in the configuration file do I need to modify?
Yes it does. Sort of. Here is a sample app that, I'm guessing, the WSO2 folks created.
http://cgchamath.blogspot.com/2013/12/password-recovery-with-wso2-identity.html
The example at the bottom has a readme with how to configure the server. What i did was to add a button to the dashboard login page that loaded the configured sample app, then rebranded the sample to make it look more like the dashboard page.

Sitecore requires me to login in order to see my website

When I access my site that's being managed by Sitecore, it's redirecting me and asking for Sitecore credentials. I have no idea why but obviously the main site should be viewable to public without needing creds.
Thanks.
This could be from your sitecore cookie still in page editor mode, To fix this add this query string to your URL:
?sc_mode=normal
This will update your cookie and no reddirect to login anymore
Assuming that you have a combined CM/CD environment and that this is specific to your computer or other authors' computers, it is likely that Sitecore is picking up on the fact that you were using the Page Editor in a previous session. When you are using Page Editor Sitecore will drop a cookie called website#sc_mode and set it to "edit". If you return to the page with that cookie set it will push you to the Login Page as it things you are attempting to edit that page.
To resolve this try clearing your cookies or using a browser in Incognito mode/Private Browsing.
If this is happening to other users I would suggest following Martijn's advice in the other Answer and checking your site definition.
Check your site definitions in the web.config and/or the sites.config in the /app_config/include/ folder. Most of the times there is some misconfiguration there.
Check the security roles set on your site pages. If for some reason access has been denied to the 'extranet/anonymous' user you won't be able to browse without being authenticated.

Django admin login page redirects to same page on correct login credentials

I'm running a relatively fresh Django app that I haven't added much to. I tried to set up the admin (which I've done on plenty of other apps) to create some sample data while I build out the app, but whenever I try to log in with the super user account I created I get kicked back to the login screen.
When I enter incorrect credentials, I see the proper error message... I just can't get it to take me past the login screen to the admin when I have correct credentials. Has anyone else had this problem and been able to solve it? I'm at a dead end troubleshooting.
Check that SESSION_COOKIE_SECURE is not set while you are not using HTTPS.
Looks like your cookies are messed up. Please start with clearing cookies in browser. If it doesn't help you can also check if your cookies configuration for project is correct. List of settings for cookies configuration can be found here.
Use the below settings for the SESSION_COOKIE_DOMAIN:
SESSION_COOKIE_DOMAIN = "yourdomain.com"