Posts mit dem Label dev werden angezeigt. Alle Posts anzeigen
Posts mit dem Label dev werden angezeigt. Alle Posts anzeigen

Samstag, 3. März 2018

XAMPP keeps showing Dashboard/Welcome Page / XAMPP zeigt Dashboard/Welcome Seite

After installing new xampp version it shows welcome page instead of local dev pages...


i forgot to put the VirtualHosts into the http-vhosts.conf file:

<VirtualHost *:80>
DocumentRoot "C:/workspace/xampp/htdocs/nnssf/public"
ServerName nnssf.local
</VirtualHost>

Montag, 5. Februar 2018

Laravel SQLSTATE[HY000] [1045] Access denied for user @ ip

i had this problem on my providers web server:
SQLSTATE[HY000] [1045] Access denied for user @ ip

i double checked .env and did php artisan conifg:cache , nothing helped

Solution: changed the password for the online db to something simpler . changed it in .env file too and cleared the cache again. suddenly no more problems.

it seems that some passwords dont work?!?

Freitag, 15. Dezember 2017

Certificate problems after updating chrome

after updating chrome i got NET::ERR_CERT_COMMON_NAME_INVALID on my dev pages

pages always got redirected to https

solution:


   changing .dev to .local in hosts file and httpd.vhosts.conf file (restarting apache)



 explanation here:

  https://ma.ttias.be/chrome-force-dev-domains-https-via-preloaded-hsts/