|
|
|
Re: Problems Importing 2.3.2 Datadump [message #18613 is a reply to message #18607] |
Mon, 31 May 2004 13:27 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Hmm when you get the white page does your browser appear to be doing anything? The import process is quite slow and if you have output buffering enabled it could be quite a while before you see any messages.
Also check your forum's & php's error log files to see if any errors can be found there.
FUDforum Core Developer
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #18617 is a reply to message #18616] |
Mon, 31 May 2004 18:14 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
If the old forum is still active it would be a good idea to upgrade that forum to 2.6.3 and the make a dump of that and import it into new 2.6.3 install. The code base you are using is quite old and I am not entirely sure what could be wrong with it.
FUDforum Core Developer
|
|
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #18621 is a reply to message #18620] |
Mon, 31 May 2004 19:06 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Hmmm it is likely that the problem is due to the script hitting the memory limit. To determine if that is the case turn on php's error logging facility and make it write the errors to some file you can later check.
FUDforum Core Developer
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #18636 is a reply to message #18633] |
Tue, 01 June 2004 01:41 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
If you are using PHP/Apache (not PHP-CGI) then you can usually put .htaccess file that would set various options
php_value error_log "/path/to/log_file/"
php_flag log_errors 1
FUDforum Core Developer
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #21903 is a reply to message #21900] |
Mon, 27 December 2004 21:22 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Dump the data from mysql manually and make an archive of all the forum directories. Then decompress this data on the server, import database data and modify GLOBALS.php to reflect the new paths & database settings.
FUDforum Core Developer
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #21924 is a reply to message #21908] |
Tue, 28 December 2004 21:49 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
When I refered to mysql dump I was talking about making one manually via mysqldump or phpmyadmin.
It sounds to me like the automated dump tool is being terminated before it has a chance to complete. Non-the-less you can certainly try importing the dump on to a fresh forum.
FUDforum Core Developer
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #21928 is a reply to message #21924] |
Wed, 29 December 2004 13:47 |
malik
Messages: 21 Registered: October 2004 Location: houston,tx
Karma: 0
|
Junior Member |
|
|
Yes I know about that but this hosting old like an earth!
The cp panel doesen't have php admin!
I dumped sql data in sql file !
But the data base weghts ~ 4.1 M
Now in sql file only ~ 1.21 M is that OK?
I'm not strong in sql
I will try to impord half of that data in fud dump!
I was talking with my hoster and he said I dont know:( f....
the process terminate dumping process with that error!
Is there any possible ways to deal with that kind of situation?
Maybe I got something wrong any advice would be great!
What kind of problem with that error and how to deal with it doe's anybody got a clue?
[Updated on: Wed, 29 December 2004 15:25] Report message to a moderator
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #21945 is a reply to message #21935] |
Tue, 04 January 2005 19:56 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The GLOBALS.php inside forum's main dir and adm dir are symlinks to the original file inside the include directory.
if you do not have shell access you can rebuild theme using the symlink() PHP function described here:
http://ca3.php.net/symlink
FUDforum Core Developer
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #21955 is a reply to message #21954] |
Tue, 04 January 2005 21:21 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
All fudforum tables have a prefix you specified, which means it is not going to conflict with anything else asuming you pick a different table prefix for that application.
FUDforum Core Developer
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: Problems Importing 2.3.2 Datadump [message #22134 is a reply to message #22107] |
Mon, 17 January 2005 15:19 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Here is the thing, the files created by the forum are created as the Apache user (nobody) because that is who PHP runs as. So you need to make sure that this account has access to all forum files. So if you are getting permissions errors, chmod the affected files/directories 777 via FTP or SSH.
FUDforum Core Developer
|
|
|
|
|
|