RSS

Practise for physical hygienic observances.

Question : What rules should we practise for physical sadaachaar (hygienic observances) ?

We should observe the followings:-

  • Use water after passing urine.
  • Wash hands immediately after putting fingers inside mouth or nose.
  • Do not use things like clothes, towels, bed etc. used by others.
  • Do thorough cleansing of the posteriors after evacuation of bowels.
  • Keep things for daily use always clean.
  • Make appropriate arrangements to stop spreading of diseases when someone is affected.
  • Do not eat from someone’s leftover or eaten food.
  • Do not share the same plate of food with many people.
  • Always eat fruits or vegetables after thoroughly washing them.
  • Clean all the utensils with good quality soil/soap.
  • Girls in the menses should observe adequate cleanliness and maintain appropriate distance.
  • Do not take tea etc. in restaurants.
  • Do not eat outside food as far as possible.
  • After coming from outside wash your hands and feet before entering the rooms.
  • Do not handle food or enter the kitchen wearing overnight clothes.
  • Always drink water avoiding contact of the lips with the container.
  • Give up non-vegetarian food along with onion, garlic and all alcoholic beverages.
  • Do not eat from any unhygienic person’s hand.
  • Observe fasting from time to time.
  • Always wash your hands, feet and face properly before eating anything.
  • Maintain close contact with natural air, light and soil on the ground.
  • Take regular bath.
  • Lead life with moderate food along with appropriate balance between travelling, work, sleep and rest.
  • Make everyone in your surrounding follow sadaachaar.
  • Move along with others maintaining good harmony and coordination.
  • Keep yourself always energetic and ensure the same with others as well.

Apart from all these, typical to our individual characteristics, we should also try observe those things which can keep us hale and hearty.

[Ref: Alochona Prasange, Vol4, 1st Edition, p23-24 By Shri Shri Thakur ]

 
1 Comment

Posted by on May 10, 2010 in Health

 

Integrating Ckfinder plugin in CkEditor

Ckfinder plugin is a ajax file manager for the html editor like ckeditor. It is a popular plugin for uploading your files. Right now ckedior’s file uploader doesnt work fine. So you can use ckfinder for file uploading purpose.

It can be used for free. But if you want to use a licensed version  that is also possible. For this all you need to go to their home page and order for a license.

Step-1:

Download ck-finder from their home page.

Step-2:

Unzip the file and Keep ckfinder and ckeditor in the same directory.

Step-3:

To load the file uploader/browse server button in  ck-editor we just need to link up the ckfinder.js file as well as ckeditor.js file in the view file. Then put the following codes in the view file and the configure file.

a) Codes to be inserted in your view file :

<?php
     echo $javascript->link('/ckeditor/ckeditor'); //Link the ckeditor.js file on the page you want to use the editor.
     echo $javascript->link('/ckefinder/ckfinder'); //Link the ckfinder.js file on the page you want to use the editor.?>
<?php
    echo $form->textarea('content', array('id'=>'content','class'=>'ckeditor'));
?>
// we should Place this script after the textrea loads.
<script type="text/javascript">

     var ck_newsContent = CKEDITOR.replace( 'content' ); //the textarea id is given here to override the editor uploader with ckfinder.
     CKFinder.SetupCKEditor( ck_newsContent, 'ckfinder/') ;

</script>

b) Codes to be edited in the config.php file of ckfinder folder.


function CheckAuthentication()
{
   // return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized'];
   //return false;

   return true;
}

$baseUrl = 'http://localhost/bidesh/system/webroot/js/ckfinder/userfiles/';

$baseDir = 'D:\wamp/www/bidesh/system/webroot/js/ckfinder/userfiles/';

Thats it…. :)

 
20 Comments

Posted by on March 25, 2010 in CakePhp

 

My review on Magento 1.3: PHP Developer’s Guide

Last few days i was reviewing a book on magento.Magento 1.3: PHP Developer’s Guide will guide you through development with Magento module development.

It was sort of technical reading. I would say its a worth reading. The person who is in need of developing new modules on magento can have a look at this book. He will know a lot basics regarding magento module development.

The writer tells about architecture of magento, the directory structure of magento, core of magento cms and then step by step describe the in depth terms of module development. So once you start reading the book this flow of writing will help you to adopt the knowledge easily.Especially the shipping and payment module is important.

Magento 1.3: PHP Developer's Guide

Some more features like integarting third party cms  i:e wordpress is also covered in the book. Lastly Magento 1.3: PHP Developer’s Guide will help you with all the information  need to get a very solid understanding of developing with Magento.

 
Leave a comment

Posted by on March 18, 2010 in Magento

 

About reviewing a book on Magento by Packt Publishing.

I am working with magento for last few months. It is a good application for sure. I have few posts on working with magento on my blog. No of visitor’s of  those post’s  says about the popularity of  this e-commerce application.

Recently i got a email from Packt publishing . I was delighted  to know that they want me to write a review on one of their book which is written on application development with magento. The name of the book is Magento 1.3: PHP Developer’s Guide“. Here are few sample chapters of the book.

Magento 1.3: PHP Developer's Guide

I already got their pdf copy of this book(Magento 1.3: PHP Developer’s Guide) and waiting to receive their book at my address. Hope to post the review very soon too.

 
1 Comment

Posted by on February 28, 2010 in Book review

 

Ckeditor integration in cakephp

Ck-editor is a popular open source editor for web. To plug-in this editor in your cakephp application just follow the steps.

Step-1:

Download ck-editor from www.ckeditor.com/download/

Step-2:

Unzip the file and Keep your files inside webroot /js/ckeditor directory

Step-3:

To load the editor we just need to link up the ckeditor.js file in the view file. Then put a class named “ckedior” in your text area. Thats it to load the editor inside the text area.

<?php
       echo $javascript->link('/ckeditor/ckeditor'); //Link the ckeditor.js file on the page you want to use the editor.
?>
<?php echo $form->textarea('content', array('id'=>'content','class'=>'ckeditor')); ?>

 
5 Comments

Posted by on January 28, 2010 in CakePhp, PHP

 
 
Follow

Get every new post delivered to your Inbox.