Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't upload App - 'An error occurred uploading to the itunes store'

I'm trying to upload my app to the store. This isn't the first time so I'm familiar with the process.

I've tried both through the Organizer (preferred method) and the Application Loader, but both offer vague error messages.

I've recently updated to Xcode 4 in an attempt to fix it. My archived project validates fine and everything, but shortly after hitting submit, I get an error saying:

An error occurred uploading to the itunes store

But no other info. So I really don't know what could be wrong. I've appealed to Apple but nothing yet.

What could be wrong?

EDIT:

I should probably mention that my project has 2 targets, but I have provisioning profiles for both, both for development and distribution, so can't see why this would be a problem. It's the only unusual thing about the project as far as I can tell. Still no word from Apple either...

Thanks!

Michael

like image 587
Smikey Avatar asked Mar 13 '11 17:03

Smikey


People also ask

Why can't I upload apps on my iPhone?

Check your payment method See what payment method you have on file and make sure that it isn't expired, declined, or failed. If you can't update apps and you see a message that says “your account is disabled in the App Store,” there might be a problem with your payment method. Contact Apple Support for assistance.

Why won't my iPhone let me download apps because of iTunes?

An iPhone that can't download apps may signify that something is wrong with your Apple ID. If the connection between your iPhone and the Apple App Store is disrupted, signing out and signing back in may fix it. Go to Settings, tap your name at the top, and choose Sign Out at the bottom.

Why can't I update apps on my iPhone because of iTunes?

iPhone won't be able to Update Apps, if there is restriction placed on Installation of Apps on your device. Go to Settings > Screen Time > Content & Privacy Restrictions > iTunes & App Store Purchases > Installing Apps and select the Allow option. After this, see if you are able to Update Apps on your device.

How do I fix the App Store error pop up on my iPhone?

If a payment method can't be charged If your card was declined, add a new payment method or update your payment information. You can add multiple payment methods to your Apple ID. Your payment method will be charged for the unpaid balance. Then you can make other purchases and update your apps, including free apps.


1 Answers

For those of you that are having this issue with Xcode 4.3.2 and Java SE 6 1.6, try this:

cd /System/Library/Frameworks/JavaVM.framework/Versions
sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5
sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0

It worked for me.

like image 99
Demmostenes Avatar answered Oct 16 '22 05:10

Demmostenes