Localhost ERR_CONNECTION_REFUSED

时间:2015-12-06 12:08:16

标签: xampp connection localhost

我的xampp有问题,或者只是localhost,我试图访问localhost,它说“页面无法访问ERR_CONNECTION_REFUSED”

我正在使用xampp,在windows 10中,apache和mysql已经开启。

我在其他论坛中看到,chrome阻止了localhost网址,因此我安装了firefox并继续无法正常工作。

*我在cmd中添加

import requests,os,bs4
# Download the page.
print('Downloading page...')
res=requests.get('https://imgur.com/search?q=cute+dog')
res.raise_for_status()

soup=bs4.BeautifulSoup(res.text,"html.parser")

# Find the URL of the image.
comicElem=soup.select('#imagelist img')
for i in range(10):
    comicUrl=comicElem[i].get('src')
    # Download the image.
    print('Downloading image %s...' %(comicUrl))
    res=requests.get('https:'+comicUrl)
    res.raise_for_status()
    # Save the image to f:\\images
    imageFile=open(os.path.join('f:\\image',os.path.basename(comicUrl)),'wb')
    for chunk in res.iter_content(100000):
        imageFile.write(chunk)
    imageFile.close()

在chrome和firefox中尝试了barreto /,错误连接一直显示。

这是来自apache

的error.log
hostname=barreto

我需要知道发生了什么或我能做些什么。感谢

0 个答案:

没有答案