Search results for

Account Locked

31,785 results found

Post

Replies

Boosts

Views

Activity

Xcode Crashing when fetching profiles from member center
XCode crashes when I fetch the provisioning profiles and continues to crash when opening any project (because it is going and checking the provisioning profiles).This first occurred when adding provisioning profiles and linking my account (in Xcode) to the developer portal.I opened issue 21220696 in the apple bug reporter but have not recieved an response.I can reproduce this issue every time.Here is the video of it happening. https://www.youtube.com/watch?v=TEaN6UnO59wThis is occuring on Xcode Version 6.3.2 (6D2105) & 10.10.3 (14D136)Here is the crash debug: https://gist.github.com/cdesch/86058dd98f22774d36bb
4
0
687
Jun ’15
Reply to **Organizing an entire list of Unstable Apps**
I agree.A beta is a beta. It is not a cause to slam apps that don't work under the beta. If this is NOT against the TOS then it should be! If you are running this on anything other than a dev iPhone it is a bad idea..If you ARE running it on a dev iPhone then there is absolutely NO reason for this list.Reporting this Apple to see if they will lock and/or remove this thread.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to iOS 9
I'm seeing the same problem as birishd I've tried downloading from several computers with my account.But it downloaded fine with our company account. I have an old-time single developer license.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Mail.app keeps crashing
same problem here - crash log very similar - removed all my exchange accounts - rebooted - and now mail starts up - added 1 exchange account back in, but it still not working normally - will not fetch any messages off server except new mail.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Mail and multiple exchange accounts
Scott - same problem here - but even just adding 1 exchange account did not fetch messages on server - but it did show new messages arriving - I tried MS Outlook and all the accounts stayed in place and it loaded with-out issue but would only fetch messages 1 time and that was it.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Mail and multiple exchange accounts
additional observation - when on batter in the lower left it shows mailbox activity - well while on battery it shows steps 1-2 waiting for AC power... but I can not seem to find any settings to change this. (still working with just 1 exchange account)... will not sync even when manually syncing...
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
How does Handoff work now?
I get the icon on my lock screen, and if I swipe up and unlock I get the webpage from my Mac, but it used to be on the left of the task list as well. With the new task list scrolling from the left, the app from the other device is no longer available there - or am I missing something? iPhone 6+
1
0
211
Jun ’15
Email Aliases
I've added aliases to my accounts.plist file which worked fine in Yosemite but they don't work in El Capitan.I see that the plist file is now under ~/Library/Mail/V3/MailData/Accounts.plist and the same entries are there that were working on Yosemite, but they are just ignored.I can add email address seperated by commas in the account setup, but that doesn't allow me to change the send from name.Any ideas?Mark
7
0
2.5k
Jun ’15
Reply to Asynchronous Design Patterns with Blocks GCD
Sorry I can't point you to any sample code off the top of my head, but this sounds like a perfect application of NSOperationQueue and operation dependencies. You could add an operation for each download. You can set the max concurrent operations to limit the number of concurrent requests but still have parallelism. You could add your processing operation with an operation dependency on each of the download operations so it wouldn't start until all the downloads were completed.Posting sample code to show multi threading synchronization is fraught with peril anyway since every situation is different. But in general, if you are accessing a common data structure from multiple threads, you add a synchronization primitive around each and every access to that data structure (read or write), and try and ensure that you don't deadlock. Don't hold the lock while you're doing a long network operation, for example - do the network operation, then lock / update / unlock. I use Obj-C so I've been doing it
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can you upgrade from a 10.10.4 beta?
You can. I did and the update process did work fine for me after the invitation code being unlocked for the German AppStore.But I found, 10.11 has way more bugs than 10.10.4 beta, so, for example, for me, Photos is not launching anymore and I got a problem with iCloud mail in Mail while all other accounts I got in there continue to work fine.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Dev Account & Dev Support Problems?
I'm unable to log into my dev account, and I get an error message saying There may be a problem with your account. Please contact us.... But it seems all dev support links to contact Apple (such as Request assistance with sign in issues) aren't working... Is anyone else having this problem too?
2
0
335
Jun ’15
Filesystem Lab notes
Question: On Yosemite, there is an issue where FileVault 2 will report Encrypted Paused during the encryption process, then never resume. It won't decrypt, and the only fix seemed to be deleting the CoreStorage volume.Is there a fix for this besides deleting the CoreStorage volume? For example, how to unpause and either resume encryption or decrypt?Answer:The Encryption Paused issue was addressed in 10.10.3. The root cause was a problem with resizing the CoreStorage volume. When the CoreStorage volume was unable to grow, the encryption was paused and could not resume until the resize issue was addressed.To fix this issue:1. Update your Mac to 10.10.3, or boot from an alternate drive which is running 10.10.3.2. Un-lock the encrypted drive if necessary3. Open Terminal4. Run the following command to get your Mac's disk identifier:diskutil list5. Once you have the disk identifier information, run the following command:sudo fsck_cs -y disk_identifier_goes_here6. fsck_cs should repair the CoreStorage volum
6
0
2.1k
Jun ’15