I've recently installed phpipam 1.1, and most things are working great, except when I want to log in, I need to enter http://hostname/?page=login. If I give any other address, the redirect to the login page doesn't work, and I get an error page served by the web browser ("This page can't be displayed" in Internet Explorer, for example, and chrome just doesn't do anything).
Anonymous
After looking into it, I found the issue in the code.
My setup involved being on a non-standard port. Looking at the page source showed the base address as hostname:8080:8080
I looked up the code, and on line 105 in functions-common.php, I saw that it was appending the port to http_host. http_host already contains whatever port the user has entered, so I stopped the port being appended, and now I can log on fine.
Hi Simon, I believe this was fixed in 1.2.