What are common issues faced when trying to configure PHP5 with Apache Server manually?

One common issue faced when trying to configure PHP5 with Apache Server manually is the PHP module not being loaded correctly in the Apache configuration file. To solve this, you can add the following line to your Apache configuration file (httpd.conf or apache2.conf): ``` LoadModule php5_module /path/to/php5_module.so ``` Another common issue is the PHP file not being parsed by Apache, resulting in the PHP code being displayed as plain text in the browser. To fix this, you can add the following lines to your Apache configuration file: ``` AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps ``` Make sure to restart Apache after making these changes for them to take effect.