Archive

Posts Tagged ‘config’

How To Change Default Search Engine In Firefox?

January 7th, 2011 admin No comments

The following content is COPIED.

Assuming that you want to change your default search engine to Bing here are the steps to do it:
Make sure you do this carefully.

1. Open about:config in Firefox
2. Search for keyword.url from the filter box.
3. Double click on this entry. It will open a dialog where you can edit the ‘keyword.url’ string.
4. Change this string to http://www.bing.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=

In case you want to change the default search engine to some other search engine like Google, Yahoo, Ask, Conduit, Altavista etc. then simply replace searchengine with the name of the search engine in the string:

“http://www.searchengine.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=“

For example in case of Google, the url will be:
“http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=“

Categories: Shareware Tags: ,

WordPress “wp_page”, provide page function in a post

November 21st, 2008 admin No comments

1. Open WordPress PHP source code: wp-includes\js\tinymce\tiny_mce_config.php, and make a backup.

2. Find string      ‘, ‘wp_more’

3. Add string after  ‘, ‘wp_more’

your source code should like this,

$mce_buttons = apply_filters(‘mce_buttons’, array(‘bold’, ‘italic’, ‘strikethrough’, ‘|’, ‘bullist’, ‘numlist’, ‘blockquote’, ‘|’, ‘justifyleft’, ‘justifycenter’, ‘justifyright’, ‘|’, ‘link’, ‘unlink’, ‘wp_more’, ‘wp_page’, ‘|’, ‘spellchecker’, ‘fullscreen’, ‘wp_adv’ ));

The red part is what you should add.

4. Upload modified PHP file wp-includes\js\tinymce\tiny_mce_config.php

5. Clear web browser cache, refresh your browser

6. When you write or manager your post, you will find new button looks like “more…” fuction, and also after it. when you move mouse over it, it will show “Insert Page Break(Alt+Shift+P)”