• 21-12-2016, 00:44:14
    #1
    Arkaşlar bir script kurulumu yaptım kurulum sorunsuz tamamlandı fakat ana sayfa bu hatayı vermekte.

    Warning: Can not use UTF-8 character set.
    Reason: Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_input setting. Please refer to the PHP mbstring documentation for more information.
    
    Solution: Please set up your PHP interpreter or specify another language file in cncat_config/config.php file.
    htaccess şu şekilde :
    <FilesMatch "\.tpl$">
      Order allow,deny
      Deny from all
    </FilesMatch> 
    
    <IfModule mod_php4.c> 
    	php_flag session.use_trans_sid off
    	php_flag magic_quotes_gpc off
      php_flag register_globals off
    </IfModule>
    
    <IfModule mod_php5.c> 
    	php_flag session.use_trans_sid off
    	php_flag magic_quotes_gpc off
      php_flag register_globals off
    </IfModule>
    
    <IfModule mod_rewrite.c>
    	RewriteEngine On
    	
      RewriteRule sitemap.xml cncat_sitemap.php
      RewriteRule jump.php cncat_jump.php
    	RewriteRule ^page_([-a-z0-9_]+)\.html page.php?id=$1 [L]
    
    	RewriteCond %{REQUEST_FILENAME} !-f
    	RewriteCond %{REQUEST_FILENAME} !-d
    	
    	RewriteRule . index.php [QSA,L]
    </IfModule>
    config php dosyasıda bu şekilde yer alıyor çözüm ne olabilir ;

    $CNCAT["config"]["db"]["prefix"]="neo4_";
    $CNCAT["config"]["db"]["charset"]="utf-8";
  • 21-12-2016, 00:55:29
    #2
    Üyeliği durduruldu
    Aşağıdaki denemeleri sırasıyla yaparak sorunu aşabilirsiniz.

    1 - İlgili dizinde php.ini oluşturarak içine aşağı kodları yazın.;

    mbstring.http_input = pass ;
    mbstring.http_output = pass ;
    2- .htaccess dosyasının en alt satırına aşağıdaki kodları ekleyin.

    php_value mbstring.http_input pass
    php_value mbstring.http_output pass
    3 - index.php en üst satırına aşağıdaki kodları ekleyin.

    ini_set('mbstring.http_input', 'pass');
    ini_set('mbstring.http_output', 'pass');
    Olmaması durumunda hosting sağlayıcısına php de yukarıdaki modülleri belirtilen şekilde yapılmasını iletin.
  • 21-12-2016, 01:07:32
    #3
    teşekkürler hocam 2 aşamada oldu hazır setup lu bir scriptte bu problemi yaşamak ilginç oldu açıkcası ) ellerine sağlık hocam