(repost…original went bellyup whent I hit the “send post” button :slight_frown: )
I am trying to get the Avatar plugin working. I read the other forum postings related to this plugin and have made sure I comply to all suggestions therein.
I am able to select User->Your Avatar. I can upload a photo, crop it, and then when I save it the screen refreshes and I dont see the avatar, only the missing picture “X” icon.
If I right click the missing image and look at its properties, I see it as:
http://jurnl.com/avatar/user-1-96.png?rand=8fd7b5a803f49be8884e8284e07d3ccb
On my server, it creates a new directory and files under wp-content/avatars/user – it creates a dir c4c with a set of pngs in it, including the user-1-96.png referenced above. so it looks like the actual upload is working. It just doesnt display.
I thought maybe thats my htaccess but it seems correct to me:
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
RewriteRule ^(.*/)?avatar/(.*) wp-content/avatar.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
The only suspicious thing I see in the log is a reference to a JS file that doesnt exist:
File does not exist: /home/jurnlco/public_html/wp-includes/js/fat.js, referer: http://cgdutoit.jurnl.com/wp-admin/users.php?page=user-avatar&action=upload_process
Indeed, avatars.php references this fat.js file. Is this something that maybe changed on WPMU 2.7?
Either way, I cant see my avatars. I’ve exhausted everything I could think of.
PLEASE any suggestions would be appreciated.
Regards