内部服务器错误 - CPanel 托管
Internal Server Error- CPanel hosting
我是新手,之前从未托管过网站。我正在使用 cPanel 并有一个 php 我使用 XAMPP 开发的网站。我对如何使用 cPanel 以及如何上传我的网站以像在 XAMPP 上那样工作感到非常困惑。
我使用 public_html 文件夹中的文件管理器上传了所有文件和文件夹。我在主屏幕上选择了预览网站选项并收到了 500 内部服务器错误,其中指出:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@previewmywebsitenow.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 Server at www.previewmywebsitenow.com Port 80
我试图查找其含义,但不确定如何改正我的错误。我是否按照预期的方式上传了所有内容?另外,如果这不是我上传时发生的错误,我该如何找到文件或执行我需要的程序来解决这个问题?
我很感激任何关于如何继续这个的解释或指导。我很新,请原谅我的无知。
cPanel
是最友好的托管平台,非常欢迎那些没有丰富托管经验的人。所以,没有比这更容易的了!
现在关于您遇到的内部服务器错误。您使用的是 Joomla 还是 WordPress?如果是,您将需要分别更改 configuration.php
或 wp-config.php
文件以适应服务器。您还需要使用 cPanel
中的 MySQL 数据库工具在 Web 服务器上创建数据库(和数据库的用户),然后从 XAMPP
中导出您的实际数据库,然后导入它那里(在 cPanel
中创建数据库后,您可以使用 phpMyAdmin
执行导入过程)。
自从您与 XAMPP
合作以来,您会发现 CPanel
很友好。您不会将目录放在 htdocs
目录中,而是将工作文件和目录放在 public_html
目录中。
使用PHP解决内部服务器错误:
请检查您的重定向 header()
功能。您可能缺少 location
关键字。
示例:
错误: header("home.php");
提示: 添加Location
解法: header("Location: home.php);
我是新手,之前从未托管过网站。我正在使用 cPanel 并有一个 php 我使用 XAMPP 开发的网站。我对如何使用 cPanel 以及如何上传我的网站以像在 XAMPP 上那样工作感到非常困惑。
我使用 public_html 文件夹中的文件管理器上传了所有文件和文件夹。我在主屏幕上选择了预览网站选项并收到了 500 内部服务器错误,其中指出:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@previewmywebsitenow.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 Server at www.previewmywebsitenow.com Port 80
我试图查找其含义,但不确定如何改正我的错误。我是否按照预期的方式上传了所有内容?另外,如果这不是我上传时发生的错误,我该如何找到文件或执行我需要的程序来解决这个问题?
我很感激任何关于如何继续这个的解释或指导。我很新,请原谅我的无知。
cPanel
是最友好的托管平台,非常欢迎那些没有丰富托管经验的人。所以,没有比这更容易的了!
现在关于您遇到的内部服务器错误。您使用的是 Joomla 还是 WordPress?如果是,您将需要分别更改 configuration.php
或 wp-config.php
文件以适应服务器。您还需要使用 cPanel
中的 MySQL 数据库工具在 Web 服务器上创建数据库(和数据库的用户),然后从 XAMPP
中导出您的实际数据库,然后导入它那里(在 cPanel
中创建数据库后,您可以使用 phpMyAdmin
执行导入过程)。
自从您与 XAMPP
合作以来,您会发现 CPanel
很友好。您不会将目录放在 htdocs
目录中,而是将工作文件和目录放在 public_html
目录中。
使用PHP解决内部服务器错误:
请检查您的重定向 header()
功能。您可能缺少 location
关键字。
示例:
错误: header("home.php");
提示: 添加Location
解法: header("Location: home.php);