I don't have access to the apache configuration as I'm running this manager on a hosting service. In my hosting service the WITH_AUTH option would not work out of the box… probably because it is runing as cgi-fcgi.
Here is what I did:
Create an .htaccess file at the root directory of your sqlitemanager with the following contents:
<IfModulemod_rewrite.c>
RewriteEngine on
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
</IfModule>
At the bottom of the file SQLiteAuth.class.php located inside the include directory add:
I don't have access to the apache configuration as I'm running this manager on a hosting service. In my hosting service the WITH_AUTH option would not work out of the box… probably because it is runing as cgi-fcgi.
Here is what I did:
Create an .htaccess file at the root directory of your sqlitemanager with the following contents:
At the bottom of the file SQLiteAuth.class.php located inside the include directory add:
When I mean at the end of the file I mean just before the closing "?>" but outside of the class.