-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
#1109 breaks route setup/uri parsing #1114
Comments
Hmm - it looks like I missed or mis-specified one of the unit tests in tests/system/HTTP/IncomeRequestDetectingTest, or that we need additional test methods. It looks like I specified SCRIPT_NAME as just /index,php, which is not in the BaseURL you mention above. |
checked your tests and the testPathRequestURISubfolder fails on my machine ( windows ) so start line 689
so its just remove _S[script_name] from URI, but not if the URI doesn't contain the index file name |
still not working - could you explain what your last part is trying to do ? i use without else : $uri = "/WorkDirectory/PHPPlayground/CodeIgniter4/public/Abgelaufen" |
hey, i guess something went wrong with this PR #1109 -> it result in no route will be found
specific: IncommingRequest.php:695-698
im not sure what this change should do (@jim-parry ) but without extracting the URI part the system is unable to find any route -> PageNotFoundException
URI before 695 : /WorkDirectory/PHPPlayground/CodeIgniter4/public/Home
URI after 700 : /WorkDirectory/PHPPlayground/CodeIgniter4/public/Home
excepted : /Home
BaseURL : 192.168.100.111/WorkDirectory/PHPPlayground/CodeIgniter4/public/
$_SERVER[SCRIPT_NAME] : /WorkDirectory/PHPPlayground/CodeIgniter4/public/index.php
The text was updated successfully, but these errors were encountered: