已有40人关注
第24章 应用smarty模板开发电子商务
发表在PHP图书答疑 2014-07-24
是否精华
版块置顶:
打开127.0.0.1/24/时错误提示:Error!: SQLSTATE[28000] [1045] Access denied for user 'root'@'localhost' (using password: YES)
分享到:
精彩评论 21
轻鸿_mrkj
学分:0 LV1
TA的每日心情
加油
2020-12-25 20:06:49
2014-07-25
11L
读者您好:
测试没有发现你说的这个提示信息,请问你访问的是哪个页面,做什么操作出现的?
Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\24\system\system.class.inc.php:1) in C:\AppServ\www\24\public.php on line 2
该提示是由于类似header('Content-Type:text/html;charset= UTF-8');这句代码,在发送头之前不能有任何输出,需要检查什么地方有输出。
lzytxy
学分:0 LV1
TA的每日心情
开始第一天的学习
2020-04-14 11:31:57
2014-07-26
12L
我修改了system.class.inc.php文件,<?php
//数据库连接类
class ConnDB{

var $dbtype;
var $host;
    var $user;
    var $pwd;
    var $dbname;
    
//构造方法
    function ConnDB($dbtype,$host,$user,$pwd,$dbname){
$this->dbtype=$dbtype;
     $this->host=$host;
$this->user=$user;
$this->pwd=$pwd;
$this->dbname=$dbname;
}

    //实现数据库的连接并返回连接对象
    function GetConnId(){
     
     if($this->dbtype=="mysql" || $this->dbtype=="mssql"){
     $dsn="$this->dbtype:host=$this->host;dbname=$this->dbname";
}else{
$dsn="$this->dbtype:dbname=$this->dbname";
}    
try {
     $conn = new PDO($dsn, $this->user, $this->pwd);  //初始化一个PDO对象,就是创建了数据库连接对象$pdo
$conn->query("set names utf8");
     return $conn;
} catch (PDOException $e) {
     die ("Error!: " . $e->getMessage() . "<br/>");
}

     
    }
}

//数据库管理类
class AdminDB{


function ExecSQL($sqlstr,$conn){

$sqltype=strtolower(substr(trim($sqlstr),0,6));
$rs=$conn->prepare($sqlstr); //准备查询语句
$rs->execute(); //执行查询语句,并返回结果集
if($sqltype=="select"){
$array=$rs->fetchAll(PDO::FETCH_ASSOC); //获取结果集中的所有数据
if(count($array)==0 || $rs==false)
return false;
else
return $array;
}elseif ($sqltype=="update" || $sqltype=="insert" || $sqltype=="delete"){
if($rs)
    return true;
else 
    return false;    
}
}
}
//分页类
class SepPage{
var $rs;
var $pagesize;
var $nowpage;
var $array;
var $conn;
var $sqlstr;
function ShowData($sqlstr,$conn,$pagesize,$nowpage){ //定义方法
if(!isset($nowpage) || $nowpage=="") //判断变量值是否为空
$this->nowpage=1; //定义每页起始页
else
$this->nowpage=$nowpage;
$this->pagesize=$pagesize; //定义每页输出的记录数
$this->conn=$conn; //连接数据库返回的标识
$this->sqlstr=$sqlstr; //执行的查询语句
$this->rs=$this->conn->PageExecute($this->sqlstr,$this->pagesize,$this->nowpage);
@$this->array=$this->rs->GetRows(); //获取记录数
if(count($this->array)==0 || $this->rs==false)
return false;
else
return $this->array;
}
function ShowPage($contentname,$utits,$anothersearchstr,$anothersearchstrs,$class){
$allrs=$this->conn->Execute($this->sqlstr); //执行查询语句
$record=count($allrs->GetRows()); //统计记录总数
$pagecount=ceil($record/$this->pagesize); //计算共有几页
$str.=$contentname."&nbsp;".$record."&nbsp;".$utits."&nbsp;每页&nbsp;".$this->pagesize."&nbsp;".$utits."&nbsp;第&nbsp;".$this->rs->AbsolutePage()."&nbsp;页/共&nbsp;".$pagecount."&nbsp;页";
$str.="&nbsp;&nbsp;&nbsp;&nbsp;";
if(!$this->rs->AtFirstPage())
$str.="<a href=".$_SERVER['PHP_SELF']."?page=1&parameter1=".$anothersearchstr."&parameter2=".$anothersearchstrs." class=".$class.">首页</a>";
else
$str.="<font color='#555555'>首页</font>";
$str.="&nbsp;";
if(!$this->rs->AtFirstPage())
$str.="<a href=".$_SERVER['PHP_SELF']."?page=".($this->rs->AbsolutePage()-1)."&parameter1=".$anothersearchstr."&parameter2=".$anothersearchstrs." class=".$class.">上一页</a>";
else
$str.="<font color='#555555'>上一页</font>";
$str.="&nbsp;";
if(!$this->rs->AtLastPage())
$str.="<a href=".$_SERVER['PHP_SELF']."?page=".($this->rs->AbsolutePage()+1)."&parameter1=".$anothersearchstr."&parameter2=".$anothersearchstrs." class=".$class.">下一页</a>";
else
$str.="<font color='#555555'>下一页</font>";
$str.="&nbsp;";
if(!$this->rs->AtLastPage())
$str.="<a href=".$_SERVER['PHP_SELF']."?page=".$pagecount."&parameter1=".$anothersearchstr."&parameter2=".$anothersearchstrs." class=".$class.">尾页</a>";
else
$str.="<font color='#555555'>尾页</font>";
if(count($this->array)==0 || $this->rs==false)
return "";
else
    return $str;
}
}
?>
--------------------------------------------------------------------------------
        $this->user=$root;
$this->pwd=$root;
$this->dbname=$db_database24;
这三项,其他没修改;
在浏览器输入127.0.0.1/24后,就提示
Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\24\system\system.class.inc.php:1) in C:\AppServ\www\24\public.php on line 2

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\24\system\system.class.inc.php:1) in C:\AppServ\www\24\links.php on line 2

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\24\system\system.class.inc.php:1) in C:\AppServ\www\24\newhot.php on line 2
请教一下是不是什么地方修改不正确或是还要修改其他地方呢?

轻鸿_mrkj
学分:0 LV1
TA的每日心情
加油
2020-12-25 20:06:49
2014-07-26
13L
读者您好:
建议您从本书前面章节循序渐进的学习,您修改的这三项暴露了很多的问题。
我之前给您的回复:
“在项目24/system/system.inc.php文件中将数据库密码改为您安装数据库时所设置的密码。”  更加通俗的解释为:
将system.inc.php文件中的这行代码$connobj = new ConnDB("mysql","localhost","111","db_database24");中的111改为你自己设置的数据库密码,如果你的数据库密码是root,你只需要把这行改为:
$connobj = new ConnDB("mysql","localhost","root","db_database24");这样就可以了,其他的配置不需要修改。

学习技术,建议循序渐进,一步一个脚印,搜索能力和自学能力同样的重要。
lzytxy
学分:0 LV1
TA的每日心情
开始第一天的学习
2020-04-14 11:31:57
2014-07-27
14L
问题一:前台界面用户注册成功了,但在用户登录里登录不上,请问是什么原因呢?如何解决这问题呢?具体步骤是怎样的呢?
问题二:后台界面打开了,但输入用户:mr密码:mrsoft也进入不了后台页面,请问又是什么原因呢?如何解决这问题呢?具体步骤是怎样的呢?
lzytxy
学分:0 LV1
TA的每日心情
开始第一天的学习
2020-04-14 11:31:57
2014-07-27
15L
您好!请教一下,我用IE浏览器能正常登陆上,但用搜狗浏览器就会出现以下问题
问题一:前台界面用户注册成功了,但在用户登录里登录不上,请问是什么原因呢?如何解决这问题呢?具体步骤是怎样的呢?
问题二:后台界面打开了,但输入用户:mr密码:mrsoft也进入不了后台页面,请问又是什么原因呢?如何解决这问题呢?具体步骤是怎样的呢?
轻鸿_mrkj
学分:0 LV1
TA的每日心情
加油
2020-12-25 20:06:49
2014-07-28
16L
读者您好:
请查看数据库表,确认一下,注册的用户真的存入数据表中了吗?
lzytxy
学分:0 LV1
TA的每日心情
开始第一天的学习
2020-04-14 11:31:57
2014-07-28
17L
数据库表有注册的用户存入数据表中,用IE浏览器能正常登陆上前后台网页,但用搜狗浏览器、火狐等就会出现登录不进去。您好!请教一下是什么原因呢?需要修改什么地方呢?具体步骤是怎样的呢?
轻鸿_mrkj
学分:0 LV1
TA的每日心情
加油
2020-12-25 20:06:49
2014-07-28
18L
读者您好:
经测试,该项目在火狐,搜狗浏览器上用户注册,以及前后台功能可以正常使用,请您根据自身修改程序的情况,自行检查一下代码。
lzytxy
学分:0 LV1
TA的每日心情
开始第一天的学习
2020-04-14 11:31:57
2014-07-28
19L
您好!请问前台首页的部分图片显示出现问题,不能正常显示请问是什么原因呢?解决方法是怎样的呢?具体步骤是?
轻鸿_mrkj
学分:0 LV1
TA的每日心情
加油
2020-12-25 20:06:49
2014-07-28
20L
读者您好:
经测试,该项目在前台和后台的样式显示都正常,请您根据自身修改程序的情况,自行检查一下代码。
首页上一页 123 下一页尾页 21 条记录 2/3页
手机同步功能介绍
友情提示:以下图书配套资源能够实现手机同步功能
明日微信公众号
明日之星 明日之星编程特训营
客服热线(每日9:00-17:00)
400 675 1066
mingrisoft@mingrisoft.com
吉林省明日科技有限公司Copyright ©2007-2022,mingrisoft.com, All Rights Reserved长春市北湖科技开发区盛北大街3333号长春北湖科技园项目一期A10号楼四、五层
吉ICP备10002740号-2吉公网安备22010202000132经营性网站备案信息 营业执照