Hello!
I was wondering if ZC users have successfully got this combination working, for selling downloadable WMV files with DRM, and using the Vidlock service for handling of the DRM licenses.
It would entail generating a custom part on the purchase confirmation page after payment is received, where the button to download the DRM license is included, as well as a link to the downloadable file. And the source code and locations these point to must be hidden from the user.
Also the license (and code for the button) is unique for each file, so the PHP code must first look at which file was purchased, then generate code for the license button/file link unique to that file.
I understand HTML fine but I'm not an advanced programmer, so if anyone can be of help with this, I would sincerely appreciate it!
Patrick
ps - here is a sample of the code used to generate the button the user clicks to pre-load the DRM license onto his machine.
<form method="post" action="http://www.vidlock.com/deliver_adv_license.aspx">
<input type="hidden" name="id" value="70xxx">
<input type="hidden" name="num_plays" value="1">
<input type="hidden" name="duration" value="1">
<input type="hidden" name="burn_count" value="3">
<input type="hidden" name="transfer_count" value="2">
<input type="hidden" name="url" value="http://www.server.com/file.wmv">
<input type="hidden" name="key_id" value="zwFyEJrm8ki0xxxxxxxxxx==">
<input type="submit" value="Pre-Deliver License" />
</form>