Skip to content
Nazim Boudeffa edited this page Nov 8, 2019 · 7 revisions

I use XAMPP to develop Hashtag and YouPHPTube btw, so to make sure that things are working with PHP short tags, go to php.ini and make that option On

Then I had to change the virtualhost entry to point to my GitHub folder and the restarted project with Require all granted instead og all allowed

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "C:\Users\admin\Documents\GitHub\hashtag"
    ServerName hashtag
    <Directory "C:\Users\admin\Documents\GitHub\hashtag">
      AllowOverride all
      Require all granted
    </Directory>
    ##ErrorLog "logs/dummy-host2.example.com-error.log"
    ##CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
Clone this wiki locally