故障排除

当你上传一个文件到新闻模块时收到这样的消息:"不能上传这种类型的文件"

打开新闻模块的设置并选择右边的“选项”标签,检查你尝试上传得文件类型已经存在于“只允许使用这些文件扩展名的文件被上传:”列表中,该列表中的文件扩展名使用逗号分隔。默认情况下新闻只允许上传图片,你需要编辑新闻摘要模板和详情模板,用文件的链接替代显示图像。
在摘要模板和详情模板中它们看起来类似这样:
  {if $field->type == 'file'}
    <img src="{$entry->file_location}/{$field->value}"/>
  {else}
    {$field->name}: {eval var=$field->value}
  {/if}

  将它们修改成这样:

  {if $field->type == 'file'}
    Follow the link for the attachment: 
    <a href="{$entry->file_location}/{$field->value}">{$field->name}</a>
  {/if}

User Handbook/Admin Panel/News/Troubleshooting/zh

From CMSMS

Arvixe - A CMSMS Partner