Hi Jumbotroll,
Did you revert your changes? I have been performing some additional debugging and it seems the curl command that Synology Support provided was not a good test.
In the curl command the + character was not url encoded, so it became a space in the POST message hence the failure with the curl test. While debugging with my own sspks, I found that my original suggested change should resolve the issue after all. With a better curl test and with my actual Synology Package Center I can add my own location with the preg_quote change...
A better curl test command would be:
Code: Select all
curl -L -A "synology_x86_411+II DSM6.1-14902 (package)" --data "package_update_channel=stable&unique=synology_x86_411%2BII&build=14903&language=enu&major=6&arch=x86&minor=1&timezone=Amsterdam" "http://www.jadahl.com/domoticz_stable_6/"
As you can see I replaced the + in the "unique" parameter with %2B.
Thanks,
Jorik