Pugna Posted December 5, 2011 Report Posted December 5, 2011 (edited) Un mic trick in .htaccess ca sa dezactivati logging-ul pentru un anume fisier pe care-l accesati (ex: shell php). SetEnvIf Request_URI "^/dir/file\.php$" dontlog<Limit GET POST HEAD>order deny,allowdeny from allallow from 127.0.0.1 (or the remote ip of the server).</Limit>first rule disabbles access logs for the file. Second only allows a request by the server itself. Edited December 5, 2011 by Pugna Quote