If you want to host your own site to upload your TW5 you'll need to copy Bidix' store.php to your host.
Bidix store.php (v1.6.1 and older) will give an error because of the stricter rules for using php from other sites.
Without modifying store.php you'll get the following error message by some browsers (e.g. opera)
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
If you want to use the store.php, you need to insert the following header command somewhere at the beginning of the file to allow access to the php file from any * site.
------
<?php
header('Access-Control-Allow-Origin: *'); // insert this line as second line in the store.php file
/ * * *
----
Replace the * by a specific url if you only want to allow upload from only one site.
Best Regards
WiM