• 05-07-2007, 11:17:39
    #1
    impex ile phpbb 2 yi vbulletine çevirdim mesajlarda konularda sorun yok... Ama üye profiline tıklayınca şöyle bir veritabanı hatası alıyorum

    Alıntı
    Database error in vBulletin 3.6.x:

    Invalid SQL:

    SELECT pf.profilefieldid, pf.profilefieldcategoryid, pf.required, pf.type, pf.data, pf.def, pf.height
    FROM profilefield AS pf
    LEFT JOIN profilefieldcategory AS pfc ON(pfc.profilefieldcategoryid = pf.profilefieldcategoryid)
    WHERE pf.form = 0
    ORDER BY pfc.displayorder, pf.displayorder;

    MySQL Error : Table 'xxxxxxx_xxxxxx.profilefieldcategory' doesn't exist
    Error Number : 1146
    Date : Thursday, July 5th 2007 @ 11:14:54 AM
    Script : http://xxxxxxxxxxxxxxmember.php?u=1
    Referrer : http://xxxxxxxxxxx
    IP Address : xxxxxxx
    Username : xxxxxx
    Classname : vb_database

    forum versiyonunu güncelledim sorun giderildi...
  • 06-07-2007, 14:02:50
    #2
    Aşağıdaki sorguyu çalıştır

    CREATE TABLE `profilefieldcategory` (
      `profilefieldcategoryid` smallint(5) unsigned NOT NULL auto_increment,
      `displayorder` smallint(5) unsigned NOT NULL,
      PRIMARY KEY  (`profilefieldcategoryid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;