- Go to cpanel login
- Look for Cron section
- If you know the path of the cron file in the filemanager, enter the command like below. You can set cron for minutes, hourly, daily, monthly or for weekdays.
- If you don’t know the file path then use this command and configuration. As said you can schedule the cron as you want, I have configured here to run the cron every 5 minutes.
All these solutions are collected by me for my own help. If any post is helpful for anyone ,it will be great pleasure for me. Be free to post your comments , if you are getting any help. And also you are free to give any suggestion .
Monday, July 13, 2015
Magento - set cron using cpanel
Sunday, July 12, 2015
Magento - set cron using cpanel
Magento - set cron using cpanel
wget http://www.your-site.com/cron.php >/dev/null 2>&1
In cron.php add after line 47
$isShellDisabled = true;
wget http://www.your-site.com/cron.php >/dev/null 2>&1
In cron.php add after line 47
$isShellDisabled = true;
Wednesday, July 8, 2015
jQuery- All child checkbox checked on checked in jquery
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script>
var nocon = jQuery.noConflict();
nocon(document).ready(function(){
nocon(".chk").click(function(ev) {
nocon(this).siblings('ul').find("input[type='checkbox']").prop('checked', this.checked);
ev.stopImmediatePropagation();
});
});
</script>
<ul><li><input type="checkbox" class="chk"><a href="">1</a>
<ul>
<li>
<input type="checkbox"class="chk"><a href="">2_1</a>
<ul>
<li><input type="checkbox" class="chk"><a href="">3_1</a></li>
<li><input type="checkbox" class="chk"><a href="">3_2</a></li>
</ul>
</li>
<li>
<input type="checkbox"class="chk"><a href="">2_2</a>
<ul>
<li><input type="checkbox" class="chk"><a href="">3_3</a></li>
<li><input type="checkbox" class="chk"><a href="">3_4</a></li>
</ul>
</li>
</ul>
</li>
<li><input type="checkbox" class="chk"><a href="">1</a>
<ul>
<li>
<input type="checkbox"class="chk"><a href="">2_1</a>
<ul>
<li><input type="checkbox" class="chk"><a href="">3_1</a></li>
<li><input type="checkbox" class="chk"><a href="">3_2</a></li>
</ul>
</li>
<li>
<input type="checkbox"class="chk"><a href="">2_2</a>
<ul>
<li><input type="checkbox" class="chk"><a href="">3_3</a></li>
<li><input type="checkbox" class="chk"><a href="">3_4</a></li>
</ul>
</li>
</ul>
</li>
</ul>
Wednesday, July 1, 2015
Magento- Resize Product image without white space in magento
Magento- Resize Product image without white space in magento
<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->keepFrame(false)->resize(210,210); ?>
<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->keepFrame(false)->resize(210,210); ?>
Subscribe to:
Posts (Atom)