<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=Auth_HTTP</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/16742" />
      <rdf:li rdf:resource="http://pear.php.net/bug/10006" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/16742">
      <title>Auth_HTTP: Feature/Change Request 16742 [Open] Please move tests/ to docs/</title>
      <link>http://pear.php.net/bugs/16742</link>
      <content:encoded><![CDATA[<pre>Auth_HTTP Feature/Change Request
Reported by till
2009-10-26T12:57:23+00:00
PHP: Irrelevant OS: n/a Package Version: CVS

Description:
------------
The currently so-called tests directory doesn't contain any test. At least not a unit test of any kind. It would be much better to move &quot;tests&quot; to &quot;docs&quot; and update package.xml along with it.

If possible, please implement some tests.</pre>]]></content:encoded>
      <description><![CDATA[<pre>Auth_HTTP Feature/Change Request
Reported by till
2009-10-26T12:57:23+00:00
PHP: Irrelevant OS: n/a Package Version: CVS

Description:
------------
The currently so-called tests directory doesn't contain any test. At least not a unit test of any kind. It would be much better to move &quot;tests&quot; to &quot;docs&quot; and update package.xml along with it.

If possible, please implement some tests.</pre>]]></description>
      <dc:date>2009-10-26T12:57:23+00:00</dc:date>
      <dc:creator>till &amp;#x61;&amp;#116; php &amp;#x64;&amp;#111;&amp;#x74; net</dc:creator>
      <dc:subject>Auth_HTTP Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/10006">
      <title>Auth_HTTP: Bug 10006 [Open] Login screen keeps poping-up</title>
      <link>http://pear.php.net/bugs/10006</link>
      <content:encoded><![CDATA[<pre>Auth_HTTP Bug
Reported by neutcomp@...
2007-02-01T15:59:06+00:00
PHP: 4.4.3 OS: Windows NT Package Version: 2.1.6

Description:
------------
http://test.ttweesp.nl/test_db_pear.php

popup enter username / password
Popup getting back 100% that the username is correct in the db (md5)

phpinfo:
http://test.ttweesp.nl/phpinfo.php



Test script:
---------------
&lt;?php
require_once 'DB.php';
require_once &quot;Auth/HTTP.php&quot;;
ini_set(&quot;include_path&quot;, &quot;.;d:/inetpub/vhosts/test.ttweesp.nl/httpdocs/PEAR&quot;);
$dsn = 'mysql://ttw:*****@localhost/ttw';
$options = array(
'debug'       =&gt; 2,
'portability' =&gt; 'DB_PORTABILITY_ALL',
);
$db =&amp; DB::connect($dsn, $options);
if (PEAR::isError($db)) {
die($db-&gt;getMessage());
}
$AuthOptions = array(
'dsn'=&gt;$dsn,
'table'=&gt;'TblUsers',                   // your table name 
'usernamecol'=&gt;'USE_UserName',       // the table username column
'passwordcol'=&gt;'USE_Password',       // the table password column
'cryptType'=&gt;'md5',                	// password encryption type in your db
'db_fields'=&gt;'*',					// enabling fetch for other db columns
);
$a = new Auth_HTTP(&quot;DB&quot;, $AuthOptions);
if($a-&gt;getAuth())                // checking for autenticated user 
{
echo &quot;Hello $a-&gt;USE_UserName welcome to my secret page&quot;;	
};
$db-&gt;disconnect();
?&gt;

Expected result:
----------------
You get the 
Hello bjorn welcome to my secret page
message

Actual result:
--------------
The auth_http login box</pre>]]></content:encoded>
      <description><![CDATA[<pre>Auth_HTTP Bug
Reported by neutcomp@...
2007-02-01T15:59:06+00:00
PHP: 4.4.3 OS: Windows NT Package Version: 2.1.6

Description:
------------
http://test.ttweesp.nl/test_db_pear.php

popup enter username / password
Popup getting back 100% that the username is correct in the db (md5)

phpinfo:
http://test.ttweesp.nl/phpinfo.php



Test script:
---------------
&lt;?php
require_once 'DB.php';
require_once &quot;Auth/HTTP.php&quot;;
ini_set(&quot;include_path&quot;, &quot;.;d:/inetpub/vhosts/test.ttweesp.nl/httpdocs/PEAR&quot;);
$dsn = 'mysql://ttw:*****@localhost/ttw';
$options = array(
'debug'       =&gt; 2,
'portability' =&gt; 'DB_PORTABILITY_ALL',
);
$db =&amp; DB::connect($dsn, $options);
if (PEAR::isError($db)) {
die($db-&gt;getMessage());
}
$AuthOptions = array(
'dsn'=&gt;$dsn,
'table'=&gt;'TblUsers',                   // your table name 
'usernamecol'=&gt;'USE_UserName',       // the table username column
'passwordcol'=&gt;'USE_Password',       // the table password column
'cryptType'=&gt;'md5',                	// password encryption type in your db
'db_fields'=&gt;'*',					// enabling fetch for other db columns
);
$a = new Auth_HTTP(&quot;DB&quot;, $AuthOptions);
if($a-&gt;getAuth())                // checking for autenticated user 
{
echo &quot;Hello $a-&gt;USE_UserName welcome to my secret page&quot;;	
};
$db-&gt;disconnect();
?&gt;

Expected result:
----------------
You get the 
Hello bjorn welcome to my secret page
message

Actual result:
--------------
The auth_http login box</pre>]]></description>
      <dc:date>2007-08-13T03:13:16+00:00</dc:date>
      <dc:creator>neutcomp &amp;#x61;&amp;#116; hotmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Auth_HTTP Bug</dc:subject>
    </item>
</rdf:RDF>
