I had moved my Perl catalyst framework project files from my old server to a new one.
I have moved each and every file but when I take the url its showing up 404 error.
Is there anything else I need to do when the files are moved?
Please let me know as its the 1st time I am doing it.
Thanks
Jitesh
You need to update the web server, if there is one. Your application was either running as a standalone app with its own PSGI server, or with another PSGI server like Starman, or through an FCGI handler with a web server like Apache, or as CGI. In all cases, you need to move that piece of infrastructure to the new physical server computer.
See Catalyst::Manual::Deployment for infos.
I also suggest to look for documentation of your project that any predecessors might have written, or ask your local sysadmin.