Link to home
Start Free TrialLog in
Avatar of tdillon80
tdillon80

asked on

File does not exist: /var/www/vhosts/domain.com/httpdocs/wp-content

Hello,

I've got a ton of these errors in the error log (different ips):
File does not exist: /var/www/vhosts/mydomain.com/httpdocs/wp-content

I can only replicate the error if I go directly to: http://www.mydomain.com/wp-content/

The blog is located in: http://www.mydomain.com/blog/
This makes it more perplexing because the wp-content folder is within the /blog/ folder.

I've looked through the settings and I can't find a reference to this link.

Here is the htaccess file that resides in the /blog/ folder.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

Any help is appreciated.

Thanks,

Tim

Open in new window

Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Is there an .htaccess file in the / folder too?
Avatar of tdillon80
tdillon80

ASKER

There is an .htaccess file in:  

mydomain.com/
mydomain.com/blog/
What's in the mydomain.com/ .htaccess file?
The site was on magento and when we moved away from magento we kept the htaccess file intact for the most part.

############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi

#    Action php5-cgi /cgi-bin/php5-cgi
#    AddHandler php5-cgi .php

############################################
## GoDaddy specific options

#   Options -MultiViews

## you might also need to add this line to php.ini
##     cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini

############################################
## this line is specific for 1and1 hosting

    #AddType x-mapp-php5 .php
    #AddHandler x-mapp-php5 .php

############################################
## default index file

    DirectoryIndex index.php

<IfModule mod_php5.c>

############################################
## adjust memory limit

#    php_value memory_limit 64M
    php_value memory_limit 128M
    php_value max_execution_time 18000

############################################
## disable magic quotes for php request vars

    php_flag magic_quotes_gpc off

############################################
## disable automatic session start
## before autoload was initialized

    php_flag session.auto_start off

############################################
## enable resulting html compression

    php_flag zlib.output_compression on

###########################################
# disable user agent verification to not break multiple image upload

    php_flag suhosin.session.cryptua off

###########################################
# turn off compatibility with PHP4 when dealing with objects

    php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

    SecFilterEngine Off
    SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>

############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

    # Insert filter on all content
    SetOutputFilter DEFLATE
    # Insert filter on selected content types only
    #AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript

    # Netscape 4.x has some problems...
    BrowserMatch ^Mozilla/4 gzip-only-text/html

    # Netscape 4.06-4.08 have some more problems
    BrowserMatch ^Mozilla/4\.0[678] no-gzip

    # MSIE masquerades as Netscape, but it is fine
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

    # Don't compress images
    SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary

    # Make sure proxies don't deliver the wrong content
    Header append Vary User-Agent env=!dont-vary

</IfModule>

<IfModule mod_ssl.c>

############################################
## make HTTPS env vars available for CGI mode

    SSLOptions StdEnvVars

</IfModule>

<IfModule mod_rewrite.c>

############################################
## enable rewrites

    Options +FollowSymLinks
    RewriteEngine on


############################################
## you can put here your magento root folder
## path relative to web root

    #RewriteBase /magento/
    #RewriteBase /


############################################
## workaround for HTTP authorization
## in CGI environment

    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]


############################################
## Make sure we're always going to www.domain.com
## and never see index.php

     
     RewriteCond %{HTTP_HOST} !^www\..*
     RewriteRule ^.*$ http://www.extremebodyworkout.com%{REQUEST_URI} [R=301,L]


     RewriteCond %{REQUEST_URI} \.php/$
     RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]



############################################
## always send 404 on missing files in these folders

    #RewriteCond %{REQUEST_URI} !^/(media|skin|js|)/

############################################
## never rewrite for existing files, directories and links

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l


############################################
## rewrite everything else to index.php

#     RewriteRule .* index.php [L]	
     #RewriteRule ^(.*)$ lightspeed.php/$1 [L]

	
</IfModule>


############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead

    AddDefaultCharset Off
    #AddDefaultCharset UTF-8

<IfModule mod_expires.c>

############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires
	ExpiresActive On
    ExpiresDefault "access plus 1 year"

</IfModule>

############################################
## By default allow all access

    Order allow,deny
    Allow from all

############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags

    #FileETag none


###########################################
## Deny access to svn folders and rewrite 
## them as 404s

#<Directory ~ "\.svn">
#	Order allow,deny
#	Deny from all
#</Directory>

# RedirectMatch 404 /\\.svn(/|$)


###########################################

Open in new window

Comment out lines 144 and 145 and see if that resolves the issue:

RewriteCond %{REQUEST_URI} \.php/$
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
That didn't do it. I deleted everything in the htaccess file and that didn't resolve either. I went to mydomain.com/crap/ to see if that would appear in the error log and it did.

My gut is telling me this isn't an htaccess issue but a reference somewhere in the blog setup. There has to be a file that is referencing that path... or so I think.
>> There has to be a file that is referencing that path... or so I think.

Possible.

Did you migrate the WordPress stuff from a testing domain?
Yes I did. The testing server is a clone of the live site. All managed through an SVN repo.

The problem is that I can't recreate this error on either the testing or live server unless I go directly to the invalid path. I've clicked on every link, image and form submit in hopes of triggering the error. It's really annoying at this point.

I'm using the grido theme, perhaps it's an error in there...
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial