Este artículo es un artículo espejo de traducción automática, por favor haga clic aquí para saltar al artículo original.

Vista: 12990|Respuesta: 5

[Web] Errores que suelen ocurrir en servidores web, a continuación se muestra el registro de errores para consultas lentas

[Copiar enlace]
Publicado en 30/11/2014 21:09:51 | | |
[30-Nov-2014 20:22:25]  [pool www] PID 10383
script_filename = /prueba/forum.php
[0x00007fe08a61eba8] curl_exec() /test/source/function/function_filesock.php:68
[0x00007fe08a61e960] _dfsockopen() /test/source/function/function_core.php:201
[0x00007fe08a61e7c0] dfsockopen() /test/source/class/class_image.php:123
[0x00007fe08a61e608] init() /test/source/class/class_image.php:45
[0x00007fe08a61e2a8] Thumb() /test/source/function/function_block.php:410
[0x00007fe08a61e038] block_template() /test/source/function/function_block.php:177
[0x00007fe08a61def8] block_fetch_content() /prueba/fuente/función/function_block.php:120
[0x00007fe08a61de18] block_display_batch() /test/source/function/function_core.php:804
[0x00007fe08a61dbd0] block_display() /test/data/plantilla/3_diy_forum_discuz.tpl.php:29
[0x00007fe08a61d828] +++ volcado fallido

[30-Nov-2014 20:22:26]  [pool www] PID 10392
script_filename = /prueba/forum.php
[0x00007fe08a61eba8] curl_exec() /test/source/function/function_filesock.php:68
[0x00007fe08a61e960] _dfsockopen() /test/source/function/function_core.php:201
[0x00007fe08a61e7c0] dfsockopen() /test/source/class/class_image.php:123
[0x00007fe08a61e608] init() /test/source/class/class_image.php:45
[0x00007fe08a61e2a8] Thumb() /test/source/function/function_block.php:410
[0x00007fe08a61e038] block_template() /test/source/function/function_block.php:177
[0x00007fe08a61def8] block_fetch_content() /prueba/fuente/función/function_block.php:120
[0x00007fe08a61de18] block_display_batch() /test/source/function/function_core.php:804
[0x00007fe08a61dbd0] block_display() /test/data/plantilla/3_diy_forum_discuz.tpl.php:29
[0x00007fe08a61d828] +++ volcado fallido


Sabes cuál es la causa de este error, y la ejecución lenta de la consulta registrará este error durante más de 5 segundos, server nginx y php-fpm





Anterior:Te enseñará a entender rápidamente la función de archivos de Discuz!, y a partir de ahora no tendrás que pedir ayuda para modificar archivos
Próximo:[Imprescindible para comprar billetes de tren] 12306 Bypass Desviación de billetes v1.5 versión verde
Publicado en 1/12/2014 12:20:49 |
[0x00007fe08a61eba8] curl_exec() /test/source/function/function_filesock.php:68 Hay un error en la línea 68, que solo puede ayudar :L
 Propietario| Publicado en 1/12/2014 13:45:36 |
Delver_Si Publicado el 1-12-2014 a las 12:20
[0x00007fe08a61eba8] curl_exec() /test/source/function/function_filesock.php:68 Hay un error en la línea 68, solo ...

Tu hermana, también sé que esta frase es incorrecta, pero no sé para qué sirve este documento
Publicado en 1/12/2014 21:01:08 |
/test/source/function/function_filesock.php  源代码给我
 Propietario| Publicado en 1/12/2014 21:14:41 |
Delver_Si Publicado el 2014-12-1 21:01
/test/source/function/function_filesock.php  源代码给我

[mw_shl_code=php,true]<?php

/**
* [¡Discuz!] (C)2001-2099 Comsenz Inc.
* Esto NO es un freeware, su uso está sujeto a los términos de la licencia
*
* $Id: function_filesock.php 34441 2014-04-29 07:47:26Z nemohou $
*/

if(!defined('IN_DISCUZ')) {
        salida ('Acceso denegado');
}

función _dfsockopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSO, $ip = '', $timeout = 15, $block = TRUE, $encodetype = 'URLENCODE', $allowcurl = TRUE, $position = 0, $files = array( )) {
        $return = '';
        $matches = parse_url($url);
        $scheme = $matches['esquema'];
        $host = $matches['anfitrión'];
        $path = $matches['camino'] ? $matches['camino']. ($matches['consulta']? '?'. $matches['consulta'] : '') : '/';
        $port = !vacío($matches['puerto']) ? $matches['puerto'] : ($scheme == 'http' ? '80' : '');
        $boundary = $encodetype == 'URLENCODE' ? '' : aleatorio(40);

        if($post) {
                if(!is_array($post)) {
                        parse_str($post, $post);
                }
                _format_postkey($post, $postnew);
                $post = $postnew;
        }
        si(function_exists('curl_init') & & function_exists('curl_exec') y & $allowcurl) {
                $ch = curl_init();
                $httpheader = array();
                if($ip) {
                        $httpheader[] = "Presentador: ".$host;
                }
                if($httpheader) {
                        curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader);
                }
                curl_setopt($ch, CURLOPT_URL, $scheme.'://'.( $ip ? $ip : $host). ($port ? ':'.$port : '').$path);
                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, falso);
                curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, falso);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, cierto);
                curl_setopt($ch, CURLOPT_FOLLOWLOCATION, cierto);
                curl_setopt($ch, CURLOPT_HEADER, 1);
                if($post) {
                        curl_setopt($ch, CURLOPT_POST, 1);
                        if($encodetype == 'URLENCODE') {
                                curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
                        } else {
                                foreach($post como $k => $v) {
                                        if(isset($files[$k])) {
                                                $post[$k] = '@'.$files[$k];
                                        }
                                }
                                foreach($files as $k => $file) {
                                        if(!isset($post[$k]) && file_exists($file)) {
                                                $post[$k] = '@'.$file;
                                        }
                                }
                                curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
                        }
                }
                if($cookie) {
                        curl_setopt($ch, CURLOPT_COOKIE, $cookie);
                }
                curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
                curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
                $data = curl_exec($ch);
                $status = curl_getinfo($ch);
                $errno = curl_errno($ch);
                curl_close($ch);
                if($errno || $status['http_code'] != 200) {
                        devolución;
                } else {
                        $GLOBALS['encabezado de archivos'] = substr($data, 0, $status['header_size']);
                        $data = substr($data, $status['header_size']);
                        ¡¡Vuelve!$limit ? $data : substr($data, 0, $limit);
                }
        }

        if($post) {
                if($encodetype == 'URLENCODE') {
                        $data = http_build_query($post);
                } else {
                        $data = '';
                        foreach($post como $k => $v) {
                                $data .= "--$boundary\r\n";
                                $data .= 'Content-Disposition: form-data; name="'$k.'"'. (isset($files[$k])? '; nombre de archivo="'.basename($files[$k]).'"; Tipo-Contenido: aplicación/octeto-stream' : '')." \r\n\r\n";
                                $data .= $v." \r\n";
                        }
                        foreach($files as $k => $file) {
                                if(!isset($post[$k]) && file_exists($file)) {
                                        if($fp = @fopen($file, 'r')) {
                                                $v = fread($fp, tamaño del archivo($file));
                                                fclose($fp);
                                                $data .= "--$boundary\r\n";
                                                $data .= 'Content-Disposition: form-data; name="'.$k.'"; nombredel archivo="'.basename($file).'"; Tipo de contenido: aplicación/flujo octeto'." \r\n\r\n";
                                                $data .= $v." \r\n";
                                        }
                                }
                        }
                        $data .= "--$boundary\r\n";
                }
                $out = "POST $path HTTP/1.0\r\n";
                $header = "Aceptar: */*\r\n";
                $header .= "Aceptar-Lenguaje: zh-cn\r\n";
                $header .= $encodetype == 'URLENCODE' ? "Tipo-Contenido: aplicación/x-www-form-urlencoded\r\n" : "Tipo-Contenido: multipart/data-forma; frontera=$boundary\r\n";
                $header .= 'Contenido-Longitud: '.strlen($data)." \r\n";
                $header .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
                $header .= "Presentador: $host:$port\r\n";
                $header .= "Conexión: Cerca\r\n";
                $header .= "Control de caché: no-cache\r\n";
                $header .= "Galleta: $cookie\r\n\r\n";
                $out .= $header;
                $out .= $data;
        } else {
                $out = "GET $path HTTP/1.0\r\n";
                $header = "Aceptar: */*\r\n";
                $header .= "Aceptar-Lenguaje: zh-cn\r\n";
                $header .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
                $header .= "Presentador: $host:$port\r\n";
                $header .= "Conexión: Cerca\r\n";
                $header .= "Galleta: $cookie\r\n\r\n";
                $out .= $header;
        }

        $fpflag = 0;
        if(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) {
                $context = array(
                        'http' => array(
                                'método' => $post ? 'POST' : 'GET',
                                'encabezado' => $header,
                                'content' => $post,
                                'tiempo muerto' => $timeout,
                        ),
                );
                $context = stream_context_create($context);
                $fp = @fopen($scheme.'://'.( $ip ? $ip : $host).':'.$port.$path, 'b', falso, $context);
                $fpflag = 1;
        }

        if(!$fp) {
                regresar '';
        } else {
                stream_set_blocking($fp, $block);
                stream_set_timeout($fp, $timeout);
                @fwrite($fp, $out);
                $status = stream_get_meta_data($fp);
                if(!$status['timed_out']) {
                        mientras (!feof($fp) && !$fpflag) {
                                $header = @fgets($fp);
                                $headers .= $header;
                                if($header && ($header == "\r\n" ||  $header == "\n")) {
                                        pausa;
                                }
                        }
                        $GLOBALS['encabezado de archivos'] = $headers;

                        if($position) {
                                para ($i=0; $i<$position; $i++) {
                                        $char = fgetc($fp);
                                        if($char == "\n" && $oldchar != "\r") {
                                                $i++;
                                        }
                                        $oldchar = $char;
                                }
                        }

                        if($limit) {
                                $return = stream_get_contents($fp, $limit);
                        } else {
                                $return = stream_get_contents($fp);
                        }
                }
                @fclose($fp);
                regresar $return;
        }
}

función _format_postkey($post, &$result, $key = '') {
        foreach($post como $k => $v) {
                $_k = $key ? $key.' ['.$k.']' : $k;
                if(is_array($v)) {
                        _format_postkey($v, $result, _k $);
                } else {
                        $result[$_k] = $v;
                }
        }
}

?>[/mw_shl_code]
Publicado en 2/12/2014 0:08:32 |
No puedo entenderlo
Renuncia:
Todo el software, materiales de programación o artículos publicados por Code Farmer Network son únicamente para fines de aprendizaje e investigación; El contenido anterior no se utilizará con fines comerciales o ilegales; de lo contrario, los usuarios asumirán todas las consecuencias. La información de este sitio proviene de Internet, y las disputas de derechos de autor no tienen nada que ver con este sitio. Debes eliminar completamente el contenido anterior de tu ordenador en un plazo de 24 horas desde la descarga. Si te gusta el programa, por favor apoya el software genuino, compra el registro y obtén mejores servicios genuinos. Si hay alguna infracción, por favor contáctanos por correo electrónico.

Mail To:help@itsvse.com