phpmyadmin处理请求时出错。错误代码:200

时间:2018-11-05 08:38:37

标签: mysql wordpress iis phpmyadmin

IIS 6.0 PHP 7.1.23 MYSQL 5.6.42 PHPMYADMIN 4.8.3

我使用以下web.config代码添加网站文件夹:

<!-- Modal -->
<div class="modal fade" id="productPricing" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
    <div class="modal-dialog modal-dialog-centered" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <h5 class="modal-title" id="exampleModalCenterTitle">Modal title</h5>
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
            </div>
            <div class="modal-body">

                <form class="form-horizontal m-t-20"  method="POST" data-toogle="validator" id="addPP-form">
                    @csrf {{ method_field('POST') }}
                    <?php
                    $i = 0;
                    ?>

                    @foreach($products as $product)
                        <div class="form-row product-pricing-div">

                            <input type="hidden" name="productId[]" value="{{ $product->id }}">

                            <input type="hidden" name="productName[]" value="{{ $product->productName }}">
                            <input type="hidden" name="customerId" id="customerId" value="">

                            <div class="form-group col-md-12" style="margin-bottom: 0px">
                                <h5 class="right-align">{{ ++$i }}.{{$product->productName }}</h5>
                            </div>

                            <!-- Phone Number -->

                            <div class="form-group col-md-12">
                                <div class="input-group-prepend">
                                    <span class="input-group-text bg-success text-white" ><i class="ti-money"></i></span>
                                    <input type="number" step="any" class="form-control form-control-lg" placeholder="Enter Price for Product {{ $i }}" name="productPrice[]" value="{{ old('customerPhone') }}">
                                </div>
                            </div>
                        </div>
                    @endforeach


                    <div class="modal-footer">
                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
                        <button class="btn text-center bg-success style-je518ohhlink" id="addPPbtn" type="submit"></button>
                    </div>
                </form>

            </div>



        </div>
    </div>
</div>

我用root用户登录phpmyadmin。 phpmyadmin显示错误代码:200。 该数据库以前已消失,并且未添加新数据库。 如何解决?

enter image description here

1 个答案:

答案 0 :(得分:0)

您尝试过另一种语言吗? 在php config中,您的memory_limit是否足够?