Hey walfish3d,
i had the same problem with the projects hosted on a 1und1 server in
germany.
First of all, you don't need the Zend Framework for the basics
example. Try it without Zend.
For me authorization never worked. I made some output and saw that the
"HTTP_AUTHORIZATION" wasn't send.
Instead on the 1und1 server the variable is called
"REDIRECT_HTTP_AUTHORIZATION".
To geht the correct value you can try to add the following lines to
the
"library/junaio.class.php" file:
After line 71 enter these lines.
elseif (substr($name, 0, 14) == 'REDIRECT_HTTP_')
{
$headers[str_replace(' ', '-',
ucwords(strtolower(str_replace('_', ' ', substr($name, 14)))))] =
$value;
}
If it doesn't work, make some output to see if the
"HTTP_AUTHORIZATION" or a similar variable exists .
Hope this helps.
Greetings,
Rainer