@Gerome I didn't see your post, sorry. Thank you, what are the next updates you want to see in this tool ?
@AngelRO Yeah, check the DATA.INI name and the GRF name, it's maybe case sensitive. If you don't see, PM me and we will do some tests to figure out what's your problem.
@BBaking I never use nginx to do rewrite url, but by checking google it should be something like this:
server
{
# basic configs before...
# unless the request is for a valid file, send to bootstrap
if (!-e $request_filename)
{
rewrite ^(.*)$ /index.php/$1 last;
}
# Avoid user to read .htaccess/.htpasswd files
location ~ /\.ht
{
deny all;
}
}
But I have no idea if it will work. @All I'm planning to do a debug mode (or an installation mode) to help configuring it. If you have some idea for this tool, don't hesitate and share it.