Opencart : Getting twice alert on admin dashboard - opencart

I am getting twice alert after logged in opencart admin dashboard. I have debugged and found that it is happening due to ajax return. It returns the admin login page.
Ref image 1:
Ref Image 2 :
Please help me to resolve it.
Thanks.

I got the similar issue & later resolve it, actually there was problem with my website url. correct website url was containing www(e.g- www.xyz.com) but i miss it on both of my config file(e.g- xyz.com) due to which
this issue was getting.

Related

Facebook is considering our website URL as Invalid

When we are trying to add our website URLs
https://taiwan.kisan.app and https://taiwan.kisan.in
in the Facebook advertisement.
We are getting the following error.
Invalid link URL Provided: The link URL https://taiwan.kisan.app used
in the Ad is invalid. Please use a different URL and try again.
(#2490193)
We are not able to understand what is causing this error
as our site has SSL and it can be browsed from the browser
without error.
The site is hosted on Apache, AWS EC2 instance and there is a load balancer before EC2.
How can we fix this?
You can use an URL shortener service like bit.ly to quickly resolve this. You can also have custom URL tag if you want. See Bit.ly Sign Up
You might try running your website through the Facebook Debugger:
https://developers.facebook.com/tools/debug/
This tool was built to help to identify any errors that Facebook is reading from your website, and help provide information on what needs to be fixed to unblock your link.
From there, you can get help from your developers team or from the Facebook Developers team to make your website compliant and help our systems detect it as safe. Click the link below and select "Get Started" to open a support ticket with the Facebook Developers team (this option may not be available for all websites):
https://developers.facebook.com/tools-and-support/
The error may also occur because the URL is already being used by another Facebook page –possibly a forgotten page, previous page, or an unofficial, unverified page that was created by someone else

Unable to enable AWS Amplify Admin UI

I'm currently finding myself unable to enable the Admin UI. It was enabled before and now does not seem to work.
When I looked at my backends I see this.
Image of Amplify backend environment with a button to enable admin UI.
I then clicked the switch to turn on the Admin UI as shown below.
Image of the Admin UI enable screen.
I clicked it and it says it's enabling in a popup here, before saying it succeeded in another popup here.
I thought this was originally something wrong with my project but it's happening on my other amplify project - is the Amplify Admin UI down for some reason?
P.S. I was going to post this on server fault as this post says but there was no tag for Amplify on here.
Sorry this is not an answer, I cannot make comment so I have to write here.
I wasted a whole day by meeting the exactly the same issue.
At the same time, I tried to run Amplify pull --appid --envName several times, it always stuck there.
Amazon status page shows everything is fine now but I cannot believe it.
I also posted a question here but it seems nobody answered it.
I hope this issue was discovered by more people and Amazon finally can fix it, I believe it's not a problem on our side.
The issue was resolved as shown in this ticket I opened.
https://github.com/aws-amplify/amplify-adminui/issues/206
Have you tried selecting the environment and then clicking Open Admin UI?
I also wasnt able to login clicking in the URL and with my credentials, but clicking there worked.

How to fix facebook share dialog security check error?

I am trying to share ma image from my website https://fungen.000webhostapp.com/.
at When I click on "Post to Facebook" button of share dialog it was displaying alert box with a message website link is unsecure and also asking to enter capcha code as shown below:
I found one answer on internet that suggested to debug my website url and fix bugs using facebook object debugger(https://developers.facebook.com/tools/debug/sharing/). It was showing the warnings related to inreferred and Missing properties as showin the image below:
So, Since my website url https://fungen.000webhostapp.com/ by default points to index.php I added the below meta tags to my index.php. I tried to debug with the same url after some time but, It is showing the same warning as before.
Please help me in solving this problem.
Thanks in advance.

Creating a Facebook Login for my site

I just got my website, www.anointedmanna.com and would like to add a facebook login option for my guests. I have followed all of the steps but I am getting errors. Facebook development assisted me to a point but I don't understand how to fix this.
According to facebook development the problem with this is issue is as follows:
APP_ID in this URL needs to be replaced with your actual app ID and not left that way.
I don't know what this means, can anyone explain? Or is there a step by step option to assist with setting all of this up? it is quite confusing
See: http://developers.facebook.com/docs/reference/plugins/login/
When you click [Get Code], where it says APP_ID you need to replace that with your facebook app's app id.

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"