Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
zip2mail
zip2mail
0
Comments
Posted: Sunday, 27 May 2007 at 7:38PM
IndexIgnore *
The * is a wildcard that matches all files, so if you stick that line into an htaccess file in your directory, nothing in that directory will be allowed to be listed.
If, say, you did want HTML pages listed but not images...
IndexIgnore *.gif *.jpg
That should do the trick.
Oh and I would also put an index.html file in the with a redirect to somewhere else.
Posted: Monday, 28 May 2007 at 8:25AM
1. You can increase the memory allowed per process by editing this line in your php.ini file and restarting Apache:
memory_limit = 16M (add the line if it is missing)
2. If you do not have access to php.ini but your webspace is able to handle ".htaccess" files then you should be able to set it by adding the following line to .htaccess file.
php_value memory_limit 16M
3. One alternative is to contact your service provider and ask them to change that setting. Maybe they are kind enough to help.
(A quick Google came up with that.)
Nice work!
Thank you.
Edit: This problem only seems to be when I test locally. It works fine on my live site.
Fatal error: Call to undefined function: getdynamicradio() in myVanillaInstall\extensions\zip2mail\default.php on line 284
Ideas on solving this would be appreciated. Cheers!
If you want to eliminate the error now before I really fix it, look in the default.php for this IF statement and add the include line of code:
if( $Context->SelfUrl == 'settings.php' && $Context->Session->User->Permission('PERMISSION_CHANGE_APPLICATION_SETTINGS') ) { // if Statistics add-on is not enabled, then -- include("Framework.Functions.php"); --- same one copied from Statistics include("Framework.Functions.php");
Please do not add this line of code if you have the Statistics add-on installed as you will get another error.