OTA Ad Hoc Distribution fails without any response

341 Views Asked by At

I created an install page for beta testers. This link to the manifest.plist is valid and is via HTTPS.

However when I click the link nothing happens. No alert or no errors or messages appear in the device logs.

Does anybody know this issue?

EDIT I Everything is setup correctly and should work. All URLs are correct and accessible and the server has a trusted, valid certificate bought from Thawte. I think the server is set up correctly, another project installs correctly from the same server.

2

There are 2 best solutions below

1
On BEST ANSWER

I just found the issue. The IPA file name contained a space. As I removed the space it immediately worked like charm!

2
On

It might help to see the associated plist contents, HTML source...etc but I'll list a few common situations you might want to review:

  1. Make sure your HTML source has the correct URL. Here is an example of what it should look like: itms-services://?action=download-manifest&url=[URL of PLIST]
  2. Make sure your mime-types are setup correctly. For example, if you are using Apache Httpd check to make sure this is in your httpd.conf file: AddType application/octet-stream .ipa
  3. Check the URLs in the plist and make sure they are accessible.
  4. Make sure your server CA Authority cert is installed on the devices. You can email it to the device (PEM file), and press on the attachment.

Also, I would check the server logs and see if the IPA is even being retrieved.