I’m not sure that I can help you - I didn’t even realise that 6.17 had been released until I saw this thread. However
how did you install; last time I looked, it wasn’t available from repos, so presumably you did something else. A packaged stack, or as individual components?
The only thing that I saw on 6.17 itself that was worrying was this note:
Session handling
Drupal 6.17 changes the way session cookies are handled. Most people don’t need to have this setting set, but if you have an explicit $cookie_domain set in settings.php, verify that it is set to a sensible value:
‘example.com’ if you want sessions to apply to the example.com domain, and none of its sub-domains (especially not Example Web Page),
‘www.example.com’ if you want sessions to apply to the Example Web Page domain, and none of its sub-domains nor parent domains (especially not example.com),
‘.example.com’ if you want sessions to apply to the example.com domain and all its subdomains (Example Web Page, mydomain.example.com, etc.).
it is unclear how that could have any impact at all on your problem, but there could be something odd in a module, I suppose.
Did you have everything working on 6.16, or was it some earlier version. (Mind you, if it is some earlier version, it is a bit difficult to find the release notes using the obvious method of looking for it menus, although a consideration of the URL for 6.17 reveals that Drupal 6.16 and 5.22 released | drupal.org is likely to be the one (and it is) ).
D 6.17 came jun 2.
I am testing Drupal for the first time so I installed the package.
I have also tried the same with D 7.0 alpha5 with the same result.
But Apache loads the rewrite module.
During hard work I restarts Apache and checking the log I find the following:
When restarting Apache I get the following errors in log:
[Thu J[/i]ul 08 14:30:48 2010] [notice] caught SIGTERM, shutting down
[Thu Jul 08 14:30:54 2010] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib64/php5/extensions/Zlib.so’ - /usr/lib64/php5/extensions/Zlib.so: cannot open shared object file: No such file or directory in Unknown on line 0
[Thu Jul 08 14:30:55 2010] [notice] Apache/2.2.13 (Linux/SUSE) mod_ssl/2.2.13 OpenSSL/0.9.8k PHP/5.3.2 configured – resuming normal operations
[Thu Jul 08 14:32:18 2010] [error] [client ::1] File does not exist: /srv/www/htdocs/drupal617/admin, referer: http://localhost/drupal617/?q=admin/settings/clean-urls
The PHP Warning looks for the file Zlib.so and can not find it. The file name is zlib.so with lowercase z
Dont know where to fix the this as I do not want to change the filename due to possible other dependencies.
for 11.1 (which I’m still using, pending the release of 11.3), I’m seeing 6.12 and 6.14
6.17 did hit the Drupal site itself on 2-June, as you say, but there is normally a delay between hitting the Drupal site and being available from repositories on the SuSE site.
If you got the software from SuSE we should be able to, more-or-less, eliminate (reduce to a small value) the possibility of an installation error; if you got it from Drupal site itself, or somewhere else, that probably isn’t that certain. (I’ve tried the Bitnami stack, which makes installation pretty trivial, but, imho, is inimical with security; I haven’t tried the Aquia stack.)
The PHP Warning looks for the file Zlib.so and can not find it. The file name is zlib.so with lowercase z
Dont know where to fix the this as I do not want to change the filename due to possible other dependencies.
This shouldn’t happen (err, obviously), but, if what you have has only been tested on windows, it would be quite possible that a case sensitivity issue could escape through testing without being noticed.
What you could try, if only to test the hypothesis that this is the problem, is create a link from the name that is being emitted (upper case z) to the file that exists (lower case z) in the directory in which the file exists. This is a bit of a bodge, and I certainly wouldn’t be suggesting that you try this on your production site, but it could prove the theory. Maybe this is only the first and most obvious issue and there is something else, too…