@robertr sorry for the inconvenience, but there is currently no chance of that.
This makes PHPRad completely useless, wasting an enormous amount of time to rebuild projects every time there is a software update. Backwards compatibility is essential for any computing resource, otherwise, the software (PHPRad) costs too much in time to make it useful as a development tool.
Sounds like I will be looking for an alternate solution.
I am curious if anyone has used phprad with Nginx and how they configured the rewrite rules to adjust for the .htaccess file?
I am getting a 405 when trying to POST login information after publishing the site to a nginx server.
Here are the htaccess rewrites: RewriteEngine on Options -Indexes RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?request_uri=$1 [NC,L,QSA,B]
Since they are not observed by nginx, here are the rewrites I am trying in the nginx config: location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?request_uri=$1 break; } }