Hello, I have just installed moodle in a subdirectory (/moodle) of the principal domain. It is "working", but without any css at all. I have also installed wordpress (that's what's running the top-level website), and was thinking I could just put moodle in the subdirectory.
My config.php has:
$CFG->wwwroot = 'http://www.austin-ecoschool.org/moodle';
When I tried removing the "www", it didn't even show the html.
My version of moodle is whatever:
git clone -b MOODLE_23_STABLE git://git.moodle.org/moodle.git
...would give, I'm guessing 2.3.something? In its current css-less state I can't see where the version is, but I pulled it from git just today so it should be pretty current.
My server has nginx instead of apache. The relevant part of my "sites-available" vhost is:
server {
listen 80;
server_name www.austin-ecoschool.org austin-ecoschool.org;
root /var/www/www.austin-ecoschool.org/web;
if ($http_host != "www.austin-ecoschool.org") {
rewrite ^ http://www.austin-ecoschool.org$request_uri permanent;
}
If anybody out there has an idea on what I should try next, it would be greatly appreciated!
p.s. Ubuntu version is 11.10.