IIS - 仅在重新加载2-3次后才加载PHP页面

时间:2017-05-10 17:13:52

标签: php css iis fastcgi windows-server-2016

所以我为我的私人游戏服务器设置了此页面。我在运行Windows Server 2016的同一个专用服务器上托管游戏服务器和Web。我使用IIS来托管网站。现在正面临一个问题,页面只在重新加载2-3次后加载。直到它返回HTTP错误500.一旦页面加载,我必须刷新多次以加载每个内容。发生了什么事?

页面 - > www.ram-sro.com

的index.php

using System;

using Android.App;
using Android.Content;
using Android.Content.PM;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using App2;

using Xamarin.Forms.Platform.Android;

namespace App2.Droid
{
    [Activity(Label = "App2", Icon = "@drawable/icon", MainLauncher = true,
    ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
    public class MainActivity :
        global::Xamarin.Forms.Platform.Android.FormsApplicationActivity // superclass new in 1.3
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            global::Xamarin.Forms.Forms.Init(this, bundle);

            LoadApplication(new App()); // method is new in 1.3
        }
    }
}

0 个答案:

没有答案