> 백엔드 개발 > PHP 튜토리얼 > 为什么 用xampp经常会出现“502 Bad Gateway ”提示?

为什么 用xampp经常会出现“502 Bad Gateway ”提示?

WBOY
풀어 주다: 2016-06-06 20:23:45
원래의
1582명이 탐색했습니다.

502 Bad Gateway

PhpStorm 10.0.1

我是在学习“上传文件”一课时遇到的,用Google Chrome浏览器 windows平台,本来正常输出 echo啥的没问题,一执行“上传图片” 就出现,而且之后的所有php 还是 HTML 运行起来就是都这样,重启就又好了,但上传就不行。偶尔错误提示是404 bad Gateway。请大家指教!!感激不尽!!眼泪哗哗的!!

代码:

HTML:

<code class="html">


    <meta charset="UTF-8">
    <title>上传文件</title>


<form action="upload.php" method="post" enctype="multipart/form-data">
    <input type="file" name="myFile">
    <input type="submit" value="提交">
</form>

</code>
로그인 후 복사
로그인 후 복사

php:

<code class="php">


    <meta charset="UTF-8">
    <title>The Image</title>


<?php $file=$_FILES['myFile'];
$fileName=$file['name'];
move_uploaded_file($file['tmp_name'],$fileName);

echo "<img  src='$fileName' alt="为什么 用xampp经常会出现“502 Bad Gateway  ”提示?" >";
?>

</code>
로그인 후 복사
로그인 후 복사

回复内容:

502 Bad Gateway

PhpStorm 10.0.1

我是在学习“上传文件”一课时遇到的,用Google Chrome浏览器 windows平台,本来正常输出 echo啥的没问题,一执行“上传图片” 就出现,而且之后的所有php 还是 HTML 运行起来就是都这样,重启就又好了,但上传就不行。偶尔错误提示是404 bad Gateway。请大家指教!!感激不尽!!眼泪哗哗的!!

代码:

HTML:

<code class="html">


    <meta charset="UTF-8">
    <title>上传文件</title>


<form action="upload.php" method="post" enctype="multipart/form-data">
    <input type="file" name="myFile">
    <input type="submit" value="提交">
</form>

</code>
로그인 후 복사
로그인 후 복사

php:

<code class="php">


    <meta charset="UTF-8">
    <title>The Image</title>


<?php $file=$_FILES['myFile'];
$fileName=$file['name'];
move_uploaded_file($file['tmp_name'],$fileName);

echo "<img  src='$fileName' alt="为什么 用xampp经常会出现“502 Bad Gateway  ”提示?" >";
?>

</code>
로그인 후 복사
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿