Elxis CMS Forum
Support => General => Topic started by: epaz on January 03, 2008, 14:49:55
-
I have installed xampp portable in my usb and i have configured apache to listen on port 8080 (since internet explorer is already running on 80). The elxis installation is successful but when I execute the url http://localhost:8080/elxis (in mozilla or ie) the resulting page is in plain html (the appropriate css is not applied).
Taking a look at the page's source code I have noticed the following:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
.......
<link href="http://localhost/elxis/templates/gaia/css/template_css.css" rel="stylesheet" type="text/css"/>
</head>
You can see that the post information is missing.
Any ideas?
-
edit your configuration.php and set localhost to localhost:8080
-
I have changed the variable $mosConfig_host to point to 'localhost:8080' but from that moment the site (http://localhost:8080/elxis/) has stopped responding. I have restarted apache (though I believe it wasn't necessary) but nothing happens.
After quite a while I got the following error:
Fatal error: Maximum execution time of 60 seconds exceeded in G:\xampp\htdocs\elxis\includes\Core\database.php on line 69
-
change $mosConfig_live_site too ;) if not worked change back $mosConfig_host to simple localhost
-
the last one is the correct option, so:
$mosConfig_host = 'localhost';
$mosConfig_live_site = 'http://localhost:8080/elxis';
thanx
-
good luck ;)