Yehuda, Thanks for you replies. I will set the timezone as you suggest. I also disabled mod_autoindex by commenting out the "Options Indexes FollowSymLinks" line in the httpd.conf file. However, it doesn't help the situation. You may be right about the IP4 & IPv6 idea. I have a strange network card that has two ports with cables leading to the motherboard, the likes of which I've never used before. I ran nestat on the two boxes behind my router and got this. On my other box running Fedoa 11, the netstat command says TCP 0 0 :::8080 :::* LISTEN 5418:java On the Fedora 19 box: tcp6 0 0 :::80 :::* LISTEN 11739/httpd Does that tcp6 mean IPv6? I'm not sure. Then I read this on Apache about IPv4 and IPv6: If you want Apache to handle IPv4 connections only, regardless of what your platform and APR will support, specify an IPv4 address on all Listen directives, as in the following examples: Listen 0.0.0.0:80 Listen 192.0.2.1:80 If your platform supports it and you want Apache to handle IPv4 and IPv6 connections on separate sockets (i.e., to disable IPv4-mapped addresses), specify the --disable-v4-mapped configure option. (http://httpd.apache.org/docs/2.2/en/bind.html) SO I tried: #Listen 80 Listen 192.0.2.100:80 But got this error and Apache failed to start. Active: failed (Result: exit-code) since Sun 2013-10-13 22:42:53 KST; 1min 4s ago Process: 12488 ExecStop=/usr/sbin/httpd $OPTIONS -k graceful-stop (code=exited, status=0/SUCCESS) Process: 3893 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS) Process: 12487 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE) Status: "Total requests: 1; Current requests/sec: 0; Current traffic: 0 B/sec" Oct 13 22:42:53 localhost.localdomain httpd[12487]: (99)Cannot assign requested address: AH00072: make_sock: could not bind to address 192.0.2.100:80 I'm not sure how to use that configure option '--disable-v4-mapped'. Where does that go? It seems like a start up script flag, but I use systemctl to start httpd. I couldn't find an example of how to use that. Will that add IPv4 address listening? Timothy Curchod. From: yehuda@xxxxxxxxxx Date: Sun, 13 Oct 2013 09:47:30 -0400 To: users@xxxxxxxxxxxxxxxx Subject: Re: Permission Still Denied with Moodle Now that I am at the computer, a more in-depth reply. On Sun, Oct 13, 2013 at 8:17 AM, Timothy Curchod <timofeyc@xxxxxxxxxxx> wrote:
Because the :80 is redundant according to Chrome because 80 is the "well-known" port for http.
That is because the request is not rejected or accepted, it just times out.
Server generated directory index is talking about mod_autoindex and for a production system, it should be disabled unless you specifically need it. You need to see why the login page is redirecting you to the wrong place. I imagine that after login, you should be redirected to /moodle, not / as the error log indicated is happening.
Also, I recommend you set your timezone in php.ini as mentioned in the error log. It will save you from some odd situations where date functions don't work properly.
The error log does not indicate that this is the case. To the contrary, every entry in the log that references a client says the source is 127.0.0.1 (a.k.a. localhost).
Can you take the linksys out of the picture by accessing 192.168.1.100 from another computer inside your network?
Since this thread has mentioned several different errors (permissions, DirectoryIndex, timeout) which one are you referring to?
As I mentioned, your IPv4 address is not listed here... - Y |