I recently upgraded from 4.6 to 4.63, however I'm not sure if it is causing all these white pages to appear on my site. Basically only the front page works on my five drupal installations, if I click on anything else it goes to a white page. This happened shortly after I installed The Drupal Spam Module 2.0, could this module be causing the problems? It is only installed on two of my installations.
I just applied the latest patches to my Drupal 4.6.3 site, and am having problems because the patch removed the function valid_input_data from common.inc, however the function is still called from within file.inc (in function file_save_data, line 419). Can anyone tell me if I've done something wrong with the patches, or how to get around this???
Just upgraded to 4.6.4 - and patched the htmlspecialchars (&) problem. Everything seems to work fine now, except when I try to attach a file to a node I get this error message repeated many times:
When I updated my site to 4.6.4 I got a complaint from a subdomain user that his site was no longer visible from sub.domain.com/ but still worked from sub.domain.com/index.html. I'm no whiz when it comes to modifying htaccess but I think the following line change fixed everything:
Old:
line 12: Options -Indexes
New:
line 12: Options +Indexes
This made the subdomain available from sub.domain.com/ again.
I noticed that the function valid_input_data() disappeared when moving from 4.5.5 to 4.5.6. I was using this in a module I have written myself. The only solution I have found so far was to remove these calls. As I do not see anything on this on the support pages, what do I have to think of when I remove these validation calls? Do I have to add the validation somewhere else?