We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(this text is automatically translated from Spanish to English.)
Hello, I would like to ask about this error that Phalcon devtools shows when generating a controller, model or scaffold:
my configurations are as follows (config,php)
The text was updated successfully, but these errors were encountered:
location /webtools { try_files $uri $uri/ /webtools.php?_url=$uri&$args; }
location is a path where your webtools.php is located + filename without .php
location
webtools.php
.php
For example vhost's root path is /app/public, and webtools located
/app/public
Sorry, something went wrong.
Fixed handle error in ISSUE-1500: Fix not found error on webtools #1501 For better workflow i recommend to add into your nginx vhost config location /webtools { try_files $uri $uri/ /webtools.php?_url=$uri&$args; } location is a path where your webtools.php is located + filename without .php For example vhost's root path is /app/public, and webtools located at /app/public/webtools.php: localtion will be /webtools at /app/public/webtools/webtools.php: location will be /webtools/webtools
thanks for your answer, I am not very clear where I should add those lines of code from the location /webtools, can you please tell me? thanks a lot.
While you have Nginx or Apache webserver, you can add this directive into your website configuration under that webserver.
Thank you!
BeMySlaveDarlin
Successfully merging a pull request may close this issue.
(this text is automatically translated from Spanish to English.)
Hello, I would like to ask about this error that Phalcon devtools shows when generating a controller, model or scaffold:
my configurations are as follows (config,php)
Details
The text was updated successfully, but these errors were encountered: