search
HomeBackend DevelopmentPHP Tutorial 求解PHP中遇到的有关问题

求解PHP中遇到的问题!
2012-04-18 14:22:00: (mod_fastcgi.c.2570) FastCGI-stderr: PHP Notice: Use of undefined constant page - assumed 'page' in /andaxin/web/common/page.class.php on line 9
PHP Notice: Undefined index: page in /andaxin/web/common/page.class.php on line 9
PHP Notice: Use of undefined constant pageft - assumed 'pageft' in /andaxin/web/common/page.class.php on line 10
PHP Notice: Use of undefined constant uid - assumed 'uid' in /andaxin/web/admin_global.php on line 5
PHP Notice: Undefined index: uid in /andaxin/web/admin_global.php on line 5
PHP Notice: Use of undefined constant shell - assumed 'shell' in /andaxin/web/admin_global.php on line 6
PHP Notice: Undefined index: shell in /andaxin/web/admin_global.php on line 6
PHP Notice: Use of undefined constant username - assumed 'username' in /andaxin/web/login.php on line 5
PHP Notice: Use of undefined constant password - assumed 'password' in /andaxin/web/login.php on line 5
PHP Notice: A session had already been started - ignoring session_start() in /andaxin/web/login.php on line 7
PHP Notice: Use of undefined constant username - assumed 'username' in /andaxin/web/login.php on line 10
PHP Notice: Use of undefined constant password - assumed 'password' in /andaxin/web/login.php on line 10
PHP Notice: Use of undefined constant username - assumed 'username' in /andaxin/web/login.class.php on line 7
PHP Notice: Use of undefined constant password - assumed 'password' in /andaxin/web/login.class.php on line 7


2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 
2012-04-18 14:22:01: (connections.c.1675) SSL: 5 error:00000000:lib(0):func(0):reason(0) 



上面的信息是应用lighttpd-1.4.18 web服务时产生的错误信息,第一部分表明的是PHP方面的问题,这个比较少。关键是第二部分的信息,实在是头疼,就这些信息足足产生了一个1.2G的文件把空间都挤满了,这个还导致访问服务器的速度比较慢。哪位高手帮我解释一下,这个是怎样产生的,有什么解决办法,最主要的就是解决办法,现在比较急!
在此先谢过各位大侠了!



------解决方案--------------------
http://www.vpser.net/manage/kloxo-network-c-336-ssl-error.html

http://redmine.lighttpd.net/boards/2/topics/2933

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Fatal error: Call to undefined method PDO::prepare() in的解决方法PHP Fatal error: Call to undefined method PDO::prepare() in的解决方法Jun 22, 2023 pm 06:40 PM

PHP作为一种流行的Web开发语言,已经被使用了很长时间。PHP中集成的PDO(PHP数据对象)类是我们在开发Web应用程序过程中与数据库进行交互的一种常用方法。但是,一些PHP开发者经常遇到的问题是,当使用PDO类与数据库进行交互时,他们会收到这样的错误:PHPFatalerror:CalltoundefinedmethodPDO::prep

在Vue应用中使用axios时出现“Uncaught (in promise) Error: Request failed with status code 500”怎么办?在Vue应用中使用axios时出现“Uncaught (in promise) Error: Request failed with status code 500”怎么办?Jun 24, 2023 pm 05:33 PM

在Vue应用中使用axios是十分常见的,axios是一种基于Promise的HTTP客户端,可以用于浏览器和Node.js。在开发过程中,有时会出现“Uncaught(inpromise)Error:Requestfailedwithstatuscode500”的错误提示,对于开发者来说,这个错误提示可能有些难以理解和解决。本文将会探讨这

解决C++代码中出现的“error: incomplete type is not allowed”问题解决C++代码中出现的“error: incomplete type is not allowed”问题Aug 26, 2023 pm 08:54 PM

解决C++代码中出现的“error:incompletetypeisnotallowed”问题在C++的编程过程中,有时候会遇到一些编译错误,其中一个常见的错误是“error:incompletetypeisnotallowed”。这个错误通常是由于在使用不完整的类型进行操作时引起的。本文将介绍这个错误的原因,并提供几种解决方法。首先,我

0271:real time clock error开不开机怎么办0271:real time clock error开不开机怎么办Mar 13, 2023 am 11:30 AM

“0271:real time clock error”开不开机的解决办法:1、按一下F1,在出现的界面中,将选项栏转到第三项“Date/Time”;2、将系统时间手动修改成现在的时间;3、按F10,在弹出的对话框中,选择yes;4、重新打开笔记本即可正常开机。

解决C++代码中出现的“error: expected initializer before 'datatype'”问题解决C++代码中出现的“error: expected initializer before 'datatype'”问题Aug 25, 2023 pm 01:24 PM

解决C++代码中出现的“error:expectedinitializerbefore'datatype'”问题在C++编程中,有时候我们在编写代码时会遇到一些编译错误,其中一种常见的错误是“error:expectedinitializerbefore'datatype'”。这个错误通常在变量声明或函数定义中发生,可能导致程序无法正确编译或

如何解决PHP Warning: fopen(): failed to open stream: No such file or directory如何解决PHP Warning: fopen(): failed to open stream: No such file or directoryAug 19, 2023 am 10:44 AM

如何解决PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory在使用PHP开发过程中,我们经常会遇到一些文件操作的问题,其中之一就是"PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory

PHP Fatal error: Call to undefined function mysqli_connect()的解决方法PHP Fatal error: Call to undefined function mysqli_connect()的解决方法Jun 23, 2023 am 09:40 AM

在使用PHP编写Web应用程序时,经常会使用MySQL数据库来存储数据。PHP提供了一种与MySQL数据库进行交互的方法,称为MySQLi。然而,有时在使用MySQLi时,会遇到一个错误信息,如以下所示:PHPFatalerror:Calltoundefinedfunctionmysqli_connect()这个错误信息意味着PHP无法找到my

PHP Notice: Undefined property: 的解决方法PHP Notice: Undefined property: 的解决方法Jun 22, 2023 pm 02:48 PM

在使用PHP编写代码时,我们可能会遇到“Notice:Undefinedproperty”这个错误提示。这个错误提示意味着我们正在访问一个未定义的属性,通常是因为该属性在代码中尚未被初始化。那么,该如何解决这个问题呢?下面是几种可能的解决方法:初始化属性这是解决该问题的最简单方法。在代码中显式地初始化属性,可以确保它在使用前已经被定义。例如:class

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools