• 19-07-2008, 01:47:08
    #1
    arkadaslar, yedek db yukledim ve profile girdimi, yani ucercp.php ye bu hatalarla karsilasiyorum. Neden olabilir acaba?

    database Error Database error
    The Forumiyi - Forum - Oyun - Program database has encountered a problem.
    Please try the following:
    * Load the page again by clicking the Refresh button in your web browser.
    * Open the www.xxxx.net home page, then try to open another page.
    * Click the Back button to try another link.
    The www.xxxx.net forum technical staff have been notified of the error, though you may contact them if the problem persists.

    We apologise for any inconvenience.

    ve

    <!--
    Database error in vBulletin 3.7.2:
    Invalid SQL:
    SELECT pm.*, pmtext.*, userlist_ignore.userid AS ignored
    ,icon.iconpath, icon.title AS icontitle
    FROM pm AS pm
    INNER JOIN pmtext AS pmtext ON(pmtext.pmtextid = pm.pmtextid)
    LEFT JOIN userlist AS userlist_ignore ON
    (userlist_ignore.userid = 110992 AND userlist_ignore.relationid = pmtext.fromuserid AND userlist_ignore.type = 'ignore')
    LEFT JOIN icon AS icon ON(icon.iconid = pmtext.iconid)
    WHERE pm.userid = 110992
    AND pm.messageread = 0
    ORDER BY pmtext.dateline DESC
    LIMIT 5;
    MySQL Error : Table 'xxx_forum.pmtext' doesn't exist
    Error Number : 1146
    Request Date : Friday, July 18th 2008 @ 11:54:51 PM
    Error Date : Friday, July 18th 2008 @ 11:54:51 PM
    Script : http://www.xxx.net/usercp.php
    Referrer : http://www.xxx.net/login.php?do=login
    IP Address : 84.196.100.112
    Username : xxx
    Classname : vB_Database
    MySQL Version : 
    -->
  • 19-07-2008, 10:08:29
    #2
    Üyeliği durduruldu
    MySQL Error : Table 'xxx_forum.pmtext' doesn't exist

    pmtext tablosunu bulamıyor,silinmiş veya zarar görmüştür sanırım
    tabloları onarmayı dene,olmaz ise,yedeğinden sadece pmtext tablosunu tekrardan yükle düzelir
  • 19-07-2008, 15:36:13
    #3
    öncelikle evabin icin tesekkur ederim ama yedekte sadece pm var ve pmtext yok yani bulamadim . Onu yapmak istedem ama terettüt ettim.

    Yoksa pm ile pmtext ayni tablomu?

    rootsystem adlı üyeden alıntı: mesajı görüntüle
    MySQL Error : Table 'xxx_forum.pmtext' doesn't exist

    pmtext tablosunu bulamıyor,silinmiş veya zarar görmüştür sanırım
    tabloları onarmayı dene,olmaz ise,yedeğinden sadece pmtext tablosunu tekrardan yükle düzelir
  • 19-07-2008, 19:16:11
    #4
    CREATE TABLE IF NOT EXISTS `pmtext` (
      `pmtextid` int(10) unsigned NOT NULL auto_increment,
      `fromuserid` int(10) unsigned NOT NULL default '0',
      `fromusername` varchar(100) NOT NULL default '',
      `title` varchar(250) NOT NULL default '',
      `message` mediumtext NOT NULL,
      `touserarray` mediumtext NOT NULL,
      `iconid` smallint(5) unsigned NOT NULL default '0',
      `dateline` int(10) unsigned NOT NULL default '0',
      `showsignature` smallint(5) unsigned NOT NULL default '0',
      `allowsmilie` smallint(5) unsigned NOT NULL default '1',
      PRIMARY KEY  (`pmtextid`),
      KEY `fromuserid` (`fromuserid`,`dateline`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
  • 19-07-2008, 19:42:34
    #5
    Saol tespara,

    Saolsun rootsystem'de bana msnde yardimci oldu ve sorun cozuldu.