Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - persiusone

1
Suggestions / Re: Import / Export on Projects and components.
@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.
3
General Discussion / Re: rewrite rules for nginx deployment
That was the original code from the rewrite converter tool I used - I tried that, got the same results...

Does anyone have a working phprad deployment on an Nginx server?

I may have to find an alternate development platform if it has specific dependencies on external software like apache.
4
General Discussion / rewrite rules for nginx deployment
Greetings,

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;
  }
}

Thank you!