hello
now, if we know the path to the files, it is entirely possible to view pictures, even if the gallery is private and is protected by a password.
it's right ?
to fix this problem, it is possible to put a php file with the following code in all directories and subdirectories under Albums:
`<?php
// Recursive call
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>
`
Is it possible to create a plugin that automatically write this file in all directories found on the site?
I do not have the skills to do this in php.