Posts

Showing posts with the label Server

Apache Error "Could Not Reliably Determine The Server's Fully Qualified Domain Name"

Answer : 6# 13.04 and older This is just a friendly warning and not really a problem (as in that something does not work). If you go to: /etc/apache2/apache2.conf and insert: ServerName localhost and then restart apache by typing into the terminal: sudo systemctl reload apache2 the notice will disappear. If you have a name inside /etc/hostname you can also use that name instead of localhost . And it uses 127.0.1.1 if it is inside your /etc/hosts : 127.0.0.1 localhost 127.0.1.1 myhostname Preferred method Troubleshooting Apache If you get this error: apache2: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName then use a text editor such as "sudo nano" at the command line or "gksudo gedit" on the desktop to create a new file, sudo nano /etc/apache2/conf.d/fqdn or gksu "gedit /etc/apache2/conf.d/fqdn" then add ServerName localhost to the file and save. Thi...

Apache2: 'AH01630: Client Denied By Server Configuration'

Image
Answer : If you are using Apache 2.4 You have to check allow and deny rules Check out http://httpd.apache.org/docs/2.4/upgrading.html#access In 2.2, access control based on client hostname, IP address, and other characteristics of client requests was done using the directives Order, Allow, Deny, and Satisfy. In 2.4, such access control is done in the same way as other authorization checks, using the new module mod_authz_host. The new directive is Require: 2.2 configuration: Order allow,deny Allow from all 2.4 configuration: Require all granted Also don't forget to restart the apache server after these changes ( # service httpd restart ) For all directories write Require all granted instead of Allow from all Update If the above doesn't work then also remove this below mentioned line: Order allow,deny Double check that the DocumentRoot path is correct. That can cause this error.

Apache Is Not Running From XAMPP Control Panel ( Error: Apache Shutdown Unexpectedly. This May Be Due To A Blocked Port)

Answer : There are many possible answers for this problem. The most common and most likely is that you're running another program which is blocking port 80 or 443. If you've installed Skype, then you've found your problem! Change apache's port settings to 81 and apache will work. There's a good tutorial on that To check this you can open up your command line by clicking the start menu, and typing 'cmd', and enter the command netstat -nab this wil return a list of programs that will vaguely resemble this pattern [someprogram.exe] UDP [fe80::numbers:numbers:numbers:numbers%numbers]:portnumber You need to find a line (or lines) ending in :80 and terminate them in order to start apache. If there is no line ending in :80, there are more things you can do. First, navigate to xampp's directory (default is c:\xampp) and double click apache_start.bat. This will open up a comand line and return more detailed errors about why apache can...

Can't Mount NTFS Drive - "NTFS Signature Is Missing."

Answer : You are trying to mount whole Hard Disk drive instead of Partition on it. Try mounting /dev/sdc1 instead of /dev/sdc .