HatalarNetworkUncategorized
- Posted on
- Comments 0
Wamp Local IP Connection 192.168 Permission Failed
Merhaba Arkadaşlar ,
Wamp’a bulunduğunuz network üzerinden başka bir Client’la bağlantı yapmak isterseniz. Yapmanız gerekenler..
Bunun için ‘ C:\wamp\bin\apache\apache( apache versiyonu)\conf \httpd.conf ‘ deki dosyayı açın veya wamp icon’una tıklayarak Apache -> httpd.conf dosyasını açın.
<Directory "c:/wamp/www/"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.2/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride all # # Controls who can get stuff from this server. # # onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
Directory tagları arasında bulunan
Deny from all komutunu
Allow from all olarak değiştirin.
veya IP’niz değişken değil ve tek bir IP’den bağlantı almak istiyorsanız.
cmd-> ipconfig yazdıktansonra IPv4 Address inizi
Allow from 192.168.0.11 şeklinde ekleyin. NOT (all yaparsanız ip vermenize gerek yok.)
Artık Local IP’nizden wamp’a ulaşabilirsiniz.
Muharrem Tığdemir