Safari 16.0 getUserMedia permission prompt is not showing up after disallowing permissions the 3rd time - safari

Version 16.0 (17614.1.25.9.10, 17614)
I'm currently working on a flow related to allowing user permissions on a certain screen. I tested by clicking Don't allow multiple times. For some reason, the popup stops appearing after clicking Don't allow 3 times and it stays as denied until I closes the browser. Is this the expected behaviour?

Related

Applescript assistive access on M1 Monterey. Normal fixes not working

a couple scripts I've made in the past that open things up no longer work on M1 Monterey it seems. They DO work in the Script Editor, but once I try to turn it into an application so that I can stick it in the dock or trigger it from the calendar, it won't open. It keeps giving the error
'System Events got an error: openBookmarkFolder_subsets5 is not allowed assistive access. (-1719)'
I have read a bunch of other questions like this one, and I HAVE allowed the script, script editor, terminal, system events, and applescript utility in the accessibility tab of the privacy section of preferences. Its still not working.
Also that whole section seems broken because the permissions never seem to stick, I have it ticked to allow access to removable devices and it keeps asking me that every time still.
This script is on a removable SSD, and the things it opens are on the same drive. When I try to run it as a standalone, it asks to access the removable drive 4 times in a row, and then gives the assistive access error.
I would like a fix to this
ALSO it wouldn't allow me to open any files due to permissions until that file was already manually opened at least once. That was annoying but I already opened them all, just figured I'd mention that.

Bixby Developer Studio keeps asking me to login

When I first launched Bixby Developer Studio, it greeted me with a startup screen with a Login button. I clicked on it and it opened a login page in my browser. I logged in that page using my Samsung developer account. The login was successful and a pop-up appeared asking me if I will allow the page to launch Developer Studio (which was already open at that point). I allowed it, but nothing happened; Developer Studio was still showing the startup screen.
I restarted the application but it again showed me that startup screen with the login button. If I click on the login button, it will just take me again to the login page in the browser. And then nothing would happen if I login again.
I'd suggest verifying if your browser is configured to accept cookies. If that information is verified and the problem still exists, there might be additional information in the ide.log file that can provide more insight
To get that information, follow these steps:
Note the time when you begin the next steps.
Go through the login process until you hit the point of failure.
From the IDE menu, click on Help -> Create Diagnostics Report. This
will popup a dialog that will point you to the location of the
diagnostics report, by default this location is
C:\Users\'User'\bixby-workspace\
Unzip the diagnostics report and look at the ide.log file for any
errors at the time of login.
Feel free to post the errors here or if you prefer, you can open a ticket with Bixby Support too.
There are a couple of points you could work on here -
In this case, I suggest you to keep the browser open in the background while clicking on the login button. I was facing the same issue and somehow it worked for me like this. This has been an issue on a Windows machine. On a Mac this problem is not faced till now.
You could restart the Bixby studio itself for logging in again.
Also, I suggest removing the browser cookies as told by shahnawaz above.
Do let us know if this still persists !
Thank you all for your suggestions. For some reason, it just started working right after I received dozens of Windows updates (it's been a few days since I logged in to my Windows account as I have been using Linux; I rarely use my Windows account now and I wish Bixby Studio was available in Linux too). So, I actually haven't tried any of your suggestions yet. Thanks again, anyways!

httpd 2.4 and AD: Getting prompted twice when opening .docx

This is a similar question to this one:
Getting a second login prompt when attempting to open a link to a word doc
But since that one is 5 years old and went unanswered:
Apache 2.4 running on RHEL 7. Website authenticates via LDAP. Browser is IE 11 on Windows 7(company policy). Everything works fine except opening files that require MS Word to open. When I click on a link to a .docx , if I choose to open the file, I get a second authentication prompt, which goes away after clicking Cancel twice.
If anyone has any idea how to get rid of this prompt, I'd greatly appreciate it.

Google Signin with IE11 & Edge not working

I'm trying to add Google Signin to our login page. I've followed the code supplied by Google, as well as a GitHub project that I used for code example. Both work perfect on Chrome, FireFox, Safari, but I can't get it to work on IE11 or Edge.
The GitHub project is at https://github.com/googleplus/gplus-quickstart-javascript. This project uses Google's newer apis.google.com, however I've also tried plus.google.com as suggested in another post. Neither work.
I added a data-onfailure function to the button, and get an error "popup_blocked_by_browser" even though the popup blocker is turned off in the browser. Even though I get this popup error, I do get a popup that asks which Google account to use, but when I choose one, I get the "The webpage your are viewing is trying to close the window" message. If I choose Yes, the window closes, but I don't get logged in.
Anyone have any advice for getting this to work in IE or Edge?
I ran into this problem on IE 11 with Windows 10.
I fixed it and then it happened again after receiving Windows Updates - annoying!
Here is what fixed it for me; it was an IE Setting.
Go to:
IE -> Internet Options -> Security
Check "Apply" and then "OK" To exit.
IE Settings Screen Shot
Finally, restart IE.

How to detect download dialogue in internet explorer 9+ using VBA?

I need to authenticate to a website.
After successful authentication - a form is shown, where a few details are filled.
After submitting the form, the page gives an impression that something is loading:
After a non-fixed delay, a download pop up is shown:
Sadly, assuming if I try to download from URL, I cannot overcome the authentication part. The web browser client is authenticated, not the VBA client.
My simple question is:
How to detect, whether this download pop up has appeared or not in IE9+?
A few things I have tried:
URLDownloadToFile is of no use, since the download link for the file is not fixed and appears after authentication
Siddharth's answer, does not addresses IE 9 download dialogue box, rather works for IE 8 dialogue box
I believe that after successfully detecting this pop up, I can download the file to local disk simply using SendKeys - correct me if needed.
Side question: how to download the file to local disk after detection is successful?