Hi,

Ive just finished building a site for my client, and after testing it all seems to be working fine. Weve had no complaints of missing pages. When I view the error log though, for nearly every user who logs into the site, im getting a 'page not found' error, for a page called 'none' (which obviously doesnt exist and never has). It seems to be appending /none to the end of URLs, but i cant get it to replicate the error when I log in, and there are no links to any pages called 'none'.

Has anyone had the same problem, ive built many drupal sites and have never came across this before.

See pic here: www.tintisha.net/images/cre8atemaths-pagenotfound.jpg

Thanks
Rich

Comments

husztisanyi’s picture

I have the same, in D5.

Annalog’s picture

I have the same problem, even from logged in users. Can't reproduce it all! Maybe I can ask that user. 'none' is my top not found page. Followed by taxonomy/term/none. What is that?

valante’s picture

Same in latest D6. Every visit to every page, logged in or not, generates this 'none' not found error, in relation to the theme folder (i.e. sites/all/themes/theme-name/none not found). Any ideas, anyone?

greyleonard’s picture

Check your css file for "url(none)" in regard to backgrounds, bullets, and lists. 
I had the same problem in a non-Drupal site getting 750 error hits to "/none". 
cialog’s picture

Check if you use this kind of pure css transparent png fix


	background: url('/path/to/image.png') no-repeat 0 0;
	background-image: url(/'path/to/image.png') !important;
	background-image: none;
	filter: none !important;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/path/to/image.png');

because it will definitely cause 404 errors the type you described above.

I recommend http://www.dillerdesign.com/experiment/DD_belatedPNG/ as a fixing solution for png.

Vamsee krishna’s picture

I am also facing same issue in D7. Is there any fix?.