Hello,
I'm trying to change all upload image files names for the random names.
So I put in Pageimage.php this lines:
$rand = substr(md5(microtime()),rand(0,26),5);
$basename = basename($rand, "." . $this->ext()); // i.e. myfile
But as a results I got a lot of random filenames during each page loading.
Please advise what do I miss?
Thanks,
AP