/* if ($port > 0) { $this->url = $protocol.'://'.$host.':'.$port.$urlpath; } else {*/ $this->url = $protocol.'://'.$host.$urlpath; /*}*/
Hi everyone, I just started testing out the new Elxis and I found a very rare situation, the installer wouldn't show any CSS or JS file.... so going to the source of the file I saw that the port of my localhost was being duplicated. It showed as http://localhost:8888:8888/includes/.......etcSo, what I did is go to the install.class.php file and comment out the following code in line 583:Code: [Select]/*but i'm getting this return[quote]"http://localhost/elxis_4.0_nautilus/ 'can not be opened because there are too many redirects occurred. This problem can occur if you open a page that contains a redirect to another page that points back to the original page.[/quote] if ($port > 0) { $this->url = $protocol.'://'.$host.':'.$port.$urlpath; } else {*/ $this->url = $protocol.'://'.$host.$urlpath; /*}*/I'm using MAMP on a mac and all the files are located on the htdocs folder which acts as a root for the local server, now MAMP uses a port, I don't know why exactly but here you have a solution in case somebody steps into the same problem. I will continue with the installation, if I find something else I'll let you know, I hope this is not something I'll have to deal with after the installation, if so.... please let me know before I get my head all wrapped around it..thanks a lot
/*but i'm getting this return[quote]"http://localhost/elxis_4.0_nautilus/ 'can not be opened because there are too many redirects occurred. This problem can occur if you open a page that contains a redirect to another page that points back to the original page.[/quote] if ($port > 0) { $this->url = $protocol.'://'.$host.':'.$port.$urlpath; } else {*/ $this->url = $protocol.'://'.$host.$urlpath; /*}*/
"http://localhost/elxis_4.0_nautilus/ 'can not be opened because there are too many redirects occurred. This problem can occur if you open a page that contains a redirect to another page that points back to the original page.