后台设置模板遇到问题,+打不开!!!

2016-07-07 15:23 来源:www.chinab4c.com 作者:ecshop专家

如图,点+号时提示网页上有错误!已试多次,不只问题出在什么地方,请指点!

那我先换浏览器试试了!

经本人测试,系统刚安装好的几个小时或者1,2天内是正常的!但是之后就会莫名其妙的出现问题,浏览器做下角总是有提示

有的时候是说 某行缺少" ; "这个符号;有的时候说什么意外缢出,反正错误是五花八门的
未命名.jpg 未命名2.jpg 未命名3.jpg

未命名.jpg (5.84 KB)

未命名.jpg


回答:
我用ie7

可能是浏览器的问题吧..
换个试试...

打开admim/templates/template_setup.htm文件,将selBrands[{$id}] = '{$brand|escape:quotes}';改为
selBrands[{$id}] = "{$brand|escape:quotes}";
这样再试试。

原帖由 桔子 于 2007-12-4 16:16 发表
打开admim/templates/template_setup.htm文件,将selBrands[{$id}] = '{$brand|escape:quotes}';改为
selBrands[{$id}] = "{$brand|escape:quotes}";
这样再试试。


我也遇到了这个问题,换浏览器也不不行,用了版主说的方法还是不行!

你可以pm你的后台帐号和ftp帐号,我们排查一下。

谢谢版主,帐号已经PM过去了

我就不PM了,等待问题的最后结果!

广告不能添加的打开根目录下的includes/lib_common.php文件找到function cat_list这个函数,将
  1. if ($re_type == true)
  2. {
  3. $select = '';
  4. foreach ($options AS $var)
  5. {
  6. $select .= '<option value="' . $var['cat_id'] . '" ';
  7. $select .= ($selected == $var['cat_id']) ? "selected='ture'" : '';
  8. $select .= '>';
  9. if ($var['level'] > 0)
  10. {
  11. $select .= str_repeat('&nbsp;', $var['level'] * 4);
  12. }
  13. $select .= htmlspecialchars($var['cat_name']) . '</option>';
  14. }

  15. return $select;
  16. }
复制代码

改为
  1. if ($re_type == true)
  2. {
  3. $select = '';
  4. foreach ($options AS $var)
  5. {
  6. $select .= '<option value="' . $var['cat_id'] . '" ';
  7. $select .= ($selected == $var['cat_id']) ? "selected='ture'" : '';
  8. $select .= '>';
  9. if ($var['level'] > 0)
  10. {
  11. $select .= str_repeat('&nbsp;', $var['level'] * 4);
  12. }
  13. $select .= htmlspecialchars($var['cat_name'], ENT_QUOTES) . '</option>';
  14. }

  15. return $select;
  16. }
复制代码

问题解决。按照6楼版主的方法可行。单引号换成双引号。

原帖由 voguecn 于 2007-12-4 16:06 发表
我用ie7



我也如此!一样没用!

这个问题还真有帮助.

原帖由 桔子 于 2007-12-5 11:13 发表
广告不能添加的打开根目录下的includes/lib_common.php文件找到function cat_list这个函数,将

if ($re_type == true)
{
$select = '';
foreach ($options AS $var)
{
...


我的改正之後
出現一堆錯誤碼
Warning: Cannot modify header information - headers already sent by (output started at /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/lib_common.php:1) in /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/cls_template.php on line 51

Warning: Cannot modify header information - headers already sent by (output started at /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/lib_common.php:1) in /hermes/web08/b1648/pow.cobrataiwan/htdocs/admin/includes/init.php on line 321

Warning: Cannot modify header information - headers already sent by (output started at /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/lib_common.php:1) in /hermes/web08/b1648/pow.cobrataiwan/htdocs/admin/includes/init.php on line 322

Warning: Cannot modify header information - headers already sent by (output started at /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/lib_common.php:1) in /hermes/web08/b1648/pow.cobrataiwan/htdocs/admin/includes/init.php on line 323

Warning: Cannot modify header information - headers already sent by (output started at /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/lib_common.php:1) in /hermes/web08/b1648/pow.cobrataiwan/htdocs/admin/includes/init.php on line 324

Warning: Cannot modify header information - headers already sent by (output started at /hermes/web08/b1648/pow.cobrataiwan/htdocs/includes/lib_common.php:1) in /hermes/web08/b1648/pow.cobrataiwan/htdocs/admin/includes/init.php on line 325

救命啊

这个方法没用,一样脚本错误!

遇到同样问题