Hi BIll!
I was trying to use Appunto: after copying files, load the sql tables and enabling hooks, I can't reach the admin.
I removed the index.php in the url of my application with a .htaccess file like this
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
</IfModule>
As you suggest in the installation guide (and if I'm not misunderstanding) I added this condition
Code:
#RewriteCond $1 !^(index\.php|images|robots\.txt|resources)
and this rule. I'm using XAMPP all the files are in htdocs/MAGAZZINO_CI_3/
Code:
RewriteRule ^(.*)$ /MAGAZZINO_CI_3/index.php/$1 [L]
when I try to get this URL with hooks ENABLED I get this: "You have requested an invalid path."
if I DISABLE hook I get a blank page
Thanks for you wonderful Library and for your support