This happens sometimes with custom fields. user_field4 is generally used for User Occupation. Do you have a profile field for occupation?wwalla wrote:ok, i put them in to the phpbb folder and it looks more promising, except:
General Error
SQL ERROR [ mysql4 ]
Unknown column 'userfield.field4' in 'field list' [1054]
wwalla wrote:Yes, that was it now I am getting an erro here which seems common. I am converting FROM Vbulletin.
Could not find path to your former board. Please check your settings and try again.
» ./forums was specified as the source path.
please help
Your path is ../community111Seanieb1983 wrote:wwalla wrote:I'm having this same problem, everything is uploaded in the correct directories as mentioned here, and they're on the same server
mywebsite.co.uk/community111 < old board
mywebsite.co.uk/phpbb3/ < new board
and i keep getting
Could not find path to your former board. Please check your settings and try again.
» ./forums was specified as the source path.
D¡cky wrote:Your path is ../community111Seanieb1983 wrote:wwalla wrote:I'm having this same problem, everything is uploaded in the correct directories as mentioned here, and they're on the same server
mywebsite.co.uk/community111 < old board
mywebsite.co.uk/phpbb3/ < new board
and i keep getting
Could not find path to your former board. Please check your settings and try again.
» ./forums was specified as the source path.
Code: Select all
SQL ERROR [ mysql4 ]
Unknown column 'user_passwd_salt' in 'field list' [1054]
An SQL error occurred while fetching this page. Please contact the Board Administrator if this problem persists.
The convertor should have created the user_passwd_salt field. You can create it manually in phpMyAdmin by entering the following code in the SQL tab: (If your table prefix is not phpbb_ replace with your table_prefix)Seanieb1983 wrote:Anyway it converts now, but i cant log in there's something up with the password field:Code: Select all
SQL ERROR [ mysql4 ] Unknown column 'user_passwd_salt' in 'field list' [1054] An SQL error occurred while fetching this page. Please contact the Board Administrator if this problem persists.
Code: Select all
ALTER TABLE phpbb_users ADD user_passwd_salt varchar(5) COLLATE utf8_bin NOT NULL DEFAULT ''
Your server is running out of resources. Try this:samguy wrote:Hi while converting Vbulletin 3.8 to phpbb i get error http 500 internal server
Code: Select all
<?php
/**
*
* @package install
* @version $Id: install_convert.php 8814 2008-09-04 12:01:47Z acydburn $
* @copyright (c) 2006 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
*/
Code: Select all
@set_time_limit(0);
@ini_set('memory_limit', '256M');
@ini_set('upload_max_filesize', '128M');
@ini_set('post_max_size', '256M');
@ini_set('max_input_time', '-1');
@ini_set('max_execution_time', '-1');
@ini_set('expect.timeout', '-1');
@ini_set('default_socket_timeout', '-1');
This happens because in your vBulletin configuration, you have the full url in the attachment directory. There are two possible solutions:petersweb wrote:[phpBB Debug] PHP Notice: in file /install/convertors/functions_vb30.php on line 80: copy(./../../forum//home/xxxxxx/public_html/forum/attachments/1/1/9/6/844.attach) [function.copy]: failed to open stream: No such file or directory
For some reason, the converter is placing "./../../forum/" in front of my directory path thereby causing the error.
Code: Select all
// 'upload_path' => 'files/',//人工指定? files/ is the default path
'upload_path' => get_config_value('attachpath') . '/',
Code: Select all
'upload_path' => 'attachments/',
// 'upload_path' => get_config_value('attachpath') . '/',
Thanks Dicky, but no successD¡cky wrote: This happens because in your vBulletin configuration, you have the full url in the attachment directory. There are two possible solutions:
- In the vBulletin Administration Control Panel, set the attachment directory to just the path instead of the full url.
- OPEN convert_vb3x.php
FINDREPLACE WITHCode: Select all
// 'upload_path' => 'files/',//人工指定? files/ is the default path 'upload_path' => get_config_value('attachpath') . '/',
Replace attachments with the actual directory name where your attachments are stored.Code: Select all
'upload_path' => 'attachments/', // 'upload_path' => get_config_value('attachpath') . '/',
The most logical reason is that the attachment doesn't exist.petersweb wrote: I changed the attachments path to just 'attachments' in my AdminCP (I can verify that attachments still work correctly on the site). I also changed the path to my vBuleltin forum in config.php to 'forum' (I had had the full path there).
The error I now get is:
[phpBB Debug] PHP Notice: in file /install/convertors/functions_vb30.php on line 80: copy(./../../forum/attachments/1/0/6/6/546.attach) [function.copy]: failed to open stream: No such file or directory
I also tried option #2 but sadly, that didn't make any difference.
I'm attempting to transfer my vBulletin forum to PHPBB for evaluation purposes with a view to moving over permanently so any assistance you can give is appreciated, but not urgent (although I'd like to get this solved soon).