To jest tylko wersja do druku, aby zobaczyć pełną wersję tematu, kliknij TUTAJ
phpBB2 by Przemo
Support forów phpBB2 modified by Przemo

Archiwum działu Ogólne (posty do 12.2007) - Problem z phpbb_advertisment

kondrat - 26-06-2006, 20:45
Temat postu: Problem z phpbb_advertisment
wiec tak probowalem usunac reklame i zepsulem :( mam taki komunikat Could not get entries list

Kod:
DEBUG MODE

SQL Error : 1146 Table 'blueman_psp.phpbb_advertisement' doesn't exist

SELECT * FROM phpbb_advertisement ORDER by porder

Line : 219
File : admin_advert.php


czy ktor wie co zaradzic?

Raknor - 26-06-2006, 20:48

Popraw w profilu adres do twojego forum.
Mich@ł - 26-06-2006, 21:30

Cytat:
Adres forum: ni.map.qrde

popraw adres


A tu masz rozwiazanie, wywaliłes cała tabele wiec dodaj to zapytanie:

Kod:
CREATE TABLE `phpbb_advertisement` (
  `id` mediumint(9) NOT NULL auto_increment,
  `html` text,
  `email` varchar(128) default '',
  `clicks` int(9) NOT NULL default '0',
  `position` tinyint(1) NOT NULL default '0',
  `porder` mediumint(4) NOT NULL default '0',
  `added` int(11) NOT NULL default '0',
  `expire` int(11) NOT NULL default '0',
  `last_update` int(11) NOT NULL default '0',
  `notify` tinyint(1) NOT NULL default '0',
  `type` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;



Powered by phpBB modified by Przemo © 2003 phpBB Group