Hi,
I have Linux Mint Mate Sylvia 64bit installed on a Asus Essentio Series Desk top.
I am attempting to install Wordpress under LAMP (Linux, Appache2, Mysql, Php)
I seam to have come to a grinding halt as from what I understand having read a guide in setting this up wp-site.confg is required, snag is I have tried creating this file based on what was given in the guide and found that I am unable to edit the file or paste a copy of the example into it without the first 5 letters getting cut off VirtualHost and thus it is not as below.
Is there some other way to get around this issue.
The guide states the following;
Create a new Apache configuration named wp-site.conf
sudo vi /etc/apache2/sites-available/wp-site.conf
<VirtualHost *:80>
ServerAdmin
DocumentRoot /var/www/html/wordpress/
ServerName Localhost
ServerAlias
<Directory /var/www/html/wordpress/>
Options +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
Errorlog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
I would like to be able to get this up and running so I can see if an existing website of mine will convert over or not.