• Rejestracja
vBHELP.pl - polskie wsparcie vBulletin
  1. #1
    mer
    mer jest nieaktywny Początkujący
    Dołączył
    Mar 2009
    Posty
    2

    Domyślnie Phpbb 3

    Mm problem mam bazę z phpbb3 i chce ją przekonwenterować impex'em ale on wywala mi że mam sprawdźić nazwę użytkownika i hasło a są one na 100000% dobre.Mam kopie bazy na hdd czy da się ją przerobić jakimś programikiem??
    edit:Connection to source server failed. Check username and password. wywala to a dane są dobre!
    Kod:
    <?php 
    if (!defined('IDIR')) { die; } 
    
    #################################################################### |; 
    # vBulletin 
    # ---------------------------------------------------------------- # |; 
    # Copyright ©2000–2008 Jelsoft Enterprises Ltd. All Rights Reserved. |; 
    # This file may not be redistributed in whole or significant part. # |; 
    # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # |; 
    # http://www.vbulletin.com | http://www.vbulletin.com/license.html # |; 
    #################################################################### |; 
    
    # The following settings allow ImpEx to connect to the vBulletin 3 
    # database into which you will be importing data. 
    
    #### 
    # 
    # TARGET - The target is the vBulletin database (where the  data is going to) 
    # 
    #### 
    
    $impexconfig['target']['server']        = 'sql.e-4gim.nazwa.pl:3305'; 
    $impexconfig['target']['user']            = 'e-4gim_2'; 
    $impexconfig['target']['password']        = 'moje chasło'; 
    $impexconfig['target']['database']        = 'e-4gim_2'; 
    $impexconfig['target']['tableprefix']    = 'vB_'; 
    
    # If the system that is being imported from uses a database, 
    # enter the details for it here and set 'sourceexists' to true. 
    # If the source data is NOT stored in a database, set 'sourceexists' to false 
    
    $impexconfig['sourceexists']            = true; 
    
    #### 
    # 
    # SOURCE - The source is the old forum database (where the  data is coming from) 
    # 
    #### 
    
    # mysql / mssql 
    $impexconfig['target']['server']        = 'sql.e-4gim.nazwa.pl:3305'; 
    $impexconfig['target']['user']            = 'e-4gim'; 
    $impexconfig['target']['password']        = 'Moje hasło'; 
    $impexconfig['target']['database']        = 'e-4gim'; 
    $impexconfig['target']['tableprefix']    = 'phpbb_'; 
    
    #### 
    # 
    # DUPLICATE CHECKING 
    # Where unique import id's are aviable ImpEx can check for duplicates with some 
    # Tier2 systems this will need to be set to false. 
    # 
    # yahoo_groups, YaBB 2.1, Ikonboard 3.1.5 (for attachments) 
    # 
    #### 
    
    define('dupe_checking', true); 
    
    ############################################################################### 
    #### 
    # 
    # ADVANCED - For a standard import or a novice user leave the settings below. 
    # 
    #### 
    
    // Advanced Target 
    $impexconfig['target']['databasetype']    = 'mysql';    // currently mysql only 
    $impexconfig['target']['charset']        = ''; 
    $impexconfig['target']['persistent']    = false;     // (true/false) use mysql_pconnect 
    
    // Advanced Source 
    $impexconfig['source']['charset']        = ''; 
    $impexconfig['source']['persistent']    = false; 
    
    # pagespeed is the second(s) wait before the page refreshes. 
    
    $impexconfig['system']['language']        = '/impex_language.php'; 
    $impexconfig['system']['pagespeed']        = 1; 
    
    define('impexdebug', false); 
    define('emailcasesensitive', false); 
    define('forcesqlmode', false); 
    define('skipparentids', false); 
    define('shortoutput', false); 
    define('do_mysql_fetch_assoc', false); 
    define('step_through', false); 
    define('lowercase_table_names', false); 
    define('use_utf8_encode', false); 
    define('use_utf8_decode', true); 
    ?>
    
    Content Relevant URLs by vBSEO 3.6.0 PL3
    Ostatnio edytowane przez mer ; 19.03.2009 o 22:17



Podobne wątki

  1. Styl z phpbb na vb
    By James in forum Konwersje
    Odpowiedzi: 3
    Ostatni post / autor: 07.06.2009, 17:13
  2. Vbulletin do phpbb
    By GetWai in forum Konwersje
    Odpowiedzi: 8
    Ostatni post / autor: 08.03.2009, 23:38
  3. dziurawe phpbb
    By cizu in forum Rozmowy webmasterów
    Odpowiedzi: 9
    Ostatni post / autor: 10.02.2009, 17:46
  4. Ataki na phpbb.com
    By modfy in forum Rozmowy webmasterów
    Odpowiedzi: 0
    Ostatni post / autor: 06.02.2009, 00:31
  5. Problem z phpBB
    By h00l in forum Rozmowy webmasterów
    Odpowiedzi: 3
    Ostatni post / autor: 24.03.2008, 17:50
Chmurka.pl

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67