بلاک اور ڈیٹا بیس

اظفر

محفلین
السلام علیکم
میں نے بلاگ کو ایکس ایم ایل میں ایکسپورٹ کر کے دوسرے بلاگ میں امپورٹ‌ کیا تو اس کی شکل ایسی ہو گئی ۔
اس کا کیا حل کروں اب

ڈیٹا بیس میں یو ٹی ایف کے بھی 9، 10 آپشن ان میں سے کون سا سلیکٹ‌کرنا ہے؟
 

زیک

مسافر
مائ‌ایس‌قیو‌ایل کی ورژن کونسی ہے؟

کیا نیا ڈیٹابیس utf8 کیریکٹر سیٹ استعمال کرتا ہے؟

کیا آپ کی wp-config.php میں یہ لائن موجود ہے؟

PHP:
define('DB_CHARSET', 'utf8');
 

اظفر

محفلین
کوڈ:
/** Database Charset to use in creating database tables. */

define('DB_CHARSET', 'utf8');

یہ تو موجود ہے ۔ ایس کیو ایل کا ورژن دیکھتا ہوں اب ۔
 

اظفر

محفلین
کوڈ:
-- MySQL dump 10.11
--
-- Host: localhost    Database: tvihk3qu_wrdp1
-- ------------------------------------------------------
-- Server version	5.0.67-community

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL auto_increment,
  `comment_post_ID` int(11) NOT NULL default '0',
  `comment_author` tinytext character set latin1 NOT NULL,
  `comment_author_email` varchar(100) character set latin1 NOT NULL default '',
  `comment_author_url` varchar(200) character set latin1 NOT NULL default '',
  `comment_author_IP` varchar(100) character set latin1 NOT NULL default '',
  `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_content` text character set latin1 NOT NULL,
  `comment_karma` int(11) NOT NULL default '0',
  `comment_approved` varchar(20) character set latin1 NOT NULL default '1',
  `comment_agent` varchar(255) character set latin1 NOT NULL default '',
  `comment_type` varchar(20) character set latin1 NOT NULL default '',
  `comment_parent` bigint(20) NOT NULL default '0',
  `user_id` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SET character_set_client = @saved_cs_client;
 
Top