linrakesh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Database ErrorAble to solve this issue after a long search. If any one get such error do not forget to contact me at [ redacted, please do not ask people to contact you on your site in these forums ], I am always there to listen you.
Forum: Themes and Templates
In reply to: Wp-andreas00 Need a new comments.phpI think you are using a buggy theme on your website. This is the single reason you are getting such a long list of errors. Try another theme or default theme on this domain and check whether you are also getting the same error or not if not then it is sure your theme has some bugs.
Forum: Fixing WordPress
In reply to: Losslessly Compressing Specific Thumbnail SizesThe problem is not with wordpress, the problem is with us who upload uncompress files to our servers and then think wordpress or any other plugin should do this for us.
So better solution is compress all your files first and then upload that files to your server, so whenever your wp script chop off the desired size, it would be automatically compressed.
Forum: Themes and Templates
In reply to: Child Theme -Major QuestionOne more question my dear friend, How theme framework manage to load their website so fast and we people when develop the same are not able to do the same. Where is the hack.?
Forum: Fixing WordPress
In reply to: Deleting postsTry to re-import. If this persist then report it here.
Forum: Fixing WordPress
In reply to: Upgrade problemsCheck out first these plugins are compatible with your new wordpress. If not then move back to your old wordpress installation.
Forum: Fixing WordPress
In reply to: Permalink Structure – How to completely delete old URL instancesFollow the step to change the Change the url structure of your page or post.
1. select you page or post and open it to edit
2. Below page title, There is permanent structure
3. edit this permanent structure and save it
4. update your post/pageenjoy your customized structure
Forum: Fixing WordPress
In reply to: Urgent WordPress Not Logincan you post screenshot of your problem.
Forum: Fixing WordPress
In reply to: Password-protect a portion of the post?Go to the Dashboard->Select all post->Under the every single post you have options:
Edit and Quick Edit->Please select Quick Edit->Now you can see the password option just under the author. Type your password and Hit the update button.This method will protect the whole page. There is no such method available in wordpress using which you can protect your half post. To do this divide your post into two part. part one is normal post having link to second password protected post. That’s it.
Forum: Fixing WordPress
In reply to: How to display archives with posts by date?Basically you need a special plgin which can arrange the whole information according to your requirement and then provide you a shortcut which you can place on a page or post.
Forum: Plugins
In reply to: Google Analytics pluginYou can try this plugin for your use.
http://ww.wp.xz.cn/extend/plugins/googleanalytics/Forum: Fixing WordPress
In reply to: This is amazingly bad! Most of my images show path to local hostMigration Specific SQL Queries
How to Change SITE URL and HOME URLWordPress stores the absolute path of the site URL and home URL in the database. Therefore, if you transfer your WordPress site from the localhost to your server, your site will not load online. This is because the absolute path URL is still pointing to your localhost. You will need to change the site URL and the home URL in order for the site to work.
Solution:
update wp_options set option_value =’http://yourwebsiteurl.com’ where option_name=’siteurl’ or option_name =’http://yoursiteurl.com’;
How to Change GUIDAfter you have migrated your blog from the localhost to your server or from another domain to a new domain, you will need to fix the URLs for the GUID field in wp_posts table. This is crucial because GUID is used to translate your post or page slug to the correct article absolute path if it is entered wrongly.
Solution:
update wp_posts set guid=replace(guid,’http://oldsite.com’,’http://newsite.com’);
How to change URL in Post-contentsWordPress uses absolute path in the URL link instead of a relative path in the URL link when storing them in the database. Within the content of each post record, it stores all the old URLs referencing the old source. Therefore you will need to change all these URLs to the new domain location.
Solution :
update wp_posts set post_content= replace(post_content,’http://oldsitename.com’,’http://newsitename.com’)
Change Image Path Only in Post ContentBy default wordpress store absolute path of the relative images and this create a lots of problem whenever we change our server. SO how to change the image paths stored in the post contents
Solution:
update wp_posts SET post_content = REPLACE (post_content, ‘src=”http://www.oldsit.com’,’src=”http://newsite.com’); The above query only change the source of images not the attachments available with that post, So issue the following query also along with the above one.
UPDATE wp_posts SET guid = REPLACE (guid,’http://www.oldsite.com’,’http://newsite.com’) WHERE post_type = ‘attachment’;
Update/Change Post MetaPost meta is also stored as the same way as your post image and other URLs ie, absolute path, so change them according to new website address
Solution:
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value,’http://www.oldsit.com’,’http://www.newsit.com’);
Please read these commands carefully. Alternatively you can google for sql queried for wordpress administrator.
sort out the problem it is due to remove http://www.rsatechnologies.in/sitemap.xml with http://rsatechnologies.in/sitemap.xml
That’s it.
same error i am getting in sitemap. Do’t know how to deal with it. Just browsing the site.
Forum: Fixing WordPress
In reply to: Side bar help pleasedo you want different sidebar on pages and on different posts. if you want such sidebar . define two different sidebar.php files. call on from page.php file and another from single.php file.