Just posting this issue on the forum, as others might run into it, so
want you to understand the workaround:
http://code.google.com/p/forceworkbench/issues/detail?id=187
What steps will reproduce the problem?
1. I installed everything as suggested using Web Developer Server
Suite
2. Put in the URL
http://localhost/workbench
3. Login page comes up
4. Shows the error "Undefined index: autoLogin in
C:\www\vhosts\localhost\workbench\header.php on line 18" on top of the
page
5. However, I was able to login to SFDC and perform describe & query
6. Every subsequent page gives more "Undefined Index" error
===================================================
Comment 1 by ryan.brainard, Today (moments ago)
Thank you for reporting this, but it is actually not a real bug
(however, it is
something I could probably make some improvements around). The problem
is that your
php.ini settings are configured to display Notices, which aren't
really errors, but
just notices to the developer. It is recommended that they be turned
off in a
production environment. To do so, open your php.ini file and look for
the line that
starts with "error_reporting" and make sure notices are excluded. For
example, to
display all errors, but not notices, do this:
error_reporting = E_ALL & ~E_NOTICE
You can also turn off errors all together by doing this on the
matching line:
display_errors = Off
If you still want to log errors on the backend, do this:
log_errors = On
This "display_errors = Off" and "log_errors = On" configuration is
encouraged for
production servers.
Status: Not_A_Bug