API List ID Not Showing
I see that I need a hashed list ID to reference a list in the API, but when going to "View All Lists", I don't see a hashed ID in the ID column--it's only showing my lists in sequence (1,2,3...and now that I'm past 9, it shows alphabetically (a, b, c). What do I need to do/fix to get the hashed ID showing there?
Thanks.
BTW--I'm upgraded to the latest version of Sendy. Best I can tell, that column has never shown the hashed ID on any previous versions.
This discussion has been closed.
Comments
Hi Eric,
This is normal behavior as your PHP version is 5.2.17.
PHP versions lower than 5.3 will not be able to use the new
openssl_encrypt
andopenssl_decrypt
methods introduced in Sendy version 1.1.5 and up. Sendy will fallback to useintval
andbase_convert
instead to wrap IDs instead if you're on PHP version lower than 5.3.Upgrade (or request your host to upgrade) to PHP 5.3 or above in order to have your list IDs hashed and salted with
openssl_encrypt
andopenssl_decrypt
.Thanks.
Ben