Hello:
I inherited a codeigniter app, that was created for our production and development environments, long story short, the user is able to auto create their own url, so for example if the company is “companyx” they enter in ‘companyx’ and click save, then they can go to the url “company.myproject.com” or if the company’s name is gaming, the enter it into the system, save it and the url is now “gaming.myproject.com”. That works perfectly. All clients are using the same framework.
The problem started last week, there is an archive page that won’t open for a particular client. Tried the sites for the other 20 clients and the archive link works, opens all the projects that they have marked as archived.
So with this one client that’s having the issue- We “assume” there is some odd data in their request db table that is preventing this page from opening. [it is a completely blank page, no code when you do view source.] A query runs at the beginning of the controller to determine what projects are in archive status.
For various reasons that i wont’ go into, I can’t debug directly on the stg server, so I download everything, code, db, all of it, and set it up on my local machine, the thing is, I can’t figure out what the url would be for my local machine. I have to put that url into the debugger to kick it off.
For my other codeigniter projects, the url is http://localhost/newCI for example
If i want to open gaming.myproject.com from my local machine, how do i do it? Or is there a way to go automatically go thru the mysql database to and verify that all all the field values are legit for this client?
Help please!! aNd THank you!!