• 27-06-2009, 10:15:57
    #1
    Arkadaşlar 6 gün önce yedek aldım hemen ertesi gün hosting şirketinin hdd problem oluştu haliyle veri kaybı yaşandı ... dün tüm siteler aktif edildi sorun düzeldi yeni sunucuya geçtiler . bende yedeği yükledim bigdump ile yeşil bir yazı çıktı sanırım sorunsuz yüklendi falan yazıyordu .. Sonra foruma girdim bazı yerlerde Database Error veriyor.Heryerede farklı database hataları var
    Yardım Lütfen

    Sitem



    Örnek hata :

    Alıntı
    Database error in vBulletin 3.7.1:

    Invalid SQL:

    SELECT COUNT(*)
    FROM visitormessage
    WHERE userid = 1
    AND state = 'visible'
    AND postuserid <> 1
    AND messageread = 0
    GROUP BY userid;

    MySQL Error : Table 'db name.visitormessage' doesn't exist
    Error Number : 1146
    Request Date : Saturday, June 27th 2009 @ 12:30:00 AM
    Error Date : Saturday, June 27th 2009 @ 12:30:00 AM
    Script : http://www.siteadi/usercp.php
    Referrer : http://www.siteadi.net/
    IP Address : 78.180.26.15
    Username : kullaniciadi
    Classname : vB_Database
    MySQL Version :xxx

    Birbaşka hata :


    Alıntı
    Database error in vBulletin 3.7.1:

    Invalid SQL:

    SELECT COUNT(*) AS count
    FROM moderation AS moderation
    INNER JOIN visitormessage AS visitormessage ON (visitormessage.vmid = moderation.primaryid)
    WHERE moderation.type = 'visitormessage';

    MySQL Error : Table 'dbname.visitormessage' doesn't exist
    Error Number : 1146
    Request Date : Saturday, June 27th 2009 @ 12:30:27 AM
    Error Date : Saturday, June 27th 2009 @ 12:30:27 AM
    Script : http://www.siteadi.net/admincp/index.php?do=home
    Referrer : http://www.siteadi.net/admincp/index.php
    IP Address : 78.180.26.15
    Username : kulanici adi
    Classname : vB_Database
    MySQL Version : xxxx
    Foruma KayıT OLUNCA verilen hata

    Alıntı
    Please try the following:
    Load the page again by clicking the Refresh button in your web browser.
    Open the www.siteadi.net home page, then try to open another page.
    Click the Back button to try another link.

    The www.siteadi.net forum technical staff have been notified of the error, though you may contact them if the problem persists.

    We apologise for any inconvenience.
  • 27-06-2009, 12:05:49
    #2
    sorguyu çalıştır

    CREATE TABLE IF NOT EXISTS `visitormessage` (
      `vmid` int(10) unsigned NOT NULL auto_increment,
      `userid` int(10) unsigned NOT NULL default '0',
      `postuserid` int(10) unsigned NOT NULL default '0',
      `postusername` varchar(100) collate latin1_general_ci NOT NULL default '',
      `dateline` int(10) unsigned NOT NULL default '0',
      `state` enum('visible','moderation','deleted') collate latin1_general_ci NOT NULL default 'visible',
      `title` varchar(255) collate latin1_general_ci NOT NULL default '',
      `pagetext` mediumtext collate latin1_general_ci,
      `ipaddress` int(10) unsigned NOT NULL default '0',
      `allowsmilie` smallint(5) unsigned NOT NULL default '0',
      `reportthreadid` int(10) unsigned NOT NULL default '0',
      `messageread` smallint(5) unsigned NOT NULL default '0',
      PRIMARY KEY  (`vmid`),
      KEY `postuserid` (`postuserid`,`userid`,`state`),
      KEY `userid` (`userid`,`dateline`,`state`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ;
  • 27-06-2009, 13:02:25
    #3
    Axaraylim adlı üyeden alıntı: mesajı görüntüle
    sorguyu çalıştır
    CREATE TABLE IF NOT EXISTS `visitormessage` (
      `vmid` int(10) unsigned NOT NULL auto_increment,
      `userid` int(10) unsigned NOT NULL default '0',
      `postuserid` int(10) unsigned NOT NULL default '0',
      `postusername` varchar(100) collate latin1_general_ci NOT NULL default '',
      `dateline` int(10) unsigned NOT NULL default '0',
      `state` enum('visible','moderation','deleted') collate latin1_general_ci NOT NULL default 'visible',
      `title` varchar(255) collate latin1_general_ci NOT NULL default '',
      `pagetext` mediumtext collate latin1_general_ci,
      `ipaddress` int(10) unsigned NOT NULL default '0',
      `allowsmilie` smallint(5) unsigned NOT NULL default '0',
      `reportthreadid` int(10) unsigned NOT NULL default '0',
      `messageread` smallint(5) unsigned NOT NULL default '0',
      PRIMARY KEY  (`vmid`),
      KEY `postuserid` (`postuserid`,`userid`,`state`),
      KEY `userid` (`userid`,`dateline`,`state`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ;

    Çok Teşekkürler Dostum Sorun Düzeldi
  • 27-06-2009, 13:08:34
    #4
    Tüm Sorunlar düzeldi yalnız kayıt olurken database hatası veriyor


  • 27-06-2009, 13:18:14
    #5
    vbhelp@windowslive.com ekler misin
  • 27-06-2009, 13:27:49
    #6
    Gözüme çarpan üyelik bilgilerindeki doğum tarihi oldu. Aşağıdaki sorgu işine yaramalı.
    UPDATE `forum`.`user` SET `birthday_search` = '1980-01-01 ' WHERE `user`.`userid`> 0 ;
  • 27-06-2009, 13:57:38
    #7
    alias adlı üyeden alıntı: mesajı görüntüle
    Gözüme çarpan üyelik bilgilerindeki doğum tarihi oldu. Aşağıdaki sorgu işine yaramalı.
    UPDATE `forum`.`user` SET `birthday_search` = '1980-01-01 ' WHERE `user`.`userid`> 0 ;


    malesef hata veriyor


    Alıntı
    SQL sorgusu:

    UPDATE `forum`.`user` SET `birthday_search` = '1980-01-01 ' WHERE `user`.`userid` >0

    MySQL çıktısı: Belgeler
    #1142 - UPDATE command denied to user 'kulanıcı adi'@'localhost' for table 'user'
  • 27-06-2009, 14:01:58
    #8
    register.php yi yeniden atmayı denedin mi
  • 27-06-2009, 14:04:31
    #9
    Eklentileri Deaktif Edip Denermisin üye olmayı.