Coding is Poetry,

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, ...

Think Differently,

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. ...

Logic is soul of Coding,

Here's an mp3 file that was uploaded as an attachment: Juan Manuel Fangio by Yue And here's a link to an external mp3 file: Acclimate by General Fuzz Both are CC licensed. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, ...

Nothing can compete Brain,

Some block quote tests: Here's a one line quote. This part isn't quoted. Here's a much longer quote: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In dapibus. In pretium pede. Donec molestie facilisis ante. Ut a turpis ut ipsum pellentesque tincidunt. Morbi blandit sapien in mauris. Nulla lectus lorem, varius aliquet, ...

Programming is Passion,

I'm just a lowly contributor. My posts must be approved by the editor.Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at ...

Posted by Mayank - - 0 comments

Hey Guyz,

I am coming up with some tricks that will really gonna help you. So all you have to do is just wait a bit.

My next post is coming on saturday

Till then keep learning...

Thanks!
Mayank
[ Read More ]

Posted by Mayank - - 0 comments



I needed to move a site from the sub-directory /wordpress/to the new one /blog/. I made all the possible efforts and finally I got the solution.. Below is the solution:
  1. Change the settings of the URL in two places in the General settings,
  2. Save,
  3. Go change the name of the directory using FTP (from wordpress to blog),
  4. Do a search and replace for /wordpress/ to /blog/.
Great, done. Now there will be some posts over the internet which are crawled by the Search Engines so you will just need to set up a redirect so that /wordpress/article-about-whatever/ goes to /blog/article-about-whatever/.

I uses the .htaccess file. I was hoping that the Redirection plugin could do it and it probably could, but it results in heavy data storage in database that results in slow loading of the website.. You just need to add the following code in your .htaccess file.
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^(.*)$ http://localhost/blog/$1 [L,R=301]
 Just use the above code and you are done...
[ Read More ]

Recent Posts