![]() |
help! Internal Server Error on initial install of CI4! - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: help! Internal Server Error on initial install of CI4! (/showthread.php?tid=77783) |
help! Internal Server Error on initial install of CI4! - zoldos - 10-18-2020 I uploaded everything from the downloaded Ci4 archive, being sure that "public" is my root. But when I tried to load the home page, I get this: Code: Internal Server Error Shouldn't it being something asking about setting up or whatnot? Here's my associated error log: Code: [Mon Oct 19 00:56:05.001007 2020] [ssl:warn] [pid 21369] AH01909: theluridmacabre.com:443:0 server certificate does NOT include an ID which matches the server name Help! RE: help! Internal Server Error on initial install of CI4! - mssadewa - 10-19-2020 what it's in your .htaccess file? RE: help! Internal Server Error on initial install of CI4! - InsiteFX - 10-19-2020 1)Well it's telling where the error is SSL did you create an SSL certificate on your localhost? If so you need to get a new one for your live server. 2 ) remove the Options Allow in the .htaccess file. RE: help! Internal Server Error on initial install of CI4! - zoldos - 10-19-2020 (10-19-2020, 05:49 AM)InsiteFX Wrote: 2 ) remove the Options Allow in the .htaccess file. Did that, same error. Then removed "Options +FollowSymlinks" and it worked. ![]() RE: help! Internal Server Error on initial install of CI4! - yunat - 02-09-2022 For me the issue I was facing is with routes Instead of using Database::connect(); I was using config("database")->connect(); to fetch db routes. How I knew about this is making sure env is in production then using composer (Make sure you are on live server not localhost) Navigate to directory the run this php spark serve you will get detailed error |