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
namespace error in centos7
environment: centos7 + php7
in windows is ok, but in centos7 is wrong
code is
<?php namespace App\Controllers\category; class Product extends Controller { public function index() { echo 'test'; } }
url is
http://www.xxxx.com/category/product
file path is
/ci4/application/Controllers/category/Product.php
result is
404 - File Not Found HTTP.pageNotFound
@lonnieezell
The text was updated successfully, but these errors were encountered:
Create the file: application/Controllers/Category/Product.php
<?php namespace App\Controllers\Category; use CodeIgniter\Controller; class Product extends Controller { public function index() { echo 'test'; } }
Go: http://www.xxxx.com/category/product
Please ask for support in the forum.
Sorry, something went wrong.
@natanfelles it's ok, thank you!
No branches or pull requests
namespace error in centos7
environment: centos7 + php7
in windows is ok, but in centos7 is wrong
code is
url is
file path is
result is
@lonnieezell
The text was updated successfully, but these errors were encountered: