Quote:
Originally Posted by beishe8
Sad... I cannot upload .htaccess (The dot is the problem with my host)
|
It shouldn't be too much of an issue, don't worry about uploading it, create an empty index.html file and upload that, then change the code in show.php:
Change:
PHP Code:
&& $entry != '.htaccess'
To:
PHP Code:
&& $entry != 'index.html'
You will also need to edit the plugin - don't worry it's quite easy:
AdminCP -> Plugins & Products -> Plugin Manager -> Extra user verification
Click edit and find:
PHP Code:
&& $entry != '.htaccess'
and change to:
PHP Code:
&& $entry != 'index.html'
Click save then check that the verification still works - this should not affect how the product works.
Then you should be good to go - all this does is stop the directory from being listed.
Jason