1

最新:这次我设法正确下载了所有文件,但是当我尝试导入我的 sql 文件时收到此消息:

新主机的最大限制为 51,200 KiB,我的 sql 文件压缩后只有 12.5MB 和 3.0 MB。如果我将它作为 zip 文件上传,它会说

Script timeout passed, if you want to finish import, please resubmit same file and import will resume.

或者它显示:

#1044 - Access denied for user 'a9806073_blurb'@'localhost' to database '1487929_blurb' 

但是,如果我将其纯粹作为 sql 文件上传,则在上传时连接会重置。


我刚刚将我的 Joomla 文件迁移到一个新的网络主机上,我收到以下错误消息:

Warning: require_once(/home/a9806073/public_html/includes/defines.php) [function.require-once]: failed to open stream: No such file or directory in /home/a9806073/public_html/index.php on line 21

Free Web Hosting

PHP Error Message

Fatal error: require_once() [function.require]: Failed opening required '/home/a9806073/public_html/includes/defines.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/a9806073/public_html/index.php on line 21

下面是 index.php 中的代码片段:

define( '_JEXEC', 1 );

define('JPATH_BASE', dirname(__FILE__) );

define( 'DS', DIRECTORY_SEPARATOR );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

编辑:从 FTP 重新下载文件,显然某些文件夹的顺序不同并且出现在错误的位置。

4

1 回答 1

0

我相信您可以理解 PHP,如果不是,则错误意味着它无法从您的网站上找到文件“include/defines.php”。

检查

你有这些文件吗?

  • 包括/定义.php

边注

我们需要更多信息,我将在从您那里获得这些信息后编辑我的答案:

  • 版本
  • PHP 版本 (phpinfo())
于 2013-08-25T12:42:20.987 回答