Which Point Using in Acupuncture for Diabetes?

http://www.yinyanghouse.com/treatments/acupuncture_for_diabetes

http://www.acupunctureamerica.com/acupuncture_diabetes.html

http://www.pharmainfo.net/reviews/application-acupuncture-therapy-diabetes-mellitus-patients

http://tcm.health-info.org/Acupunture/treatment/Xiao-Ke.htm

http://www.free-symptoms-of-diabetes-alert.com/type2diabetes.html

http://www.amcollege.edu/diabeticacupuncture.htm

http://www.itmonline.org/journal/arts/diabetes.htm

http://peacefulpoints.com/acupuncture_and_diabetes.html

http://www.diabetter.info/diabetes/54/acupuncture-treatment-in-diabetes-reduce-blood-sugar/

How to refersh css file in drupal?

Hi,

Sometime the css not view correctly in drupal.

That time you need to change the Performance settings.

1. You Login to Admin.
2. Click  to Admin OR Administer
3. Click Site Configuration OR Settings
4. Click Performance

now you change the Css Cache Permission Disabled.

And Clear already cahed information.

then its working fine.

How to get Like Box in Facebook?

Hi its is very easy to find.

Anybody want Likebox image view in your site. You go belwo url :

http://developers.facebook.com/docs/reference/plugins/like-box/

1. You change facebook url  address (http://www.facebook.com/alltechdesigns)

2. And change your size.

3. change your facebook like view.

4. Finally click your Get Code.

that’s all you can get your facebook likebox script in your side.

How to create page excerpt in WP?

Add Below line for functions.php inside :

add_post_type_support('page', 'excerpt');

after added above code, the excerpt will show you.

How to solve Magento Internal server error?

Hi,

Just give permission for index.php –> 755.

this is working for me. I search this issue from google via.

enjoy all. 🙂

How to Remove Cart Sidebar in Magento Sidebar?

Take this below content, This is useful for all.

Remove sidebar only (leave functionality available)
ADMIN: System → Configuration → Checkout tab → Shopping Cart Sidebar panel. Set “Display Shopping Cart Sidebar” to “No.”

I find this below url via:
http://www.magentocommerce.com/knowledge-base/entry/turning-on-off-magentos-content-blocks/

How to Image Rotating in Javascript?

Hi Below I mention full code, Who want this take and enjoy.

Insert the html or php file inside below body tag:

<!– Slider Start –>
<script type=”text/javascript”>// <![CDATA[
document.write(‘<style  type=”text/css” _mce_bogus=”1″> #rotator li { display: none; } </style>’);
// ]]></script>
<script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js” type=”text/javascript”></script>
<script src=”your_path/js/rotator.js” type=”text/javascript”></script>
<div id=”rotator_wrapper”>
<ul id=”rotator”>
<!– This type for Magento : “{{skin url=’images/banner/road_cycling_img.jpg’}}” –>
<li id=”photo_1″><img src=”{{skin url=’images/banner/road_cycling_img.jpg’}}” alt=”Photo” /> </li>
<li id=”photo_2″><img src=”your_path/images/banner/road_cycling_img1.jpg” alt=”Photo” /> </li>
<li id=”photo_3″><img src=”{{skin url=’images/banner/road_cycling_img.jpg’}}” alt=”Photo” /> </li>
<li id=”photo_4″><img src=”your_path/images/banner/road_cycling_img1.jpg” alt=”Photo” /> </li>
</ul>
<ul id=”rotator_controls”>
<li><a href=”#photo_1″>1</a> </li>
<li><a href=”#photo_2″>2</a> </li>
<li><a href=”#photo_3″>3</a> </li>
<li><a href=”#photo_4″>4</a> </li>
</ul>
<div>&nbsp;</div>
<div id=”rotator_play_pause_div”><a id=”rotator_play_pause” href=”#”>PAUSE</a></div>
</div>
<!– Slider End –>

And Paste your CSS in your Stylesheet file inside :

/*** Rotator Image Start ***/
/*********** — **********/

/* `Rotator >> `Wrapper
—————————————————————————————————-*/

#rotator_wrapper {
overflow: hidden;
position: relative;
width: 579px;
height: 255px;
margin:0 auto 10px auto;
z-index:100;
}

#rotator_wrapper li {
list-style: none;
}

/* `Rotator
—————————————————————————————————-*/

#rotator,
#rotator li,
#rotator img {
width: 579px;
height: 255px;
}

#rotator {
background: #fff;
position: relative;
}

#rotator li {
position: absolute;
top: 0;
left: 0;
}

/* `Rotator >> `Controls
—————————————————————————————————-*/

#rotator_controls {
overflow: hidden;
position: absolute;
bottom: 10px;
right: 80px;
padding:5px;
}

#rotator_controls li {
display: inline;
float: left;
margin: 0 0 0 5px;
width: 30px;

}

#rotator_play_pause,
#rotator_controls a {
background:#575757;
border: 1px solid #3C3C3C;
color: #fff;
display: block;
font: bold 11px Verdana, sans-serif;
/*padding: 1px 10px 4px;*/
padding:7px;
text-align: center;
text-decoration: none;
}
#rotator_play_pause{
width:54px;
/*padding:1px 0 4px 0;*/
padding:7px 5px;
text-align:center;
}
#rotator_controls a.current {
color: #fff;
text-decoration: none;
background:#1676DF;
border: 1px solid #3C3C3C;
}

#rotator_play_pause:hover,
#rotator_controls a:hover {
background: #1676DF;
border: 1px solid #3C3C3C;
color: #fff;
}

#rotator_play_pause_div {
position: absolute;
bottom: 8px;
right: 10px;
/*padding: 5px 4px 5px 4px;*/
padding:7px 3px;
display: block;
}

/* For IE6. */
* html #rotator_play_pause,
* html #rotator_controls a {
height: 1%;
}

/*********** — **********/
/*** Rotator Image End ***/

And Paste Your Javascript File Inside this :

// Initialize.
var $j = jQuery.noConflict();
function init_rotator() {

// Does element exist?
if (!$j(‘#rotator’).length) {

// If not, exit.
return;
}

// Rotate speed.
var speed = 2000;

// Pause setting.
var pause = false;

// Rotator function.
function rotate(element) {

// Stop, if user has interacted.
if (pause) {
return;
}

// Either the next /first <li>.
var $jnext_li = $j(element).next(‘li’).length ? $j(element).next(‘li’) : $j(‘#rotator li:first’);

// Either next / first control link.
var $jnext_a = $j(‘#rotator_controls a.current’).parent(‘li’).next(‘li’).length ? $j(‘#rotator_controls a.current’).parent(‘li’).next(‘li’).find(‘a’) : $j(‘#rotator_controls a:first’);

// Animate.
$j(‘#rotator_controls a.current’).removeClass(‘current’);
$jnext_a.addClass(‘current’);

// Continue.
function doIt() {
rotate($jnext_li);
}

// Fade out <li>.
$j(element).fadeOut(speed);

// Show next <li>.
$j($jnext_li).fadeIn(speed, function() {

// Slight delay.
setTimeout(doIt, speed);
});
}

// Add click listeners for controls.
$j(‘#rotator_controls a’).click(function() {

// Change button text.
$j(‘#rotator_play_pause’).html(‘PLAY’);

// Show target, hide other <li>.
$j($j(this).attr(‘href’)).show().siblings(‘li’).hide();

// Add and remove from all others.
$j(this).addClass(‘current’).parent(‘li’).siblings(‘li’).find(‘a’).removeClass(‘current’);;

// Pause animation.
pause = true;

// Nofollow.
this.blur();
return false;
});

// Pause / Play the animation.
$j(‘#rotator_play_pause’).click(function() {

// What does the button say?
if ($j(this).html() === ‘PAUSE’) {

// Stop rotation.
pause = true;

// Change the text.
$j(this).html(‘PLAY’);

} else {

// Remove.
pause = false;

// Start the rotation.
rotate(‘#rotator li:visible:first’);

// Change the text.
$j(this).html(‘PAUSE’);
}

this.blur();
return false;
});

// Hide all but first <li>.
$j(‘#rotator li:first’).show();

// Wait for page load.
$j(window).load(function() {

// Begin rotation.
rotate($j(‘#rotator li:visible:first’));
});
}

// Kick things off.
$j(document).ready(function() {
init_rotator();
});

that is all now, you are ready to start your rotating image work.

welcome all :).

தண்ணீரின் நான்கு முக்கிய பணிகள்

தண்ணீரானது உடலில் நான்கு விதமான முக்கிய வேலைகளைச் செய்கிறது. அவற்றைத் தெரிந்து கொண்டு, ஒவ்வொரு மனிதனும் செயல்பட்டால் நோயற்ற வாழ்வு வாழலாம்.

தண்ணீரின் நான்கு முக்கியப் பணிகள்:

1. தண்ணீரானது உடலில் இருந்து ஜீவ சத்துக்களைக் கரைத்து திரவ ரூபமாக சரீரத்திலுள்ள ஜீவ அணுக்களுக்கு (செல்) எடுத்துச் செல்லும் மிக முக்கியப் பணியைச் செய்கிறது.

2. தண்ணீரானது உடலினுள் உற்பத்தியாகும் ரசாயனப் பொருள்களுடன் சேர்ந்து கரைந்து சரீரம் முழுவதும் பரவுவதற்கு அத்தியாவசியமானதாகிறது.

3. தண்ணீரானது உடலின் சீதோஷ்ண நிலையை ஒரே சீராக அதிக சூடாகாமலும், அதிக குளிர்ச்சியாகாமலும் கட்டுப்படுத்தி சம சீதோஷ்ண நிலையை சரீரத்தில் பராமரித்து வருகிறது.

4. அத்துடன் நுரையீரல் வழியாகவும் சருமங்கள் வழியாகவும் அழுக்குகளை வேர்வை மூலமாகவும் சளி மூலமாகவும் வெளியேற்றுகிறது. சிறுநீர் மூலம் அழுக்குகளை எடுத்துச் செல்லவும் உதவுகிறது.

தண்ணீரின் முக்கியத்துவம்

தண்ணீரானது உயிராதாரத்துக்கு அஸ்திவாரமாகவும் தேவையில்லாத கழிவுகளை உடலிலிருந்து அகற்றவும் மிகவும் அத்தியாவசியமானதாக இருக்கிறது.

தண்ணீர் தேவைப்படாத ஜீவராசிகளே உலகில் இல்லை என்று கூடச் சொல்லாம்.

ஒரு கட்டடம் கட்ட வேண்டுமானால், நாம் முதலில் அந்த இடத்தில் வளர்ந்துள்ள தேவையில்லாத செடி கொடிகளை அகற்றியும், தரையை சமன்படுத்தியும் கற்கள் அமைப்புக்குத் தகுந்தவாறு கல்-மண்-சிமெண்ட் இவற்றைக் கொண்டு உறுதியாக அஸ்திவாரம் போடுகிறோம்.

அப்போதுதான் அதன் மேலே கட்டப்படும் கட்டடம் உறுதியாக காற்று – மழை, போன்ற இயற்கை சீற்றங்களை எதிர்த்து வலுவாக நிற்கும்.

ஆனால், மனிதன் தனது உடல் சுகாதரத்தை நன்றாக வைத்துக் கொள்வதற்குத் தேவையான அஸ்திவாரத்தை சரியானபடி போடுவதில்லை. அதனால் மருந்துகளையும், மாத்திரைகளையும், டானிக்குகளையும் நம்பி வாழ்கிறான்.

தனது சரிரத்தில் இருக்கும் குப்பைகளையும், கழிவுகளையும் அகற்றுவதற்கான எந்த முயற்சியையும் முன்கூட்டியே செய்வதும் இல்லை.

பரிதாபகரமாக, மனிதன் தான் சாப்பிடும் உணவுப் பொருள்களின் கழிவுகளையும் மற்றும் சரீரத்தில் உற்பத்தியாகும் மற்ற கழிவுகளையும் பற்றிக் கொஞ்சம் கூடக் கவலையில்லாமல் மிகவும் ருசியான உணவு வகைகளையும் பான வகைகளையும் சாப்பிடுவதன் மூலம் அவற்றையும் தனது வயிறாகிய குப்பைத் தொட்டியில்தான் கொட்டிக் கொண்டிருக்கிறான்.

சாப்பிட்ட உணவுப் பொருள்கள் சில நிமிடங்களிலேயே உள்ளே செயல்பட ஆரம்பித்து அழுக ஆரம்பித்து 24மணி நேரத்தில் நாற்றமெடுக்கும் கழிவாக மாறி விடுகிறது.

இத்தகைய ஜீரணமாகாத உணவுப் பொருள்களாலும் மற்ற திரவங்களாலும் நிரம்பியிருக்கும் வயிற்றில் மேலும் மேலும் உணவுகளைத் திணித்துக் கொண்டிருக்கிறோம்.

சாப்பிட்ட உணவு சரியாக செரிமானமாகி அதன் கழிவுகள் முற்றிலும் அகற்றப்பட்டுவிட்டதா என்பதை கவனிக்க நேரமில்லாமல் மனிதன் செயல்படுகிறான்.

அதனால் இத்தகைய குப்பைகள் உடலில் அதிகம் சேரச் சேர, பலவிதாமான நோய்களுக்கு ஆளாகிறான்.

சத்தான உணவுகள், வாய்க்கு ருசியான உணவுகள் என்று சாப்பிட்டுவிடுவதால் மட்டும் தேகம் ஆரோக்கியமாகி விடாது.

அதன் கழிவுகளும் உடம்பில் இருந்து வெளியேறினால்தான் மனிதன் சௌகரியமாக நோயின்றி வாழலாம்.

இது தினசரி நடக்கும் முக்கிய பணியாகும். மனிதன் வாழ்வதற்கு தினசரி ஆகாரம் சாப்பிட்டுத்தான் ஆக வேண்டும். தண்ணீர் குடித்துதான் ஆகவேண்டும்.

ஏழை – பணக்காரன் என்ற வித்தியாசமில்லாமல் பசிக்குச் சாப்பிட்டுத்தான் வாழ வேண்டியிருக்கிறது.

முக்கியமாக சாப்பிட்ட உணவுகள் நல்லபடியாக செரிமானம் ஆவதற்கு தண்ணீர் அவசியம் வேதவைப்படுகிறது.

செரிமானமாவதற்கு மட்டுமல்லாமல், சரீரத்தில் இரத்த ஓட்டம் தங்கு தடையின்றி நடைபெறுவதற்கும், பிராண சக்திகள் தண்ணீரில் இருந்து சரீரத்துக்குக் கிடைக்கவும் தண்ணீர் மிக அத்தியாவசியமாகத் தேவைப்படுகிறது.

அத்துடன் இல்லாமல் சரீரத்தில் உற்பத்தியாகும் கழிவுகளை, மலம் – மூத்திரம் – வியர்வை – சளி போன்றவற்றை வெளியேற்றவும், உடம்பை சுகாதாரமாக வைக்கவும் தண்ணீர் மிகவும் அவசியமாகிறது.

— தொடரும் —

இந்த புத்தகத்தை எழுதியவர் :
மதிப்பிற்குரிய நட. பரணீதரன் (இயற்கை வைத்தியர் மற்றும் யோகா பயிற்சியாளர்) அவர்கள் ஆவர்.

இந்த புத்தகம் பிரதி வேண்டும் என்று நினைபவர்கள்.
நர்மதா பதிப்பகம், சென்னை – 600 017 – ல் வாங்கிக்கொள்ளலாம். அல்லது உங்கள் அருகில் உள்ள புத்தக கடைகளில் கேட்டு வாங்கிக் கொள்ளலாம்.

How to change language Manually in Magento?

1. Enter your Magento admin panel
2. Then go to “System”
3. Select “Cache Management”
4. Disable cache for “Translations”
5. Then go to the “System > Configuration > Developer” page
6. Expand the “Translate Inline” tab and enable it
7. Save the changes

Now you can see that some text blocks are in red boxes so that you can edit them. You can change text in the admin panel and at the front end.
NOTE: the change won’t affect .csv files; it’ll be saved in your database.

© 2020 Spirituality