Allow password saving in iOS7 - ios7

iOS7 now has support for Keychain to act as a kind of "1Password" competitor but the site I manage is popping up a dialog when users login informing them that we have "Requested Passwords Not Be Saved"
The full error is:
"Safari Will Not Save Your Password Because "thesite.com" Requested Passwords Not Be Saved"
Does anyone know what we should do to prevent this error and allow users to save their password?

Per John MacAdam's comment the solution was to remove autocomplete="off" from the forms.

Related

Cannot enter address in App Store Connect

App Store Connect now ask for address in bank info, but when I type in the address, I got this:
This address has been modified. Verify the changes and resubmit.
What does this mean? I have tried to edit/submit many times and it is the same issue. Does other developers have similar issue?
PS: I get it to work now! The solution is stupid - tap "Save" 3 times, ignoring the error message.
I get it to work now!
The solution is stupid - tap "Save" 3 times, ignoring the error message.
When I entered "Aggrements, Tax and Banking" -> "Banking" and tried to add an address there, I got the same message as you did.
It only worked when I entered "Agreements, Tax, and Banking" -> "Agreements." I clicked "Paid Apps". Under "Bank accounts" I chose "Edit" -> "Edit Current Account" next to my account and filled in the address there. When I clicked "Save" I got the message "This address has been modified. Verify the changes and resubmit.", but this time the "State or Province" field was added. I clicked "Save" again and it saved without errors.

I can't edit permissions in Matomo for a new user

As a Super User, I have created a new user by clicking the "Add a new user" button. After that, I will edit the permissions for this user (user alum) but I can't with the dropdown.
I have tried with the "user edit form" > Permissions but I can't see the website.
What do you suggest?
Thanks
In your second screenshot, you have set the filter to only show you websites where the user has at least view access. Change this dropdown to view all websites in this list.
After updating the PHP version from 7.0 to 7.1, the problem has been solved.

Does anyone know how to retrieve a password for limechat?

I am new to using Limechat for irc, and can not find my original password. I tried checking the site resend or create a new one, yet this was not an option on the site. Apparently you need a password when adding a new channel.
Just for everybody else that have the same issue, the password is on the keychain.
Open it in OSX, search for LimeChat, click on "View Password" and enter your user password. It will display the password right away.

How to save user name and password in Login screen Open erp

I used google chrome, and when I login to open erp there is no option to save the password,
the username is restore but I want to keep the password automatically fill in the field, does anybody know how to do it?
I used mozila and there is option to save but it doesnt worked.
If you click on "More" option in user Screen, you'll have an option "Reset User Password", click on it and you have a screen to change password.
NOTE: passwords can be saved - just not automatically reused when the corresponding username is entered. I don't have a work-around for that problem, but I can rule out the two methods usually employed to do this:-
_autocomplete disabled
two password fields
The same technique is used on the openerp.com website (it's the same software). Accounts are free and a solution would be most appreciated (it makes testing a pain).
If you are actually not able to save a password (do check in your password manager), check:-
Firefox -> Preferences -> Security -> Passwords
Tick Remember Passwords and check for an entry in Exceptions

Customising an authentication dialog in OSX with SFAuthorizationPluginView

I'm currently developing a custom dialog to be displayed via an Authorization Plugin, based upon the Apple example code of "NameAndPassword", which subclasses the SFAuthorizationPluginView (https://developer.apple.com/library/mac/#samplecode/NameAndPassword/Introduction/Intro.html)
From what I understand, this should allow me to provide different types of authorization / authentication, such as, for example, developing facial recognition for authentication. The problem I have is that when my dialog is launched by the authorization services, it is embedded in a parent dialog and there is additional text automatically added that states: -
"Type the name and password of the user in the "(null)" group to allow this".
After many hours searching the web, I have discovered that I can remove the "(null)" group section with an undocumented environment flag of "suggested-user" (https://devforums.apple.com/thread/180052?tstart=0)
...but text still remains prompting for a password.
In testing, I can launch other available plugin dialogs by calling from my mechanism of the rules in /etc/authorization and these dialogs do not appear to be attached to the parent dialog.
Does anyone know what I need to do to prevent the default text being displayed, or even better, how to have my dialog launched, independently from the parent dialog? Is this even possible with inheriting from SFAuthorizationPluginView?
Thanks.