English 中文(简体)
Magento Catalog Price Rules
原标题:Magento Catalog Price Rules

我的弹ata价格规则一贯失败。

他们自1.4.1起就永远失败了。 我已升至1.4.2,因为有些人说,这是固定的,不幸的是,对我来说,是 t。

日期。 晚间工作监测报告有各种任务安排和成功执行。 除催化价格规则外的一切产品。 这个问题是什么?

我建立了我的系统——和系统; 时间环境:

Generate schedules every: 60
Schedule ahead for: 1
Missed if not run within: 60
History cleanup every: 120
Success history lifetime: 120
Failure history lifetime: 120

更新编号1。 我看着我的 cr。 php档案和I见Catalogrule_apply_all在1AM中未决。 我也看到许多工作被忽略。

更新第2号。 2am catalogrule_apply_all Disappearance from cronmonitor,我认为历史已经清除,因此,我看不到任何遗漏之处。 我很相信,它会错失。

因此,现在我如何防止错失?

最佳回答

更有甚者,在进行了更多的挖掘和调查之后,我的问题最终是再解放!

引人注意的是,在更新到1.4.2之后,我仍对我的当地百分位数的1.4.1 c酸 price价格规则档案进行了一些修改,从而阻碍了规则的妥善运作。 我删除了这些内容。

之后,我还必须在配置和系统方面制定我的Cron时间表,以便:

Generate Schedules Every: 1
Schedule Ahead for: 15
Missed if Not Run Within: 120
History Cleanup Every: 1440
Success History Lifetime: 1440
Failure History Lifetime: 1440

最后三分钟为1440分钟,以便我能够看到我的警钟全天24小时。

现在摆在谷歌基地问题上。

问题回答

我建议你从你的网络浏览器上接手,然后通过该守则,打电话<代码>cron.php。 您可在数据库中人工插入cron_s subule表格中的条目,以便迫使他人执行特定的任务,例如catalogrule_apply_all。 在<代码>Mage_Catalog 细则_Model_观察员:dailyCatalogUpdate($observe)内设置一个空白点,并通过该密码加以追踪。

这将使你能够孤立这一问题,并(全心全意)解决问题。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签