Drupal imagecache 第一次不工作


Drupal imagecache is not working for the first time

我正在为时事通讯中的横幅图像使用图像缓存。正在上传图像并将其发送到邮件。问题是图像不是第一次加载。如果我再次来编辑页面,它将发送带有正确图像的邮件

$output = "
<html>
   <body>";
$output.= theme( 'imagecache', 'banner_img', 'images/motel_wright-1.1.png', 'Wright Motel', 'Wright Motel' );
$output.= "
   </body>
 </html>";
 print $output;

请帮助我

我也有类似的问题。几点建议:

1) 当您使用主题功能时,您可能需要重建注册表。尝试

http://api.drupal.org/api/drupal/includes!theme.inc/function/drupal_theme_rebuild/7

2)如果上述失败,您将需要使用xdebug并找出drupal中的哪个函数首先没有被触发。

请在此处发布您的发现。