Advertisement:

Author Topic: Error convertion  (Read 3034 times)

Offline carlospok

  • Semi-Newbie
  • *
  • Posts: 23
Error convertion
« on: April 14, 2012, 11:39:25 AM »
I upload the sms2-0_invision2.3_converter (my IPB use 3.3.0.. but it's the same)

And the converter tell me this error

Sorry, the database connection information used in the specified installation of SMF cannot access the installation of Invision Power Board 2.3. This may either mean that the installation doesn't exist, or that the Database account used does not have permissions to access it.

The error that was received from the Database was: SELECT command denied to user 'wwwmundo_new'@'localhost' for table 'ipb_members'

I look own and

his converter assumes you have already installed SMF and that your installation is working properly. It copies posts and data from your "source" installation of Invision Power Board 2.3 into SMF, so it won't work without an installation of SMF. All or some of the data in your installation of SMF will be overwritten.
If the two softwares are installed in separate directories, the Database account SMF was installed using will need access to the other database. Either way, both must be installed on the same Database server.

I need the installation files of smf?

Online Colin

  • Support Specialist
  • SMF Hero
  • *
  • Posts: 4,667
  • Gender: Male
  • SMF and Web Hosting Enthusiast
    • Gray Web Host
Re: Error convertion
« Reply #1 on: April 15, 2012, 02:12:19 AM »
The issue seems to be with the mySQL user for your IPB mySQL database. Can you verify that is correct please?
https://www.graywebhost.com - Affordable, reliable hosting starting at $2.95 per month

Online IchBin™

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 10,918
  • Gender: Male
  • I don't speak German.
    • IchBin.us
Re: Error convertion
« Reply #2 on: April 15, 2012, 09:44:48 AM »
The issue is likely that your SMF database user that you use for mysql cannot access the database that you have IPB installed in. You need to grant the SMF database user access to that database. If you don't know how to do that, I would contact your host and ask if they can show you.
Brad "IchBin™" Grow        TinyPortal        Themes
Coding Guidelines       

Online Colin

  • Support Specialist
  • SMF Hero
  • *
  • Posts: 4,667
  • Gender: Male
  • SMF and Web Hosting Enthusiast
    • Gray Web Host
Re: Error convertion
« Reply #3 on: April 15, 2012, 06:42:21 PM »
If your host runs cPanel please follow the steps below:

To define a user’s privileges:
Under Add User to Database, select a user from the User drop-down menu.
From the Database drop-down menu, select the database to which you wish to allow the user access.
Click Add.
From the MySQL Account Maintenance screen, select the privileges you wish to grant the user, or select ALL PRIVILEGES.
Click Make Changes.
https://www.graywebhost.com - Affordable, reliable hosting starting at $2.95 per month

Online IchBin™

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 10,918
  • Gender: Male
  • I don't speak German.
    • IchBin.us
Re: Error convertion
« Reply #4 on: April 15, 2012, 07:23:14 PM »
Thanks Colin. Somehow I just realized I missed your post before mine. Sorry I didn't mean to make it seem like you were ignored or anything. lol
Brad "IchBin™" Grow        TinyPortal        Themes
Coding Guidelines       

Online Colin

  • Support Specialist
  • SMF Hero
  • *
  • Posts: 4,667
  • Gender: Male
  • SMF and Web Hosting Enthusiast
    • Gray Web Host
Re: Error convertion
« Reply #5 on: April 15, 2012, 07:25:25 PM »
Hey, no worries at all. (I didn't take it like that  :)) In fact you clarified my response with regard to the actual mYSQL user not having permissions for the SMF database.
https://www.graywebhost.com - Affordable, reliable hosting starting at $2.95 per month

Offline carlospok

  • Semi-Newbie
  • *
  • Posts: 23
Re: Error convertion
« Reply #6 on: April 16, 2012, 06:33:44 AM »
Now tell me:

Converting...
Converting members... Unsuccessful!
This query:
SELECT
m.id AS id_member, SUBSTRING(m.name, 1, 80) AS member_name,
m.joined AS date_registered,
IF(m.mgroup = 4, 1, IF(m.mgroup = 3, 0, IF(m.mgroup > 5, m.mgroup + 3, 0))) AS id_group,
posts, m.last_visit AS last_login, SUBSTRING(m.members_display_name, 1, 80) AS real_name,
SUBSTRING(me.yahoo, 1, 32) AS yim, m.msg_total AS instant_messages,
SUBSTRING(mc.converge_pass_hash, 1, 64) AS passwd,
SUBSTRING(mc.converge_pass_salt, 1, 5) AS password_salt,
SUBSTRING(m.email, 1, 255) AS email_address,
IF (m.bday_year = 0 AND m.bday_month != 0 AND m.bday_day != 0, CONCAT('0004-', m.bday_month, '-', m.bday_day), CONCAT_WS('-', IF(m.bday_year <= 4, 1, m.bday_year), IF(m.bday_month = 0, 1, m.bday_month), IF(m.bday_day = 0, 1, m.bday_day))) AS birthdate,
SUBSTRING(me.website, 1, 255) AS website_title,
SUBSTRING(me.website, 1, 255) AS website_url, me.signature,
SUBSTRING(me.location, 1, 255) AS location,
SUBSTRING(me.icq_number, 1, 255) AS icq,
SUBSTRING(me.msnname, 1, 255) AS msn, SUBSTRING(me.aim_name, 1, 16) AS aim,
m.hide_email AS hide_email,
IFNULL(m.email_pm, 0) AS pm_email_notify,
SUBSTRING(IF(me.avatar_location = 'noavatar', '', me.avatar_location), 1, 255) AS avatar,
'' AS lngfile, '' AS buddy_list, '' AS pm_ignore_list, '' AS message_labels,
'' AS personal_text, '' AS time_format, '' AS usertitle, '' AS member_ip,
'' AS secret_question, '' AS secret_answer, '' AS validation_code,
'' AS additional_groups, '' AS smiley_set, '' AS member_ip2
FROM `wwwmundo_ipb`.ipb_members AS m
LEFT JOIN `wwwmundo_ipb`.ipb_member_extra AS me ON (m.id = me.id)
LEFT JOIN `wwwmundo_ipb`.ipb_members_converge AS mc ON (m.id = mc.converge_id)
WHERE m.id != 0
LIMIT 0, 500;
Caused the error:
Table 'wwwmundo_ipb.ipb_member_extra' doesn't exist

(I use 3.3.0 because is an automaic actualitation of the 2.3 but in this actu, the DB not changes what i can do?)
« Last Edit: April 16, 2012, 06:44:38 AM by carlospok »

Online Colin

  • Support Specialist
  • SMF Hero
  • *
  • Posts: 4,667
  • Gender: Male
  • SMF and Web Hosting Enthusiast
    • Gray Web Host
Re: Error convertion
« Reply #7 on: April 16, 2012, 08:44:34 PM »
It looks like you are missing the table noted in the error it was renamed. Can you take a look and see if that table does in fact exist?
https://www.graywebhost.com - Affordable, reliable hosting starting at $2.95 per month

Online IchBin™

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 10,918
  • Gender: Male
  • I don't speak German.
    • IchBin.us
Re: Error convertion
« Reply #8 on: April 16, 2012, 09:05:30 PM »
Please don't PM for support carlospok. As Colin pointed out, it looks like it can't find a table in your database. It's hard to understand your post though. Sounds like you are trying to use the 2.3 converter for IPB 3.3.0? You should use the proper version number for the converter to your IPB install.

Which version of IPB are you using?
Which version of the converter script from SMF are you using?
Brad "IchBin™" Grow        TinyPortal        Themes
Coding Guidelines       

Offline carlospok

  • Semi-Newbie
  • *
  • Posts: 23
Re: Error convertion
« Reply #9 on: April 17, 2012, 08:43:52 AM »
I need, a converter for the 3.3.0 version... i look it and there're only to the 3.0.0 in the IPB forum and in downlands only 2.3 :S
« Last Edit: April 17, 2012, 09:00:53 AM by carlospok »

Online IchBin™

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 10,918
  • Gender: Male
  • I don't speak German.
    • IchBin.us
Re: Error convertion
« Reply #10 on: April 17, 2012, 11:58:11 AM »
Looks like we don't have a version for 3.3. If the 3.0 converter doesn't work, you'll have to wait until we can get one updated. Sorry.
Brad "IchBin™" Grow        TinyPortal        Themes
Coding Guidelines       

Offline carlospok

  • Semi-Newbie
  • *
  • Posts: 23
Re: Error convertion
« Reply #11 on: April 17, 2012, 12:15:38 PM »
what time?


Online Colin

  • Support Specialist
  • SMF Hero
  • *
  • Posts: 4,667
  • Gender: Male
  • SMF and Web Hosting Enthusiast
    • Gray Web Host
Re: Error convertion
« Reply #12 on: April 17, 2012, 12:23:59 PM »
There isn't a release date as of now. Sorry.
https://www.graywebhost.com - Affordable, reliable hosting starting at $2.95 per month

Offline carlospok

  • Semi-Newbie
  • *
  • Posts: 23
Re: Error convertion
« Reply #13 on: April 17, 2012, 12:46:14 PM »
Uffffff...