没有权限就放开权限,你用的是win2000吧?将目录的访问权限的everyone设为可读.

解决方案 »

  1.   

    将目录的everyone的访问权限的设为最少可写.sorry
      

  2.   

    CGI Error
    The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
      

  3.   

    Cannot send session cache limiter - headers already sent (output started
      

  4.   

    Warning: Cannot send session cookie - headers already sent by Warning: Cannot send session cache limiter - headers already sent为什么会出现这种的错误
    我的code:
    session_start();
    if(isset($Login)) 
    {
    if($userName="" ||$password="")
    $err="用户名和密码不能为空!";
    else
    {
    if($userName="phpAdmin" && $password="isAdmin")
    {
    session_register('phpLogined');
    $phpLogined="logined";
    echo "login!";
    }else
    {
    $err="用户名或密码错误!";
    }

    }}
      

  5.   

    第一个warning:session 前面有了输出的内容,比如说echo "hello";
    第二个warning:
      cache limiter控制缓存以控制象客户端输出的http头信息,它决定了页面内容是放入缓存的规则(rule),如果设置成nocache,那么就禁止任何客户端的caching,如果设置成public,那么你的全局变量就允许cache(允许放入缓存)
    There is a bug(?) in Internet Explorer v5.5 to do with file downloads over
    a secure (https) web connection when using sessions. If you have a php
    script which delivers files for downloading by setting headers for the
    content-type etc. from a URL like this:getfile.php/filename.ext
    - or -
    getfile.php?file=/filename.extand that script uses sessions, then you must explicitly setsession_cache_limiter('public');*before* you use
    session_start();
    所以,设置session_cache_limiter('public');可解决第二个问题
      

  6.   

    你在session_start()前面写一个session_save_path("记录路径");用来指定它的保存路径试试看,估计是你的session找不到保存路径