আমি Sonkosil.com এর এ্যডমিন ।
আমি Forum.sonkosil.com এ wordpress install করে এখানে ব্লগিং করতাম ।
আজকে এই সাবডোমেইন টির নাম পরিবর্তন করে blog.sonkocil.com করেছি ।
ডাটাবেজ blog এর মধ্যে transfer করেছি ।
এখন আমি এই সাবডোমেইন এ (blog.sonkocil.com) এ লগিন করতে পারছি । কিন্তু বাইরে থেকে পোষ্টগুলো দেখা যাচ্ছে না । ফ্রেশ সাদা পেইজ আসছে ।
এই সমস্যার সমাধান জানা থাকলে বলুন ।
Plz Plz Plz
আমি Parvez_। বিশ্বের সর্ববৃহৎ বিজ্ঞান ও প্রযুক্তির সৌশল নেটওয়ার্ক - টেকটিউনস এ আমি 12 বছর 10 মাস যাবৎ যুক্ত আছি। টেকটিউনস আমি এ পর্যন্ত 4 টি টিউন ও 9 টি টিউমেন্ট করেছি। টেকটিউনসে আমার 0 ফলোয়ার আছে এবং আমি টেকটিউনসে 0 টিউনারকে ফলো করি।
To update WordPress options with the new blog location, use the following SQL command:
UPDATE wp_options SET option_value = replace(option_value, ‘http://www.old-domain.com’, ‘http://www.new-domain.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
After that you will need to fix URLs of the WordPress posts and pages, which translated from post slug, and stored in database wp_posts table as guid field. The URL values in this field are stored as absolute URLs instead of relative URLs, so it needs to be changed with the following SQL query:
UPDATE wp_posts SET guid = replace(guid, ‘http://www.old-domain.com’,’http://www.new-domain.com’);
If you have linked internally within blog posts or pages with absolute URLs, these links will point to wrong locations after you move the blog location. Use the following SQL commands to fix all internal links to own blog in all WordPress posts and pages:
UPDATE wp_posts SET post_content = replace(post_content, ‘http://www.old-domain.com’, ‘http://www.new-domain.com’);
PhPMy admin a লগিন করে ডাটাবেজে এই কোয়েরি গুলো চালাতে হবে, উপরে শুধু ডোমেইন নেম পরিবর্তন হবে