<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4814708811593815321</id><updated>2011-11-28T06:07:55.540+05:30</updated><title type='text'>Linux Apache MySql Php</title><subtitle type='html'>Some Linux, Apache, Mysql &amp;amp; PHP tips</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-3370552560558374918</id><published>2011-01-04T12:24:00.000+05:30</published><updated>2011-01-04T12:24:54.261+05:30</updated><title type='text'>Disadvantages of Creating Many Tables in the Same Database</title><content type='html'>If we have many &lt;code class="literal"&gt;MyISAM&lt;/code&gt; tables in the same         database directory, open, close, and create operations are slow.         If we execute SELECT&lt;code&gt;&lt;/code&gt;&lt;a href="http://dev.mysql.com/doc/refman/5.1/en/select.html" title="12.2.8. SELECT Syntax"&gt;&lt;code class="literal"&gt;&lt;/code&gt;&lt;/a&gt; statements         on many different tables, there is a little overhead when the         table cache is full, because for every table that has to be         opened, another must be closed. We can reduce this overhead by         increasing the number of entries permitted in the table cache.&lt;br /&gt;&lt;br /&gt;We can set the table_cache value in the my.cnf file by&lt;br /&gt;set-variable = table_cache=8&lt;br /&gt;Or &lt;br /&gt;If we have the SUPER privilege then, use &lt;br /&gt;set GLOBAL table_cache=8;&lt;br /&gt;&lt;br /&gt;since the Variable 'table_cache' is a GLOBAL variable it should be set with SET GLOBAL&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-3370552560558374918?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/3370552560558374918/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=3370552560558374918' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3370552560558374918'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3370552560558374918'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2011_01_04_archive.html#3370552560558374918' title='Disadvantages of Creating Many Tables in the Same Database'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-7184626821187310299</id><published>2010-05-20T13:53:00.000+05:30</published><updated>2010-12-20T23:55:33.782+05:30</updated><title type='text'>How to add a "Share on Facebook" button to a webpage?</title><content type='html'>&lt;h2 class="answer_summary" id="answer_summary_1539893"&gt;Copy the script for the style you'd like:&lt;/h2&gt;&lt;br style="clear: both;" /&gt;                                                                                                                                                 &lt;table cellspacing="0" class="answer_segment"&gt;&lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2"&gt;                                                     &lt;div class="mywrite_content"&gt;                                                                                            Copy and paste the following code blocks into your site and replace '&amp;lt;url&amp;gt;' with the link you want to Share.&lt;br /&gt;&lt;br /&gt;Text link:&lt;br /&gt;&lt;br /&gt;&amp;lt;script&amp;gt;function fbs_click() {u=location.href;t=document.title;window.open&lt;wbr&gt;&lt;/wbr&gt;('http://www.facebook.com/sharer.php?u='+enco&lt;wbr&gt;&lt;/wbr&gt;deURIComponent(u)+'&amp;amp;t='+encodeURIComponent(t)&lt;wbr&gt;&lt;/wbr&gt;,'sharer','toolbar=0,status=0,width=626,heigh&lt;wbr&gt;&lt;/wbr&gt;t=436');return false;}&amp;lt;/script&amp;gt;&amp;lt;a rel="nofollow" href="http://www.facebook.com/share.php?u=&amp;lt;&lt;wbr&gt;&lt;/wbr&gt;;url&amp;gt;" onclick="return fbs_click()" target="_blank"&amp;gt;Share on Facebook&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;Small icon and text:&lt;br /&gt;&lt;br /&gt;&amp;lt;script&amp;gt;function fbs_click() {u=location.href;t=document.title;window.open&lt;wbr&gt;&lt;/wbr&gt;('http://www.facebook.com/sharer.php?u='+enco&lt;wbr&gt;&lt;/wbr&gt;deURIComponent(u)+'&amp;amp;t='+encodeURIComponent(t)&lt;wbr&gt;&lt;/wbr&gt;,'sharer','toolbar=0,status=0,width=626,heigh&lt;wbr&gt;&lt;/wbr&gt;t=436');return  false;}&amp;lt;/script&amp;gt;&amp;lt;style&amp;gt; html .fb_share_link { padding:2px 0  0 20px; height:16px; background:url(http://static.ak.facebook.com/&lt;wbr&gt;&lt;/wbr&gt;images/share/facebook_share_icon.gif?6:26981)&lt;wbr&gt;&lt;/wbr&gt; no-repeat top left; }&amp;lt;/style&amp;gt;&amp;lt;a rel="nofollow" href="http://www.facebook.com/share.php?u=&amp;lt;&lt;wbr&gt;&lt;/wbr&gt;;url&amp;gt;" onclick="return fbs_click()" target="_blank" class="fb_share_link"&amp;gt;Share on Facebook&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;Icon only:&lt;br /&gt;&lt;br /&gt;&amp;lt;script&amp;gt;function fbs_click() {u=location.href;t=document.title;window.open&lt;wbr&gt;&lt;/wbr&gt;('http://www.facebook.com/sharer.php?u='+enco&lt;wbr&gt;&lt;/wbr&gt;deURIComponent(u)+'&amp;amp;t='+encodeURIComponent(t)&lt;wbr&gt;&lt;/wbr&gt;,'sharer','toolbar=0,status=0,width=626,heigh&lt;wbr&gt;&lt;/wbr&gt;t=436');return  false;}&amp;lt;/script&amp;gt;&amp;lt;style&amp;gt; html .fb_share_button { display:  -moz-inline-block; display:inline-block; padding:1px 20px 0 5px;  height:15px; border:1px solid #d8dfea;  background:url(http://static.ak.facebook.com/&lt;wbr&gt;&lt;/wbr&gt;images/share/facebook_share_icon.gif?6:26981)&lt;wbr&gt;&lt;/wbr&gt;  no-repeat top right; } html .fb_share_button:hover { color:#fff;  border-color:#295582; background:#3b5998  url(http://static.ak.facebook.com/images/shar&lt;wbr&gt;&lt;/wbr&gt;e/facebook_share_icon.gif?6:26981)  no-repeat top right; text-decoration:none; } &amp;lt;/style&amp;gt; &amp;lt;a  rel="nofollow" href="http://www.facebook.com/share.php?u=&amp;lt;&lt;wbr&gt;&lt;/wbr&gt;;url&amp;gt;" class="fb_share_button" onclick="return fbs_click()" target="_blank" style="text-decoration:none;"&amp;gt;Share&amp;lt;/a&amp;gt;                                          &lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;&lt;tr&gt;     &lt;td class="sources" colspan="2"&gt;      &lt;strong&gt;Sources:&lt;/strong&gt;       &lt;a href="http://www.facebook.com/share_partners.php" rel="nofollow"&gt;http://www.facebook.com/share_partners.php&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-7184626821187310299?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/7184626821187310299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=7184626821187310299' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/7184626821187310299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/7184626821187310299'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_05_20_archive.html#7184626821187310299' title='How to add a &quot;Share on Facebook&quot; button to a webpage?'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-606487471277750537</id><published>2010-04-20T23:46:00.000+05:30</published><updated>2010-12-20T23:53:19.849+05:30</updated><title type='text'>How To Add Or Insert Orkut Post Share Button In Blogs</title><content type='html'>Orkut allows a share button feature with which website owners can extend the functionality of sharing their content with visitor friends using Orkut. It is not difficult at all to add the share button. Just follow the following guidelines and you are done. Orkut Post Share Button.&lt;br /&gt;&lt;br /&gt;Implenting Share Button In any Blog&lt;br /&gt;&lt;br /&gt;There will be a header file or any common file in your application and you need to paste the following code&lt;br /&gt;&lt;br /&gt;&amp;lt;script type="text/javascript" src="http://www.google.com/jsapi"&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; google.load('orkut.share', '1');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; google.setOnLoadCallback(function() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var params = {};&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; params[google.orkut.share.Field.TITLE] = 'Site title here';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; params[google.orkut.share.Field.DESTINATION_URL] = 'www.scriptscart.com';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var connection = new google.orkut.share.Connection(params);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementById('orkut-share').onclick =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function(e) { connection.send('orkut.com', {}); };&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, true);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now save the file and go to any other file or wherever you want to put this button and paste the following code there.&lt;br /&gt;&lt;br /&gt;&amp;lt;span id="orkut-share" style="cursor:pointer; border:0px solid black"&amp;gt;&lt;br /&gt;&amp;lt;img src="http://3.bp.blogspot.com/_eEuHGVw5WLg/SwpFfy4rMqI/AAAAAAAAAAk/jdm-zBiDdv8/s320/share.gif" alt="Share Orkut" /&amp;gt;&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&lt;br /&gt;Save the file and you are ready for using the Share Button feature of ORKUT API.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-606487471277750537?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/606487471277750537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=606487471277750537' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/606487471277750537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/606487471277750537'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_04_20_archive.html#606487471277750537' title='How To Add Or Insert Orkut Post Share Button In Blogs'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-5082204740885881325</id><published>2010-03-24T16:58:00.002+05:30</published><updated>2010-03-24T16:58:41.179+05:30</updated><title type='text'>Deprecated INI directives in php 5.3.x</title><content type='html'>• define_syslog_variables &lt;br /&gt;• register_globals &lt;br /&gt;• register_long_arrays &lt;br /&gt;• safe_mode &lt;br /&gt;• magic_quotes_gpc &lt;br /&gt;• magic_quotes_runtime &lt;br /&gt;• magic_quotes_sybase &lt;br /&gt;• Comments starting with '#' are now deprecated in .INI files.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-5082204740885881325?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/5082204740885881325/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=5082204740885881325' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5082204740885881325'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5082204740885881325'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_03_24_archive.html#5082204740885881325' title='Deprecated INI directives in php 5.3.x'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-2407427978849892779</id><published>2010-03-24T16:57:00.002+05:30</published><updated>2010-03-24T16:57:34.303+05:30</updated><title type='text'>Deprecated features in php 5.3.x</title><content type='html'>• Assigning the return value of new by reference is now deprecated. &lt;br /&gt;• Call-time pass-by-reference is now deprecated. &lt;br /&gt;• The use of {} to access string offsets is deprecated. Use [] instead.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-2407427978849892779?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/2407427978849892779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=2407427978849892779' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2407427978849892779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2407427978849892779'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_03_24_archive.html#2407427978849892779' title='Deprecated features in php 5.3.x'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-4671564716700064928</id><published>2010-03-24T16:56:00.000+05:30</published><updated>2010-03-24T16:56:35.873+05:30</updated><title type='text'>Deprecated functions in php 5.3.x</title><content type='html'>• call_user_method() (use call_user_func() instead) &lt;br /&gt;• call_user_method_array() (use call_user_func_array() instead) &lt;br /&gt;• define_syslog_variables() &lt;br /&gt;• dl() &lt;br /&gt;• ereg() (use preg_match() instead) &lt;br /&gt;• ereg_replace() (use preg_replace() instead) &lt;br /&gt;• eregi() (use preg_match() with the 'i' modifier instead) &lt;br /&gt;• eregi_replace() (use preg_replace() with the 'i' modifier instead) &lt;br /&gt;• set_magic_quotes_runtime() and its alias, magic_quotes_runtime() &lt;br /&gt;• session_register() (use the $_SESSION superglobal instead) &lt;br /&gt;• session_unregister() (use the $_SESSION superglobal instead) &lt;br /&gt;• session_is_registered() (use the $_SESSION superglobal instead) &lt;br /&gt;• set_socket_blocking() (use stream_set_blocking() instead) &lt;br /&gt;• split() (use preg_split() instead) &lt;br /&gt;• spliti() (use preg_split() with the 'i' modifier instead) &lt;br /&gt;• sql_regcase() &lt;br /&gt;• mysql_db_query() (use mysql_select_db() and mysql_query() instead) &lt;br /&gt;• mysql_escape_string() (use mysql_real_escape_string() instead) &lt;br /&gt;• Passing locale category names as strings is now deprecated. Use the LC_* family of constants instead. &lt;br /&gt;• The is_dst parameter to mktime(). Use the new timezone handling functions instead.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-4671564716700064928?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/4671564716700064928/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=4671564716700064928' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/4671564716700064928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/4671564716700064928'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_03_24_archive.html#4671564716700064928' title='Deprecated functions in php 5.3.x'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-8108782054982232783</id><published>2010-03-02T14:13:00.002+05:30</published><updated>2010-03-24T16:53:01.586+05:30</updated><title type='text'>How can I turn off MySQL strict mode? or Solving  Incorrect integer value problem with MySQL 5 strict-mode</title><content type='html'>To  turn off strict_mode in MySQL&lt;br /&gt;&lt;br /&gt;This can be done in two ways...&lt;br /&gt;&lt;br /&gt;Open your "my.ini" file within the MySQL installation directory, and look for the text "sql-mode".&lt;br /&gt;&lt;br /&gt;Find:&lt;br /&gt;# Set the SQL mode to strict&lt;br /&gt;sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"&lt;br /&gt;&lt;br /&gt;Replace with:&lt;br /&gt;&lt;br /&gt;# Set the SQL mode to strict&lt;br /&gt;sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"&lt;br /&gt;&lt;br /&gt;Or, you can run an SQL query within your database management tool, such as phpMyAdmin:&lt;br /&gt;&lt;br /&gt;SET @global.sql_mode= '';&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-8108782054982232783?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/8108782054982232783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=8108782054982232783' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8108782054982232783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8108782054982232783'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_03_02_archive.html#8108782054982232783' title='How can I turn off MySQL strict mode? or Solving  Incorrect integer value problem with MySQL 5 strict-mode'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-2318492268110030102</id><published>2010-02-17T11:51:00.000+05:30</published><updated>2010-02-17T11:53:17.318+05:30</updated><title type='text'>Function set_magic_quotes_runtime() is deprecated in PHP 5.3.0</title><content type='html'>It's better to change the error_reporting line because there are a few other deprecated functions.&lt;br /&gt;&lt;br /&gt;error_reporting(E_ALL &amp;amp; ~E_NOTICE &amp;amp; ~E_DEPRECATED);&lt;br /&gt;&lt;br /&gt;You need to wrap this in a test for PHP version 5.3 because E_DEPRECATED only became available as of 5.3.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Another method is&lt;br /&gt;&lt;br /&gt;find:&lt;br /&gt;set_magic_quotes_runtime(0);&lt;br /&gt;and replace:&lt;br /&gt;ini_set("magic_quotes_runtime", 0);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-2318492268110030102?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/2318492268110030102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=2318492268110030102' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2318492268110030102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2318492268110030102'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_02_17_archive.html#2318492268110030102' title='Function set_magic_quotes_runtime() is deprecated in PHP 5.3.0'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-854293783013705400</id><published>2010-01-15T12:02:00.001+05:30</published><updated>2010-01-15T12:02:24.623+05:30</updated><title type='text'>To view apache error log</title><content type='html'>tail -f /usr/local/apache/logs/error_log | grep betaisc&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-854293783013705400?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/854293783013705400/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=854293783013705400' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/854293783013705400'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/854293783013705400'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2010_01_15_archive.html#854293783013705400' title='To view apache error log'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-4746511977587571994</id><published>2009-12-28T10:40:00.000+05:30</published><updated>2009-12-28T10:43:16.008+05:30</updated><title type='text'>What is the difference between AIM or SIM in Authorize.Net</title><content type='html'>In SIM (Simple integration Method) customer credit card details are taken on the authorize.net site - no SSL required AIM (Advanced integration Method) Credit card details are taken over your site SSL required - please check setup instructions for more details  &lt;a href="http://www.ecommercetemplates.com/phphelp/ecommplus/authorizenet.asp" target="_blank"&gt;http://www.ecommercetemplates.com/phphelp/ecommplus/authorizenet.asp&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-4746511977587571994?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/4746511977587571994/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=4746511977587571994' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/4746511977587571994'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/4746511977587571994'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_12_28_archive.html#4746511977587571994' title='What is the difference between AIM or SIM in Authorize.Net'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-1138725888946394493</id><published>2009-11-12T11:49:00.000+05:30</published><updated>2009-11-12T11:52:32.477+05:30</updated><title type='text'>To view the exim mail log</title><content type='html'>tail -f /var/log/exim_mainlog&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-1138725888946394493?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/1138725888946394493/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=1138725888946394493' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1138725888946394493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1138725888946394493'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_11_12_archive.html#1138725888946394493' title='To view the exim mail log'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-9081758169116919079</id><published>2009-10-20T09:38:00.000+05:30</published><updated>2009-10-20T09:52:12.160+05:30</updated><title type='text'>Turn dynamic URLs into search engine friendly static URLs</title><content type='html'>The original URL&lt;br /&gt;------------------&lt;br /&gt;http://www.scriptscart.com/shop.php?cmd=product&amp;amp;category=vehicles&amp;amp;product=bus&lt;br /&gt;&lt;br /&gt;The rewritten URL&lt;br /&gt;--------------------&lt;br /&gt;http://www.scriptscart.com/product/vehicles/bus.html&lt;br /&gt;      &lt;br /&gt;&lt;p&gt;                   Add the following lines to &lt;i&gt;.htaccess&lt;/i&gt;:                 &lt;/p&gt;RewriteEngine On&lt;br /&gt;RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ /shop.php?cmd=$1&amp;amp;category=$2&amp;amp;product=$3 [L]&lt;br /&gt;&lt;p&gt;Please follow the instructions below to do it.                 &lt;/p&gt;                 &lt;ol&gt;&lt;li&gt;                     First you need to check if the file &lt;i&gt;.htaccess&lt;/i&gt; exists in                     the root of your website.                   &lt;/li&gt;&lt;li&gt;                      If the file &lt;i&gt;.htaccess&lt;/i&gt; exists, download it from your site,                     add the lines below to the end of the file, and upload the modified file                     back to your site. Please make a copy of the original file &lt;i&gt;.htaccess&lt;/i&gt;.                     So if anything goes wrong, you may restore the original file.                   &lt;/li&gt;&lt;li&gt;                     If the file &lt;i&gt;.htaccess&lt;/i&gt; does not exist, create a new file &lt;i&gt;.htaccess&lt;/i&gt;                      and add the lines below to it. Then upload it to the root of your website.                     You may delete it if anything goes wrong.                   &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-9081758169116919079?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/9081758169116919079/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=9081758169116919079' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/9081758169116919079'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/9081758169116919079'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_10_20_archive.html#9081758169116919079' title='Turn dynamic URLs into search engine friendly static URLs'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-3801098736858121133</id><published>2009-08-06T13:05:00.000+05:30</published><updated>2009-08-06T13:08:35.286+05:30</updated><title type='text'>Payment gateways test account</title><content type='html'>&lt;div&gt;Authorize.net&lt;/div&gt;&lt;div&gt;==========&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; line-height: 15px; "&gt;&lt;table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-size: inherit; line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; display: table; "&gt;&lt;tbody style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; "&gt;&lt;tr style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; display: table-row; vertical-align: inherit; "&gt;&lt;td width="638" valign="top" style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; display: table-cell; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; width: 6.65in; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: silver; padding-top: 0in; padding-right: 5.4pt; padding-bottom: 0in; padding-left: 5.4pt; background-position: initial initial; "&gt;&lt;p class="MsoNormal" style="margin-top: 0px; margin-right: 0in; margin-bottom: 10pt; margin-left: 0in; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 18px; outline-style: none; outline-width: initial; outline-color: initial; display: block; font-size: 12pt; font-family: 'Times New Roman', serif; "&gt;&lt;b style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; "&gt;&lt;span style="line-height: 13px; outline-style: none; outline-width: initial; outline-color: initial; font-size: 9pt; font-family: Arial, sans-serif; color: black; "&gt;You can use any of the following test credit card numbers.  The expiration date must be set to the present date or later:&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; display: table-row; vertical-align: inherit; "&gt;&lt;td width="638" valign="top" style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; display: table-cell; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; width: 6.65in; border-top-style: none; border-right-style: none; border-left-style: none; border-width: initial; border-color: initial; border-bottom-style: solid; border-bottom-color: black; border-bottom-width: 1pt; padding-top: 0in; padding-right: 5.4pt; padding-bottom: 0in; padding-left: 5.4pt; "&gt;&lt;p class="MsoNormal" style="margin-top: 0px; margin-right: 0in; margin-bottom: 10pt; margin-left: 0in; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 18px; outline-style: none; outline-width: initial; outline-color: initial; display: block; font-size: 12pt; font-family: 'Times New Roman', serif; "&gt;&lt;b style="line-height: 1.2em; outline-style: none; outline-width: initial; outline-color: initial; "&gt;&lt;span style="line-height: 13px; outline-style: none; outline-width: initial; outline-color: initial; font-size: 9pt; font-family: Arial, sans-serif; color: black; "&gt;370000000000002 American Express Test Card&lt;br /&gt;6011000000000012 Discover Test Card&lt;br /&gt;4007000000027 Visa Test Card&lt;br /&gt;4012888818888 second Visa Test Card&lt;br /&gt;3088000000000017 JCB &lt;br /&gt;38000000000006 Diners Club/ Carte Blanche&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;google checkout&lt;/div&gt;&lt;div&gt;===========&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; "&gt;GoogleMerchant ID : &lt;span class="Apple-style-span" style="font-family: Georgia; font-size: 16px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; "&gt;643760143118924&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; "&gt;Google Merchant Key : &lt;/span&gt;jk0ACPM8RdntndpuFbqjew&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-3801098736858121133?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/3801098736858121133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=3801098736858121133' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3801098736858121133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3801098736858121133'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_08_06_archive.html#3801098736858121133' title='Payment gateways test account'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-8094710672552231448</id><published>2009-07-01T10:29:00.001+05:30</published><updated>2010-03-18T16:38:25.515+05:30</updated><title type='text'>How to find how much free space in Hard disk Linux</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 12px; "&gt;&lt;br /&gt;"df -h"&lt;br /&gt;du -sch *&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-8094710672552231448?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/8094710672552231448/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=8094710672552231448' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8094710672552231448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8094710672552231448'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_07_01_archive.html#8094710672552231448' title='How to find how much free space in Hard disk Linux'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-8675662059647938041</id><published>2009-06-15T11:18:00.000+05:30</published><updated>2009-06-15T11:19:26.016+05:30</updated><title type='text'>How to run a crontab entry as "nobody"</title><content type='html'>&lt;span class="msg_description"&gt;&lt;p&gt;Assuming you are the root user on a Linux computer, here's a quick example of  how to run a program on a Linux system through a crontab entry, with the program  being executed as the user nobody. &lt;/p&gt;  &lt;p&gt;Just put this entry in a crontab file (by issuing the "&lt;code&gt;crontab -e&lt;/code&gt;"  command, for example), and the program named &lt;code&gt;myProgram.sh&lt;/code&gt; will be  run at 1:30 a.m. using the Bourne shell, and will be run as the user &lt;code&gt; nobody&lt;/code&gt;.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="msg_description"&gt;&lt;pre&gt;30 1 * * * su -c '/path/to/program/myProgram.sh' -s /bin/sh nobody&lt;br /&gt;&lt;br /&gt;&lt;span class="msg_description"&gt;testing is always recommended, but this has worked for me.&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-8675662059647938041?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/8675662059647938041/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=8675662059647938041' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8675662059647938041'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8675662059647938041'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_06_15_archive.html#8675662059647938041' title='How to run a crontab entry as &quot;nobody&quot;'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-6745126908918225989</id><published>2009-06-15T11:13:00.000+05:30</published><updated>2009-06-15T11:18:20.970+05:30</updated><title type='text'>How to create aliases (linux/unix)</title><content type='html'>&lt;span class="msg_description"&gt;&lt;p&gt;Creating aliases is very easy. You can either enter them at the command line as you're working, or more likely, you'll put them in one of your startup files, like your &lt;code&gt;.bashrc&lt;/code&gt; file, so they will be available every time you log in.&lt;/p&gt; &lt;p&gt;I created the &lt;code&gt;&lt;span style="font-family: Georgia,serif;"&gt;ll&lt;/span&gt;&lt;/code&gt; alias by entering the following command into my &lt;code&gt;.bashrc&lt;/code&gt; file:&lt;/p&gt; &lt;p&gt;&lt;samp&gt;alias ll="ls -al"&lt;/samp&gt;&lt;/p&gt;&lt;p&gt;&lt;samp&gt;/etc/bashrc&lt;/samp&gt;&lt;/p&gt;&lt;p&gt;&lt;samp&gt;&lt;br /&gt;&lt;/samp&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-6745126908918225989?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/6745126908918225989/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=6745126908918225989' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/6745126908918225989'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/6745126908918225989'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_06_15_archive.html#6745126908918225989' title='How to create aliases (linux/unix)'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-2563181954923048775</id><published>2009-06-01T16:18:00.000+05:30</published><updated>2009-06-01T16:19:31.490+05:30</updated><title type='text'>Restore a Mysql database from the server backup</title><content type='html'>root@testserver [/var/lib/mysql]# mysql testsite_support &lt; /backup/cpbackup/weekly/testsite/mysql/testsite_support.sql&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-2563181954923048775?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/2563181954923048775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=2563181954923048775' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2563181954923048775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2563181954923048775'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_06_01_archive.html#2563181954923048775' title='Restore a Mysql database from the server backup'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-3289165460428224838</id><published>2009-03-26T11:21:00.000+05:30</published><updated>2009-03-26T11:24:40.727+05:30</updated><title type='text'>.htaccess 301 redirection</title><content type='html'>.htaccess 301 redirection&lt;br /&gt;&lt;br /&gt;RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com [NC]&lt;br /&gt;RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Alternate method is&lt;br /&gt;&lt;br /&gt;&lt;virtualhost&gt;&lt;br /&gt;ServerName &lt;a href="http://www.seobook.com/" title="www.seobook.com"&gt;www.example.com&lt;/a&gt;&lt;br /&gt;ServerAdmin &lt;a href="mailto:webmaster@seobook.com"&gt;webmaster@example.com&lt;/a&gt;&lt;br /&gt;DocumentRoot /home/username/public_html&lt;br /&gt;&lt;/virtualhost&gt; &lt;virtualhost&gt;&lt;br /&gt; ServerName example.com&lt;br /&gt; RedirectMatch permanent ^/(.*) http://www.example.com/$1&lt;br /&gt;&lt;/virtualhost&gt;&lt;br /&gt;&lt;br /&gt;For more details refer http://www.seobook.com/archives/001714.shtml&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-3289165460428224838?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/3289165460428224838/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=3289165460428224838' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3289165460428224838'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3289165460428224838'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_03_26_archive.html#3289165460428224838' title='.htaccess 301 redirection'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-838986315604535160</id><published>2009-03-25T17:14:00.000+05:30</published><updated>2009-03-25T17:16:05.322+05:30</updated><title type='text'>To increase memory limit using .htaccess</title><content type='html'>To increase memory limit using .htaccess&lt;br /&gt;&lt;br /&gt;Put a .htaccess file with the following code in the particular directory&lt;br /&gt;&lt;br /&gt;&lt;ifmodule&gt;&lt;br /&gt;php_value memory_limit 128M&lt;br /&gt;&lt;/ifmodule&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-838986315604535160?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/838986315604535160/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=838986315604535160' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/838986315604535160'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/838986315604535160'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_03_25_archive.html#838986315604535160' title='To increase memory limit using .htaccess'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-3895579333497035970</id><published>2009-03-25T11:19:00.000+05:30</published><updated>2009-03-25T11:21:59.770+05:30</updated><title type='text'>To get the cpanel username</title><content type='html'>To get the cpanel username&lt;br /&gt;&lt;br /&gt;First login to the server as 'root' then&lt;br /&gt;&lt;br /&gt;grep domainname.com /etc/userdomains&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-3895579333497035970?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/3895579333497035970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=3895579333497035970' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3895579333497035970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/3895579333497035970'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_03_25_archive.html#3895579333497035970' title='To get the cpanel username'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-5683435697065661902</id><published>2009-03-20T11:47:00.000+05:30</published><updated>2009-03-20T12:41:53.034+05:30</updated><title type='text'>To get the file names only using grep</title><content type='html'>To get the file names only using grep command&lt;br /&gt;&lt;br /&gt;grep findword . -ir | cut -d: -f1&lt;br /&gt;&lt;br /&gt;To search in the .php files only&lt;br /&gt;&lt;br /&gt;find . -name "*.php" | grep findword -ir | cut -d: -f1&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-5683435697065661902?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/5683435697065661902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=5683435697065661902' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5683435697065661902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5683435697065661902'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_03_20_archive.html#5683435697065661902' title='To get the file names only using grep'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-5741300582703216147</id><published>2009-01-27T10:49:00.000+05:30</published><updated>2009-01-27T11:00:13.570+05:30</updated><title type='text'>How to add a user in the freeBSD using a shell script?</title><content type='html'>Adding a user in the FreeBSD using a shell script&lt;br /&gt;&lt;br /&gt;touch useradd.txt&lt;br /&gt;echo "$linux_login::::::::bash:" &gt; useradd.txt&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/usr/sbin/adduser -f useradd.txt -k $skeldir $linux_login -w no&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;sample useradd.txt file&lt;br /&gt;-----------------------&lt;br /&gt;test::::::::bash:&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-5741300582703216147?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/5741300582703216147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=5741300582703216147' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5741300582703216147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5741300582703216147'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2009_01_27_archive.html#5741300582703216147' title='How to add a user in the freeBSD using a shell script?'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-400894759597781604</id><published>2008-12-30T11:48:00.000+05:30</published><updated>2008-12-30T11:54:05.743+05:30</updated><title type='text'>How to find the php.ini path?</title><content type='html'>php -i | grep php.ini&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-400894759597781604?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/400894759597781604/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=400894759597781604' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/400894759597781604'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/400894759597781604'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_12_30_archive.html#400894759597781604' title='How to find the php.ini path?'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-6093447875428773393</id><published>2008-12-24T15:57:00.000+05:30</published><updated>2008-12-24T15:58:51.915+05:30</updated><title type='text'>Using suphp To Secure A Shared Server</title><content type='html'>http://blog.stuartherbert.com/php/2008/01/18/using-suphp-to-secure-a-shared-server/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-6093447875428773393?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/6093447875428773393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=6093447875428773393' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/6093447875428773393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/6093447875428773393'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_12_24_archive.html#6093447875428773393' title='Using suphp To Secure A Shared Server'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-6895203977878956311</id><published>2008-12-18T11:17:00.000+05:30</published><updated>2008-12-19T12:36:56.303+05:30</updated><title type='text'>How do I set up mail forwarding for individual email addresses on a domain through Plesk?</title><content type='html'>&lt;p&gt;To set up mail forwarding for individual email addresses on a domain through Plesk:&lt;/p&gt; &lt;ol&gt;&lt;li&gt;Log in to Plesk as "admin"&lt;/li&gt;&lt;li&gt;Under General, select &lt;strong&gt; Domains&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Select the domain you want to forward mail for.&lt;/li&gt;&lt;li&gt;Under Services, select the &lt;strong&gt;Mail&lt;/strong&gt; icon.&lt;/li&gt;&lt;li&gt;Under the Mail tab, select &lt;strong&gt;New Address&lt;/strong&gt;. The Create mail name window displays.&lt;/li&gt;&lt;li&gt;Enter the name of the email address you want to forward to.&lt;/li&gt;&lt;li&gt;Deselect the Mailbox checkbox. &lt;/li&gt;&lt;li&gt;Click &lt;strong&gt;OK&lt;/strong&gt;.&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;OR&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To set up forwarder for an individual email like roshith@example.com&lt;br /&gt;&lt;br /&gt;Fisrt we need the root access. After login in the shell edit following file&lt;br /&gt;&lt;br /&gt;vi /var/qmail/mailnames/example.com/roshith/.qmail&lt;br /&gt;&lt;br /&gt;Insert the following line in the .qmail&lt;br /&gt;|/usr/bin/php -q /home/supportpro/public_html/folder/parser/parser.php&lt;br /&gt;&lt;br /&gt;For more details refer&lt;br /&gt;&lt;br /&gt;http://octeth.com/kb/oempro3/mailing-list-management/bounce-tracking-module-%E2%80%93-piping-installation-instructions/&lt;br /&gt;&lt;br /&gt;http://octeth.com/data/downloads/manuals/oemPro_Piping_Setup.pdf&lt;br /&gt;&lt;br /&gt;After setting restart qmail&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-6895203977878956311?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/6895203977878956311/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=6895203977878956311' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/6895203977878956311'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/6895203977878956311'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_12_18_archive.html#6895203977878956311' title='How do I set up mail forwarding for individual email addresses on a domain through Plesk?'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-1398310936767879454</id><published>2008-12-18T11:05:00.000+05:30</published><updated>2008-12-18T11:15:48.625+05:30</updated><title type='text'>How do I create a cronjob in Plesk?</title><content type='html'>&lt;ol&gt;&lt;li&gt;Open a web browser and connect to your Plesk Control Panel located at https://ip address:8443.&lt;/li&gt;&lt;li&gt;Login as the Administrator using the information sent to you in your setup email.&lt;/li&gt;&lt;li style="text-align: left;"&gt;Click &lt;strong&gt;Server&lt;/strong&gt; from the &lt;strong&gt;System&lt;/strong&gt; menu.   &lt;/li&gt;&lt;li&gt;Click &lt;strong&gt;Crontab&lt;/strong&gt; under the &lt;strong&gt;Services&lt;/strong&gt; section. &lt;/li&gt;&lt;li&gt;Click &lt;strong&gt;A&lt;/strong&gt;&lt;strong&gt;dd New Task&lt;/strong&gt; under the &lt;strong&gt;Tools&lt;/strong&gt; section.   &lt;/li&gt;&lt;li&gt;Click &lt;strong&gt;Enable&lt;/strong&gt; / &lt;strong&gt;Disable&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Enter the appropriate information:&lt;br /&gt;Note: * indicates leaving the field empty   &lt;ul&gt;&lt;li&gt;&lt;strong&gt;Minute&lt;/strong&gt;: 0 - 59 or *&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Hour&lt;/strong&gt;: 0 - 23 or *&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Day of the Month&lt;/strong&gt;: 1 - 31 or *&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Month&lt;/strong&gt;: 1 - 12 or *&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Day of the Week&lt;/strong&gt;: 0 - 6 (0 is Sunday) or *&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Command&lt;/strong&gt;: enter the command that is to be executed&lt;/li&gt;&lt;/ul&gt;     &lt;/li&gt;&lt;li&gt;Click &lt;strong&gt;Ok&lt;/strong&gt;.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-1398310936767879454?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/1398310936767879454/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=1398310936767879454' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1398310936767879454'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1398310936767879454'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_12_18_archive.html#1398310936767879454' title='How do I create a cronjob in Plesk?'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-1710718386636664993</id><published>2008-10-22T11:13:00.000+05:30</published><updated>2008-10-22T11:16:08.434+05:30</updated><title type='text'>To get the number of files in a directory</title><content type='html'>ll | wc -l&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-1710718386636664993?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/1710718386636664993/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=1710718386636664993' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1710718386636664993'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1710718386636664993'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_10_22_archive.html#1710718386636664993' title='To get the number of files in a directory'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-2469422596779586894</id><published>2008-10-15T14:24:00.000+05:30</published><updated>2008-10-23T11:04:05.012+05:30</updated><title type='text'>cronjobs of user roshith</title><content type='html'>After login to the server to get the cronjobs of user roshith&lt;br /&gt;&lt;br /&gt;vi /var/spool/cron/roshith&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;crontab -e -u roshith&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To get cron log&lt;br /&gt;---------------&lt;br /&gt;&lt;br /&gt;tail -f /var/log/cron&lt;br /&gt;&lt;br /&gt;cat /var/log/cron | grep iscripts&lt;br /&gt;&lt;br /&gt;To list the last run cron jobs&lt;br /&gt;----------------------------&lt;br /&gt;&lt;br /&gt;vi  /var/log/cron&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-2469422596779586894?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/2469422596779586894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=2469422596779586894' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2469422596779586894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2469422596779586894'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_10_15_archive.html#2469422596779586894' title='cronjobs of user roshith'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-165998563555218822</id><published>2008-09-25T17:14:00.000+05:30</published><updated>2008-09-25T17:15:11.312+05:30</updated><title type='text'>Find a file in the linux</title><content type='html'>find . -name admindemo.tar.gz&lt;br /&gt;&lt;br /&gt;find / -name admindemo.tar.gz&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-165998563555218822?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/165998563555218822/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=165998563555218822' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/165998563555218822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/165998563555218822'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_09_25_archive.html#165998563555218822' title='Find a file in the linux'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-1208818515248010242</id><published>2008-09-25T15:58:00.000+05:30</published><updated>2008-09-25T16:08:04.311+05:30</updated><title type='text'>Repair mysql table</title><content type='html'>root@servername [/var/lib/mysql/databasename]# myisamchk -r -S *.MYI&lt;br /&gt;&lt;br /&gt;mysql&gt; use &lt;db&gt;;&lt;br /&gt;mysql&gt; REPAIR TABLE `table1`,`table2`;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-1208818515248010242?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/1208818515248010242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=1208818515248010242' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1208818515248010242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1208818515248010242'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_09_25_archive.html#1208818515248010242' title='Repair mysql table'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-4760531501596592114</id><published>2008-09-22T10:22:00.000+05:30</published><updated>2008-09-22T10:23:38.150+05:30</updated><title type='text'>Change system date in Linux</title><content type='html'>set new date to 22 Sept 2008 18:00:00, type the following command as root user:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;# date -s "2 OCT 2006 18:00:00"&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-4760531501596592114?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/4760531501596592114/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=4760531501596592114' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/4760531501596592114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/4760531501596592114'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_09_22_archive.html#4760531501596592114' title='Change system date in Linux'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-205689705445097814</id><published>2008-09-06T14:37:00.000+05:30</published><updated>2008-09-06T14:38:29.574+05:30</updated><title type='text'>Restarting Apache</title><content type='html'>/etc/init.d/httpd restart&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-205689705445097814?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/205689705445097814/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=205689705445097814' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/205689705445097814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/205689705445097814'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_09_06_archive.html#205689705445097814' title='Restarting Apache'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-2871022128099357991</id><published>2008-08-12T14:25:00.000+05:30</published><updated>2008-08-12T14:27:42.044+05:30</updated><title type='text'>Editing Samba</title><content type='html'>Edit Samba&lt;br /&gt;   vi /etc/samba/smb.conf&lt;br /&gt;&lt;br /&gt;Restarting Samba&lt;br /&gt;   /etc/init.d/smb restart&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-2871022128099357991?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/2871022128099357991/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=2871022128099357991' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2871022128099357991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2871022128099357991'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_08_12_archive.html#2871022128099357991' title='Editing Samba'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-5348959457795763417</id><published>2008-07-28T12:34:00.001+05:30</published><updated>2008-07-28T12:34:57.854+05:30</updated><title type='text'>MySQL - Restoring a Single Table from a Huge mysqldump File</title><content type='html'>http://blog.tsheets.com/2008/tips-tricks/mysql-restoring-a-single-table-from-a-huge-mysqldump-file.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-5348959457795763417?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/5348959457795763417/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=5348959457795763417' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5348959457795763417'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5348959457795763417'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_07_28_archive.html#5348959457795763417' title='MySQL - Restoring a Single Table from a Huge mysqldump File'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-8216541654945637324</id><published>2008-07-28T10:52:00.000+05:30</published><updated>2008-07-28T10:53:07.013+05:30</updated><title type='text'>Restoring a single table in Mysql</title><content type='html'>Take a backup of the table which your looking to restore using mysqldump.&lt;br /&gt; mysqldump -u&lt;username&gt; -p&lt;password&gt; &lt;databasename&gt; &lt;tablename&gt; &gt; &lt;path&gt;&lt;br /&gt;&lt;br /&gt;ex:mysqldump -usridhar -pthajes testdb usermas &gt; /home/sridhar/mysqldump/tablebackup.txt&lt;br /&gt;&lt;br /&gt;where we get only usermas table backup.&lt;br /&gt;&lt;br /&gt;for restoring to another db. use&lt;br /&gt;mysql &lt;dbname&gt; &lt; /home/sridhar/mysqldump/tablebackup.txt&lt;br /&gt;ex: mysql restDB &lt; /home/sridhar/mysqldump/tablebackup.txt .&lt;br /&gt;&lt;br /&gt;Note: If restDB has already usermas table, pls drop before restoring.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-8216541654945637324?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/8216541654945637324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=8216541654945637324' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8216541654945637324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/8216541654945637324'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_07_28_archive.html#8216541654945637324' title='Restoring a single table in Mysql'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-1102356637870395240</id><published>2008-07-12T23:19:00.001+05:30</published><updated>2008-07-12T23:19:47.313+05:30</updated><title type='text'>Starting mysql</title><content type='html'>/etc/init.d/mysqld start&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-1102356637870395240?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/1102356637870395240/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=1102356637870395240' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1102356637870395240'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/1102356637870395240'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_07_12_archive.html#1102356637870395240' title='Starting mysql'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-2290019857034788805</id><published>2008-07-12T23:15:00.001+05:30</published><updated>2008-07-12T23:15:57.162+05:30</updated><title type='text'>Restarting a cronjob</title><content type='html'>/etc/init.d/crond restart&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-2290019857034788805?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/2290019857034788805/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=2290019857034788805' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2290019857034788805'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/2290019857034788805'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_07_12_archive.html#2290019857034788805' title='Restarting a cronjob'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4814708811593815321.post-5520675825393672014</id><published>2008-07-12T23:06:00.000+05:30</published><updated>2008-07-12T23:17:09.129+05:30</updated><title type='text'>How to do scp</title><content type='html'>&lt;span id="w_.42"  style="color:#990000;"&gt;scp file.zip  root@cxcxcc.com:/home/cxcxcc/public_html/data/cxcxccxc/&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4814708811593815321-5520675825393672014?l=lampnewbies.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lampnewbies.blogspot.com/feeds/5520675825393672014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4814708811593815321&amp;postID=5520675825393672014' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5520675825393672014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4814708811593815321/posts/default/5520675825393672014'/><link rel='alternate' type='text/html' href='http://lampnewbies.blogspot.com/2008_07_12_archive.html#5520675825393672014' title='How to do scp'/><author><name>Roshith Kaniyamchalil</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_F3BbLh1Pxvo/TOjLqJ5L-JI/AAAAAAAAAhE/w9RtKG_Y9Mk/S220/DSC00605.jpg'/></author><thr:total>0</thr:total></entry></feed>
