Hi,
nach dem UpDate kann ich vom Notebook nicht mehr auf die Phpmyadmin / SQL-Datenbank auf dem PC zugreifen.
Ich habe versucht das über Rechte - Freigabe und dann unter Host der IP vom Notebook - aufzuheben.
Doch das hat leider nichts gebracht.
die Fehlerseite gibt an das ich das über die Datei httpd-xampp.conf ändern kann. Doch habe ich da bis jetzt keinen Erfolg gehabt.
[code]#
XAMPP settings
SetEnv MIBDIRS "C:/xampp/php/extras/mibs" SetEnv MYSQL_HOME "\\xampp\\mysql\\bin" SetEnv OPENSSL_CONF "C:/xampp/apache/bin/openssl.cnf" SetEnv PHP_PEAR_SYSCONF_DIR "\\xampp\\php" SetEnv PHPRC "\\xampp\\php" SetEnv TMP "\\xampp\\tmp"
PHP-Module setup
LoadFile „C:/xampp/php/php5ts.dll“
LoadModule php5_module „C:/xampp/php/php5apache2_2.dll“
<FilesMatch „.php$“>
SetHandler application/x-httpd-php
<FilesMatch „.phps$“>
SetHandler application/x-httpd-php-source
PHP-CGI setup
#<FilesMatch „.php$“>
SetHandler application/x-httpd-php-cgi
#
#
Action application/x-httpd-php-cgi „/php-cgi/php-cgi.exe“
#
PHPINIDir "C:/xampp/php" AddType text/html .php .phpsScriptAlias /php-cgi/ „C:/xampp/php/“
<Directory „C:/xampp/php“>
AllowOverride None
Options None
Order deny,allow
Deny from all
<Files „php-cgi.exe“>
Allow from all
<Directory „C:/xampp/cgi-bin“>
<FilesMatch „.php$“>
SetHandler cgi-script
<FilesMatch „.phps$“>
SetHandler None
<Directory „C:/xampp/htdocs/xampp“>
<Files „status.php“>
php_admin_flag safe_mode off
AllowOverride AuthConfig
Alias /licenses "C:/xampp/licenses/"
<Directory "C:/xampp/licenses">
Options +Indexes
<IfModule autoindex_color_module>
DirectoryIndexTextColor "#000000"
DirectoryIndexBGColor "#f8e8a0"
DirectoryIndexLinkColor "#bb3902"
DirectoryIndexVLinkColor "#bb3902"
DirectoryIndexALinkColor "#bb3902"
</IfModule>
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig
</Directory>
Alias /webalizer "C:/xampp/webalizer/"
<Directory "C:/xampp/webalizer">
<IfModule php5_module>
<Files "webalizer.php">
php_admin_flag safe_mode off
</Files>
</IfModule>
AllowOverride AuthConfig
</Directory>
New XAMPP security concept
Close XAMPP security section here
<LocationMatch „^/(?i:(?:security))“>
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8
Allow from ::1 192.168.178.15/8
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
Close XAMPP sites here
<LocationMatch „^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))“>
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8
Allow from ::1 192.168.178.15/8
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
[/code]
Welche Einstellungen muss ich auser der IP noch eingeben?