0

我有下面的 php,它在 localhost apache 服务器(WAMP 服务器)上的工作方式各不相同,但是当我在没有任何原因或错误的情况下将它放到网上时,它就无法完成它的工作!请需要一个答案,虽然我会更改我的托管服务器,但我不喜欢他们的服务,因为有许多功能被禁用。(更新:我有一个“html 代码”,这是该代码应该登录的配置文件。配置文件 html 在 php 之后。即使用户和密码正确,这个 php 也有显示死亡消息的问题。这个问题仅在在线服务器上


<?php

function password($username='noneuser') {

  $tegjitha=file_get_contents("pasetkkadmin.txt");
  $infot=preg_split('/'.PHP_EOL.'/',$tegjitha,-1,PREG_SPLIT_NO_EMPTY);
  $final=null;
  foreach ($infot as $info) {
    $pos=preg_split('/:/',$info,-1,PREG_SPLIT_NO_EMPTY);

    if ($pos[0]==$username){
      $final=$pos[1];
    }

  }
  return $final;


}


function isuser($input) {
  $tegjitha=file_get_contents("pasetkkadmin.txt");
  $infot=preg_split('/'.PHP_EOL.'/',$tegjitha,-1,PREG_SPLIT_NO_EMPTY);
  $rezultati=false;
  foreach ($infot as $info) {
    $pos=preg_split('/:/',$info,-1,PREG_SPLIT_NO_EMPTY);
    if ($input==md5('albipatozi'.$pos[0])) { $rezultati=true;}

  }
  return $rezultati;
}


if  ( isset($_GET['dil'])  ) {
  setcookie('mbajmend','',time()-3600*24*365);
  die('<meta http-equiv="REFRESH" content="0;url=index.php" />');

}

if  ( isset($_POST['username']) && !empty($_POST['username']) ) {
  $username=$_POST['username'];

} else {$username=null;}

if  ( isset($_POST['pass']) && !empty($_POST['pass']) ) {
  $passwd=sha1('justastring£"'.$_POST['pass']);


} else {$passwd='none';}

if  ( isset($_POST['mbajmend']) && !empty($_POST['mbajmend']) ) {
  $koha=time()+3600*24*60;
} else {$koha=null;}

$duhet=password($username);
if ($passwd==$duhet) { 


  setcookie('mbajmend',md5('sdaggs'.$username),$koha);


} elseif (!( isset($_COOKIE['mbajmend']) && isuser($_COOKIE['mbajmend'])  )) {


  setcookie('mbajmend','',time()-3600*24*360);
  if (isset($_SERVER['HTTP_REFERER']) &&     (preg_match('/[index.php]$/',$_SERVER['HTTP_REFERER']) ||     preg_match('/[admin\/]$/',$_SERVER['HTTP_REFERER'])) ) { $textshtes='Perdoruesi ose     Fjalkalimi jane Gabim !  '; }
  else { $textshtes='Ju Lutem Vendosni Te Dhenat Thuaja'; }

die('<body style="background:lightgrey;">
<div id="trupi" style="position:relative; background:#999999; margin:auto; width:360px;     margin-top:160px; height:260px;">
<form id="form1" name="form1" method="post" action="" style="position:absolute;     margin:56px; text-shadow:black; font-style:oblique; color:darkred">
  <label><strong>Perdoruesi:&nbsp;</strong>
  <input type="text" name="username" />
   </label>
  <p>
   <label><strong>Fjalekalimi:</strong>
   <input type="password" name="pass" />
   </label>
  </p>
  <p>
    <label>
    <input type="checkbox" name="checkbox" value="checkbox" />
    Me Mbaj Mend te Ky Kompjuter</label>
  </p>
  <p>
    <label style="float:right;">
    <input type="submit" value="Identifikohu"  />
    </label>
  </p>
  </form><p style="text-align:center; color:darkred; background:grey">    <b>'.$textshtes.'</b></p>
 </div>
 </body>

  ');

 } 

 ?>
<html>
this should be shown when user and passord is correct :)
</html>

我试图一步一步地回显每一个变量,一切都很好,除了它不起作用的事实

passdords txt 文件是 pasetkkadmin.txt- 它的模型是

超级管理员:a3b22231bbe113a948a349af09cea4e4129584de

第一行是:superadmin,它的密码是:albi,该数据应该可以工作,但不能

4

1 回答 1

2

您在本地使用 WAMP(它是 windows),但在线服务器通常在 Linux 系统上运行。

不同之处在于,PHP_EOL 在 Windows(CR+LF) 和 Linux(LF) 上具有不同的值,因此当您在 Windows 上创建它并将其上传到 Linux 时,您的 pasetkkadmin.txt 将无法像预期的那样使用所使用的 PHP 代码-服务器。

示例 pasetkkadmin.txt

foo:bar[CR][LF]
foo2:bar2

在 Windows 上,由 PHP_EOL( [CR][LF]) 分割的它将是:

array(0=>foo:bar,
      1=>foo2:bar2)

在 linux 上,由 PHP_EOL( [LF]) 分割的它将是:

array(0=>foo:bar[CR],
      1=>foo2:bar2)
于 2012-04-06T01:17:58.757 回答