issue with transient name?
-
Hi Pippin,
first thanks for this plugin which is very helpful for me!
I used it on my Maps Marker Pro dev site and guess I found an issue: within my pro plugin I use the following code to set a transient:
$transient_proxy = get_transient( 'leafletmapsmarkerpro_transient_proxy' ); if ( $transient_proxy === FALSE ) { $rand_number = substr(md5('123'.rand()), 0, 8); set_transient( 'leafletmapsmarkerpro_transient_proxy', $rand_number, 60*10 ); $transient_proxy = get_transient( 'leafletmapsmarkerpro_transient_proxy' ); }On the transients overview page of your plugin, this transient gets listet as leafletmapsmarkerproproxy – see screenshot at http://postimg.org/image/a7y2ikeq5/
As a result, this transient cannot get deleted.The expire time also does not seem to be correct. It should be 10minutes and not 1 (I deleted the transient manually via phpmyadmin and recreated it – still showed “expire in 1 minute”).
best,
Robert
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘issue with transient name?’ is closed to new replies.