文错误提示:PHP Notice: Undefined index: etype in F:\wwwroot\php\admin\ewebeditor\ewebeditor.php on line 2
错误文件位置:/admin/ewebeditor/ewebeditor.php
错误表现:后台广告代码编辑器无法显示
解决方法:编辑/admin/ewebeditor/ewebeditor.php文件
改前:
<?php
header("location:../kindeditor.php?id=$_GET[id]&style=$_GET[style]&etype=$_GET[etype]");exit;
?>
改后:
<?php
header("location:../kindeditor.php?id=$_GET[id]&style=$_GET[style]");exit;
?>
保存后,上传覆盖。