首頁 >後端開發 >php教程 >为什么 用xampp经常会出现“502 Bad Gateway ”提示?

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

WBOY
WBOY原創
2016-06-06 20:23:451580瀏覽

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>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn