Thursday, September 22, 2011

[DirectAdmin] Setting up Cronjob for Joomla jNewsletter


Method 1: URL access method

curl http://<domain.com>/index.php?option=com_jnews&act=cron
wget -O - http://<domain.com>/index.php?option=com_jnews&act=cron >/dev/null 2>&1
lynx -dump http://<domain.com>/index.php?option=com_jnews&act=cron >/dev/null 2>&1


If you use 'wget' is better to add the '-O -' option for don't get writed the downloaded file to the disk, only to 'stdout' and if your file is in one protected dir you can add the options '--http-user=USERNAME --http-password=PASS', see bellow:

wget -O - --http-user=USERNAME --http-password=PASS http://<domain.com>/index.php?option=com_jnews&act=cron >/dev/null 2>&1

wget, lynx or curl doesn't work?

If you having trouble getting lynx or wget to work. This may be the case if "localhost" is not permitted. Then wget, lynx or curl won't work on the local machine. Read more here http://drupal.org/node/65307.

Alternatively, you can try method 2. It works for me all the time!


Method 2: PHP file_get_contents method

Create a file script.php in public_html (or www) folder, with the following content.

<?php
#!/usr/local/bin/php
$log = 'cron.log';
$file = fopen($log,'a+');
file_get_contents("http://<domain.com>/index.php?option=com_jnews&act=cron");
fwrite($file,"Cron executed at " . date("Y-m-d H:i:s", time()) . "\n " );
fclose($file);
?>

Then add the script.php into cron job as follow.
cd /home/<user>/domains/<domain.com>/public_html/; /usr/local/bin/php script.php

php scripts aren't executable as they are unless they either have:
#!/usr/local/bin/php
at the top of the file, or you have the cron command set as:

cd /home/<user>/domains/<domain.com>/public_html/; /usr/local/bin/php script.php


Note: Adding Cronjobs

If you want a script to run every 5 minutes, it will be for every hour, of every day, of every month, so, all values will be * execept the minute. If you want every 5 of something, it would be all minutes, every 5, or */5
mintue: */5
hour: *
day of month: *
month: *
day of week: *
Detailed explanation: http://adminschoice.com/crontab-quick-reference



Resources:

(FREE) OnlineCronJobs

Joobi




References:
http://adminschoice.com/crontab-quick-reference
http://www.directadmin.com/forum/showthread.php?threadid=872
http://joobi.co/index.php?option=com_content&view=article&id=8268:jnews-cron-task&catid=93:jnews&Itemid=227#joobi
http://www.webhostingtalk.com/showthread.php?t=972255

Thursday, September 15, 2011

[Joomla] Check If user logged in

Just realize there this $my variable that conveniently lets you access the user id of a (logged in) user on the site.

if ($my->id) {
  // Do something here
}

Not something fantastic. I just realize this. :p

Wednesday, September 14, 2011

DirectAdmin Reset Folder Recursively

(This is just a not for myself.)

Parameters to append to links to reset folders recursively.
http://www.example.com:2222/CMD_FILE_MANAGER/domains/example.com/public_html/folder?action=resetowner&method=recursive

Monday, September 12, 2011

[jQuery] Mouseover Fade for all Children Element

Heres a very simple script for those who looking for jQuery script that
  • Applies mouseover / mouseout fade,
  • For all elements in a container.
Note: Just need replace the parent-class-to-apply-effect with the class of the parent container that you want to apply to.


jQuery(document).ready(function() {
	jQuery.each(jQuery('.parent-class-to-apply-effect').children(), function() {
		jQuery(this).mouseover(function() {
			jQuery(this).fadeTo('slow', 0.8);
		}).mouseout(function() {
			jQuery(this).fadeTo("slow", 1.0);
		});
	});
});

:)