Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 35
  1. #11
    Join Date
    Dec 2009
    Location
    Pinner
    Posts
    230
    Plugin Contributions
    1

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    This article on django seems to give a clue

    forum.dreamhosters.com/troubleshooting/112491-dispatch.fcgi-not-found.htm

    00.00.00.00 could be the internal rewrite ip address in which case then something is rewriting in a .htaccess to "none" which people frequently think apache can understand like

    allow from none

    where none is incorrect as apache then does a hostname lookup and gets nothing back.

    That's a relevant guess btw.

  2. #12
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    But it wouldn't rewrite a stylesheet filename to 'none' as a result of an "allow from none" directive, esp if "none" is treated as a hostname.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #13
    Join Date
    Dec 2009
    Location
    Pinner
    Posts
    230
    Plugin Contributions
    1

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    no that was an example of the misuse of none, there are quite a few posts about non-existent files and using mod_rewrite that result in the 00.00.00.00 ip address (good spotting that) "none" could be a mistake in the .htaccess or an unfilled internal variable in mod_rewrite resulting in the the request. Not reall possible to tell without more infomation on the site.

  4. #14
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,262
    Plugin Contributions
    3

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    Is it possible that:

    includes/templates/classic/css/none

    has been "hard-coded" into a custom php file somewhere?

    What is returned if you search for that path in

    admin >>> tools >>> developer toolkit
    19 years a Zencart User

  5. #15
    Join Date
    Jan 2010
    Posts
    49
    Plugin Contributions
    0

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    I'll check out that article and the hard coding to see what the problem might be.

    I rewrote the ip addresses to protect their privacy. They're all different ip addresses, none of them are 00.00.00000 - thats the way I rewrote them.

    could it be a difference between the index.php files and the index.html files? That some browsers are automatically looking for a file or a format of a file thats not in that directory so the result comes up as /none ??? random guess!!!

    Thanks for your suggestions, I'll let you know how it goes!!

  6. #16
    Join Date
    Jan 2010
    Posts
    49
    Plugin Contributions
    0

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    Thanks for that article MattyMatt, but I don't think there were any clues contained within. But its always good to check out problems!

    Thanks schoolboy for that search idea, I searched in the 'look-up in all files' section but this was my result...

    Warning Error: No matching Configuration Keys were found ... /includes/templates/classic/css/none



    So no clues there. I think I'll dig up the php file now and see what it says....
    Last edited by epsonprintersrock; 28 Jan 2010 at 02:01 PM. Reason: spelling

  7. #17
    Join Date
    Dec 2009
    Location
    Pinner
    Posts
    230
    Plugin Contributions
    1

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    Does it have a referer in the error logs ? I fully admit to running after wild geese on this one. If you have the ip address that isn't 00.00.00.00 the you can track that to the time through the access logs and get the refering page.

  8. #18
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    I think there is something going on behind the scenes, as they say. The number of times the error occurs leads me to believe this is a script output error rather than a error result for a URL.

    Have you searched your 'images' dir. for any '.php' files or non-images files that shouldn't be there?

  9. #19
    Join Date
    Jan 2010
    Posts
    49
    Plugin Contributions
    0

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    I just counted the errors for yesterday in the error log files, there are about 350 errors all for that file destination. Thats a lot for one day. Sometimes the same ip address requests it 4 times, but then gives up.

    thanks for the suggestion website rob, I looked through and there's no php in the images folder. I can't see anything that shouldn't be there.

    I've never seen that many 404 errors come up when I browse our website, its quite rare. The thing that confuses me most is that all the errors are for a file thats not there

    File does not exist: /hsphere/local/home/*ourname*/*ourname*.co.uk/includes/templates/classic/css/none

    its wierd, it makes me feel like this guy

  10. #20
    Join Date
    Dec 2009
    Location
    Pinner
    Posts
    230
    Plugin Contributions
    1

    Default Re: Removing Errors from our site - /includes/templates/classic/css/none

    So have you tracked the ipaddress through the normal log and worked out what the computer has been looking at ? If you follow it and look at the source yourself, you should then be able to track your own progress. If you use firebug in firefox, then there is a feature where it shows the requests each page makes, (install the add on, click the little bug, click Net, click "all" on the far left and then reload the page and it will show which request is made and whether the server found it), if you can't find any page referring to none and giving a 404 when you surf the exact same path as the ipaddress, then it's likely to be a probe by a hostile botnet looking for information on your server by bringing up a 404 not found page, that would list OS version, webserver version etc... So you have two candidates, either something in the templating system is wrong and "normal" users are bringing up a 404, or you are being probed, in which case then you can't really deny ip addresses as a botnet will have many varying computers and you would be unlucky to be on their list (there was a peak in botnet actvity last night at 5 am UK time). What you could do is add create a .htaccess file in that folder

    Code:
    ErrorDocument 404 "<html />
    the last quote is missed out if you use apache 1.3 and works on 2.0+) that way you are still getting error messages but sending out minimal information and using less server resources just to a botnet (if it is one) it won't stop them but then nothing realistic will and at least you save the bandwidth. Setting up a 403 error message will just still provide the bot net with information, and redireting to your page_not_found would be a bad idea since then for each request you'd end up with 300 database queries multiplied by 350 requests !

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Replies: 1
    Last Post: 11 Feb 2013, 09:01 PM
  2. v150 Changed file in includes/templates/images and site not working
    By Lore13 in forum Basic Configuration
    Replies: 6
    Last Post: 5 May 2012, 05:29 PM
  3. Removing Price From Title -Classic Green
    By r.muinos in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 8 Sep 2011, 03:23 PM
  4. dir(includes/templates/classic/index) NO such file or directory. Stacktrace.
    By tzre in forum Installing on a Linux/Unix Server
    Replies: 4
    Last Post: 3 Aug 2011, 09:32 PM
  5. includes/templates/template_default/css
    By golfthrills in forum General Questions
    Replies: 2
    Last Post: 6 Sep 2010, 08:36 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR