Search results for

“Account Locked”

33,565 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS 9 beta iCloud backup can't be deleted
At least I'm not going mad then - I've literally wasted hours on this issue. Apple should/could give us more control on iCloud storage meaning we could delete these rogue data/files. I'll try deleting files from /Users/<YOUR HOME FOLDER>/Library/Application Support/iCloud/Accounts but wont hold my breath.I'll post back if I have any joy or find a fix.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Stuck on "You've already agreed to the Apple Developer Agreement"
If I want to create an application or do something like it on the Itunes Connect portal, I am sent to this page:https://developer.apple.com/register/error/You've already agreed to the Apple Developer Agreement.It proposes links to Continue with Member center or Sign Out. Nothing else can be done.Continuing to Member Center doesn't work - it only gives the same page again.Signing out works but the same scenario then applies again.I've tried with other computers and navigators, including a Windows and a Mac. The error is present with all navigators (including Safari).Others have been mentioning this error at other places (stackoverflow etc) but have been booted out since it looks so much like a registration error.The account is clean and with accepted agreements.It looks like an iTunes Connect error.We get more and more of these things and bugs lately.
19
0
8.7k
Jun ’15
Using Keychain Services in Swift 2
Has anyone found the/a recommending way to use Keychain Services since Swift 2. The following code from Stack Overflow is from Swift 1.2 and still seems to work, but it's nothing I'd even come up with without help. let query = [ kSecClass as String: kSecClassGenericPassword as String, kSecAttrService as String: service, kSecAttrAccount as String: account, kSecReturnData as String: true ] var result: NSData? let status = withUnsafeMutablePointer (&result) { SecItemCopyMatching (query, UnsafeMutablePointer ($0)) }I'm wondering if there's now a clearer way.
7
0
8.4k
Jun ’15
Only a single iCloud account can be saved
When I try to make any changes to iClould, from OS X 10.11 (15A178w), the checkboxes uncheck themselves.This is what I get in my error console:6/21/15 10:57:17.890 AM com.apple.preferences.icloud.remoteservice[500]: [AOSAccounts] : ___ZN15ServiceProvider21SetEnabledOnACAccountEbb18MMSetEnableOptions_block_invoke Error updating account: @, error: Error Domain=com.apple.accounts Code=5 A iCloud account already exists. Only a single iCloud account is allowed to be saved. UserInfo=0x7fa9c1540d70 {NSLocalizedDescription=A iCloud account already exists. Only a single iCloud account is allowed to be saved.}I only have one account that I know of.However accountsd states otherwise.6/21/15 10:57:13.053 AM accountsd[330]: [AOSAccounts] : [iCloudIDNotificationPlugin] -[iCloudIDNotificationPlugin canSaveAccount:inStore:] : Returning false. Same DSID found. Found duplicate for account *my email* (*some guid*) which is *my email* (*different guid*)
1
0
1.8k
Jun ’15
Tax ID Already Taken
I just started a new Apple Developer account and while setting up all of the contracts and documents, I couldn't complete adding my Tax ID number to my account. I used to have a developer account under a different Apple ID that I never used. How do I delete that old one entirely and be able to use my Tax ID number with my current account? Thanks for your help!
2
0
2.2k
Jun ’15
Reply to Apple Pay?
iOS 9 has a new app called Wallet for that, but a few people have reported difficulties in adding cards in this first developer preview.To enable Wallet on the lock screen, launch the Settings app and navigate to Touch ID & Passcode. Under the Allow Access When Locked section, toggle on Wallet. This could already be toggled on by default on your device, depending on if you already had Apple Pay set up before installing iOS 9.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to xcode 6.2 -- where is it?
But that is exactly the problem: when I try to go to that site, I get hijacked to My Apple ID login page and, after entering my ID and password, I am on another My Apple ID page, this time with my account information. Now, from that page, how can I get to the downloads page you cited in your response? Pasting the URL into the address from that page just returns me to the same account information page. It appears that there is no escape!
Jun ’15
Reply to (Another) potential Battery Drain issue
That is a permanent continuity feature for a looong time, has nothing to do with personal hotspot, when your iPhone and Mac are using the same iCloud account you can always see it from the wifi menu.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to iOS 9 beta iCloud backup can't be deleted
At least I'm not going mad then - I've literally wasted hours on this issue. Apple should/could give us more control on iCloud storage meaning we could delete these rogue data/files. I'll try deleting files from /Users/<YOUR HOME FOLDER>/Library/Application Support/iCloud/Accounts but wont hold my breath.I'll post back if I have any joy or find a fix.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to iOS 9 beta iCloud backup can't be deleted
Agreed markbrads, I specifically requested this (additional control and visibility into the iCloud data store for our respective iCloud accounts) as a means to facilitate early testing and dev.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Stuck on "You've already agreed to the Apple Developer Agreement"
If I want to create an application or do something like it on the Itunes Connect portal, I am sent to this page:https://developer.apple.com/register/error/You've already agreed to the Apple Developer Agreement.It proposes links to Continue with Member center or Sign Out. Nothing else can be done.Continuing to Member Center doesn't work - it only gives the same page again.Signing out works but the same scenario then applies again.I've tried with other computers and navigators, including a Windows and a Mac. The error is present with all navigators (including Safari).Others have been mentioning this error at other places (stackoverflow etc) but have been booted out since it looks so much like a registration error.The account is clean and with accepted agreements.It looks like an iTunes Connect error.We get more and more of these things and bugs lately.
Replies
19
Boosts
0
Views
8.7k
Activity
Jun ’15
Reply to Stuck on "You've already agreed to the Apple Developer Agreement"
How recently did you update the password on that account?How many accounts are you on?
Replies
Boosts
Views
Activity
Jun ’15
Reply to I have signed up for the iOS9 development program and I still haven't received a email from them
Check your spam or junk mail folder. Also, keep in mind, it can take anywhere from a week toseveral weeks depending on your signup type. Individual accounts usually only take a few business days (mon-fri)....
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Using Keychain Services in Swift 2
Has anyone found the/a recommending way to use Keychain Services since Swift 2. The following code from Stack Overflow is from Swift 1.2 and still seems to work, but it's nothing I'd even come up with without help. let query = [ kSecClass as String: kSecClassGenericPassword as String, kSecAttrService as String: service, kSecAttrAccount as String: account, kSecReturnData as String: true ] var result: NSData? let status = withUnsafeMutablePointer (&result) { SecItemCopyMatching (query, UnsafeMutablePointer ($0)) }I'm wondering if there's now a clearer way.
Replies
7
Boosts
0
Views
8.4k
Activity
Jun ’15
Restriction locks up iPad Air 2
setting or unsetting any item in General/restrictions locks u my ipad in a way I've never seen before - it becomes completgely unresponsive to any user input excpet Power/Home to reboot it (if this is not done it reboots by itself after a few minutes).
Replies
0
Boosts
0
Views
117
Activity
Jun ’15
Reply to Testing with MS Exchange
Same for my corporation Exchange account. The Exchange account even not appears in the Calendar app.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Can't remove iCloud backup after update to iOS 9
1. Can't remove iCloud backup after update to iOS 9 - both from the device and from OS X.2. Every backup decreases free space in the iCloud account. And it can't be cleaned up because the previous backups a re invisible.How can I fix the issues? Who can help with it? I have no space in iCloud and can't use my devices!
Replies
3
Boosts
0
Views
2.5k
Activity
Jun ’15
Only a single iCloud account can be saved
When I try to make any changes to iClould, from OS X 10.11 (15A178w), the checkboxes uncheck themselves.This is what I get in my error console:6/21/15 10:57:17.890 AM com.apple.preferences.icloud.remoteservice[500]: [AOSAccounts] : ___ZN15ServiceProvider21SetEnabledOnACAccountEbb18MMSetEnableOptions_block_invoke Error updating account: @, error: Error Domain=com.apple.accounts Code=5 A iCloud account already exists. Only a single iCloud account is allowed to be saved. UserInfo=0x7fa9c1540d70 {NSLocalizedDescription=A iCloud account already exists. Only a single iCloud account is allowed to be saved.}I only have one account that I know of.However accountsd states otherwise.6/21/15 10:57:13.053 AM accountsd[330]: [AOSAccounts] : [iCloudIDNotificationPlugin] -[iCloudIDNotificationPlugin canSaveAccount:inStore:] : Returning false. Same DSID found. Found duplicate for account *my email* (*some guid*) which is *my email* (*different guid*)
Replies
1
Boosts
0
Views
1.8k
Activity
Jun ’15
Tax ID Already Taken
I just started a new Apple Developer account and while setting up all of the contracts and documents, I couldn't complete adding my Tax ID number to my account. I used to have a developer account under a different Apple ID that I never used. How do I delete that old one entirely and be able to use my Tax ID number with my current account? Thanks for your help!
Replies
2
Boosts
0
Views
2.2k
Activity
Jun ’15
Reply to Apple Pay?
iOS 9 has a new app called Wallet for that, but a few people have reported difficulties in adding cards in this first developer preview.To enable Wallet on the lock screen, launch the Settings app and navigate to Touch ID & Passcode. Under the Allow Access When Locked section, toggle on Wallet. This could already be toggled on by default on your device, depending on if you already had Apple Pay set up before installing iOS 9.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to xcode 6.2 -- where is it?
Go to https://developer.apple.com/downloads/Scroll down the list and you'll find it. You need to be signed into your developer account to go there.
Replies
Boosts
Views
Activity
Jun ’15
Reply to xcode 6.2 -- where is it?
But that is exactly the problem: when I try to go to that site, I get hijacked to My Apple ID login page and, after entering my ID and password, I am on another My Apple ID page, this time with my account information. Now, from that page, how can I get to the downloads page you cited in your response? Pasting the URL into the address from that page just returns me to the same account information page. It appears that there is no escape!
Replies
Boosts
Views
Activity
Jun ’15