Jump to content

filemessie

Members
  • Gesamte Inhalte

    2
  • Registriert seit

  • Letzter Besuch

Profile Fields

  • Member Title
    Newbie

Fortschritt von filemessie

Newbie

Newbie (1/14)

  • Erste Antwort
  • Eine Woche dabei
  • Einen Monat dabei
  • 1 Jahre dabei
  • 5 Jahre dabei!

Neueste Abzeichen

10

Reputation in der Community

  1. Teil2: Im IIS Manager, "DeineSeite" -> "Manage Web Site" -> "Advanced Settings" -> "Behavior" -> "Connection Limits" -> "Connection Time-out" von 120sek auf zB. 7200sek ändern. öffne "Program Files\Common Files\Microsoft Shared\Web server extensions\12\TEMPLATE\LAYOUTS", kopiere "web.config" und suche: <location path="upload.aspx"> <system.web> <httpRuntime maxRequestLength="2097151" /> </system.web> </location> ändere in: <location path="upload.aspx"> <system.web> <httpRuntime executionTimeout="999999" maxRequestLength="2097151" /> </system.web> </location> öffne "Inetpub\wwwroot\VirtualDirectories\VirtualDirectoryFolder", kopiere "web.config" und suche: <httpRuntime maxRequestLength="51200" /> ändere in: <httpRuntime executionTimeout="999999" maxRequestLength="51200" /> Füge direkt vor "</configuration>" folgendes hinzufügen: <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="157286400"/> </requestFiltering> </security> </system.webServer>
  2. in der php.ini kannst du die timeouts für PHP ändern: ; Resource Limits ; ... max_input_time = 60 ... ; Fopen wrappers ; ... default_socket_timeout = 60 ... [MySQL] ... mysql.connect_timeout = 60 ... [WebPIChanges] ... max_execution_time = 30 ... PHP: php.ini Variables und in der my.ini für MySQL: [mysqld] ... wait_timeout = 180 oder interactive_timeout = 180 ... MySQL: Server System Variables Es kann aber auch sein das die Zugriffsrechte auf Ordner und/oder Dateien nicht in Ordnung sind. (RechteMaustaste auf den ZielOrdner -> Einstellungen -> Sicherheit -> USERS und/oder IIS_IUSERS)
×
×
  • Neu erstellen...