ispCP - Board - Support
CronJobs whith hCron-daemon - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Contributions Area (/forum-40.html)
+--- Forum: Howtos (/forum-41.html)
+--- Thread: CronJobs whith hCron-daemon (/thread-8105.html)

Pages: 1 2 3 4


RE: CronJobs whith hCron-daemon - data-stream_ru - 02-06-2010 07:54 PM

At last time I do 2 things:

1. Change cron variables in admin area.
2. Backlighting cron time in Edit mode.

Now I write correct multilang code. And after thet i can upload new full package.
But too many files are small changes in the panel. If the code is not integrated into the panel, I will not be able to continue this project for publication.


RE: CronJobs whith hCron-daemon - data-stream_ru - 03-19-2010 02:25 AM

In new version fot ispCP 1.0.3-1 -
1. Controll in admin area
2. Multilanguage support

Installation
cd /root (or /home etc)
wget {attached file}
unpack it
cd ./ispcp-cronjob-next
open install_eng.txt and follow the instructions
This is the end of my work.
I'm tired remake the new files again and again.
I did not find understanding among the developers of this panel.
If you do not have enough free codes and instructions for self-installation, but you want to install CoroJobs on your server, please write a personal message with your suggestions. But this is no longer free: (
Meanwhile, I'm switching to a interenye my company projects associated with ispCP.
And they also will be free. Some time ... If developers want to take their panel.

-----

My regrets and best wishes.


RE: CronJobs whith hCron-daemon - Boter - 03-19-2010 09:20 AM

What about debian64? Can't compile this


RE: CronJobs whith hCron-daemon - data-stream_ru - 04-07-2010 03:12 PM

You can use 32x packet.


RE: CronJobs whith hCron-daemon - tango - 04-07-2010 03:32 PM

when it is ispcp version 1.5?


RE: CronJobs whith hCron-daemon - data-stream_ru - 04-07-2010 04:14 PM

(04-07-2010 03:32 PM)tango Wrote:  when it is ispcp version 1.5?

It's Daemon for OS.


RE: CronJobs whith hCron-daemon - WuChEn - 04-08-2010 05:48 PM

I have install on ISPCP 1.0.5.
Hrcon is running since 1.0.2.

But with the new GUI files, i have a Problem.

If i add a CronJob,
MySQL write ARRAY into the Min /Hour / Day / Month / Weekdays.
Whats wrrong?

Greatz WuChEn


RE: CronJobs whith hCron-daemon - data-stream_ru - 04-09-2010 05:53 AM

(04-08-2010 05:48 PM)WuChEn Wrote:  If i add a CronJob,
MySQL write ARRAY into the Min /Hour / Day / Month / Weekdays.
Whats wrrong?

in /gui/client/cronjobs_add.php
comment lines

$min = explode(",", $min);
foreach($min as $k => $v)
{
$min[$k] = "TR_SELECTED_MIN_".$v;
$tpl->assign(array($min[$k] => tr('selected') ));
}

$hour = explode(",", $hour);
foreach($hour as $k=>$v)
{
$hour[$k] = "TR_SELECTED_HOUR_".$v;
$tpl->assign(array($hour[$k] => tr('selected') ));
}

$day_of_month = explode(",", $day_of_month);
foreach($day_of_month as $k=>$v)
{
$day_of_month[$k] = "TR_SELECTED_DOM_".$v;
$tpl->assign(array($day_of_month[$k] => tr('selected') ));
}

$month = explode(",", $month);
foreach($month as $k=>$v)
{
$month[$k] = "TR_SELECTED_MONTH_".$v;
$tpl->assign(array($month[$k] => tr('selected') ));
}

$day_of_week = explode(",", $day_of_week);
foreach($day_of_week as $k=>$v)
{
$day_of_week[$k] = "TR_SELECTED_DOW_".$v;
$tpl->assign(array($day_of_week[$k] => tr('selected') ));
}


RE: CronJobs whith hCron-daemon - WuChEn - 04-09-2010 04:30 PM

Thanks. Smile

New Error:

Editing Cronejob, After Submint:

Notice: Undefined variable: cron_id in /var/www/ispcp/gui/client/cronjobs_edit.php on line 320

Greatz WuChEn


RE: CronJobs whith hCron-daemon - data-stream_ru - 04-09-2010 08:41 PM

Notis is not an Error.

What is in the panel?