PDA

View Full Version : PHPMyAdmin .... Remoto


operatore911
07-03-2018, 17:13
OK provo a chiedere aiuto.

Ho letto vari articoli ma nessuno è riusciuto a illuminarmi e a "collegarmi" su PHPMyAdmin da remoto. Caso semplice ho tutto pronto e funzionante sul Server(ino) ma se da remoto voglio collegarmi a PHP errore e/o non raggiungibile. Errore 403 (Xampp nuovo concetto di sicurezza). Gia l'errore mi dice di "modificare" il file "httpd-xampp.conf" solo che nonostante le FAQ di PHP poi non va ..

Xampp funziona anche da remoto e addirittura con VNC gestisco il Server tranquillamente.

Idee o suggerimenti?

!fazz
08-03-2018, 09:20
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8

<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
#ADD following line:
Require all granted
Require ip 127.0.0.1
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
#CHANGE following 2 lines:
Order Allow,Deny
Allow from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>

https://stackoverflow.com/questions/23704674/phpmyadmin-allow-remote-users

operatore911
08-03-2018, 11:08
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8

<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
#ADD following line:
Require all granted
Require ip 127.0.0.1
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
#CHANGE following 2 lines:
Order Allow,Deny
Allow from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>

https://stackoverflow.com/questions/23704674/phpmyadmin-allow-remote-users


Grazie ... provo