Captaion
Forum Replies Created
-
Thanks mattyrob.
Yeah, agree that duplicates are bad. However, the other emails that had this issue were only in the DB once. Any thoughts on the difference between message for “not subscribed” and message for “not registered”?
I have another one of these and have looked at the DB. In this case there are two entries, one with CAP for first letter and the other lower case. However, one entry is via CSV import by me. The other is from the actual user – the latter.
The message my user reports is ‘No such email address is registered’. I see in class-s2-frontend.php this is different then the not_subscribed message ‘That email address is not subscribed.’
What is the difference between not registered and not subscribed?
In the DB that the entry that I imported has my WP username as the IP and not a real IP. Could there be a connection with my registered user importing the subscriber email?
Here are a few that had this issue:
dv99vet at comcast dot net
butchm at gmail dot com
roganco at gmail dot comI’ve only seen it happen for a few addresses. I can’t reproduce it since any time I test with my own email it works fine.
I’ve seen this issue a couple of times past few months. Yes, I’ve found the address in the subscriber list. Double-checked the case and they were identical.
On a whim I tried the older MU htaccess sample code from the codex and thumbnails immediately appeared. Looks like the person that originally set up my site did pre-3.0 but had 3.0 version of htaccess.
Thanks for the suggestion. I made the edits below. But thumbnails still show as broken. And they aren’t showing on posts. But they do show when I edit them in the Media dashboard.
Maybe I need to tweak ^SITENAME/files/(.+) wp-content/blogs.dir/2/files/$2 [L] to something different? But it does seem to say for Site 2 files look in blog.dir/2/files for those files, which does seem accurate.
Edits:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files #RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] RewriteRule ^SITENAME/files/(.+) wp-content/blogs.dir/2/files/$2 [L] RewriteRule ^SITENAME/files/(.+) wp-content/blogs.dir/6/files/$2 [L] RewriteRule ^SITENAME/files/(.+) wp-content/blogs.dir/7/files/$2 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress #php_value post_max_size 32M; #php_value upload_max_filesize 32M;# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files #RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-content/blogs.dir/6/files/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-content/blogs.dir/7/files/$2 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress #php_value post_max_size 32M; #php_value upload_max_filesize 32M;Forum: Networking WordPress
In reply to: Multisite Hosting Transfer: Images Not WorkingWhat did you update in ms-files?
Forum: Fixing WordPress
In reply to: another Permalink headacheI fixed it with two things.
1) Working too quickly and missed the comment out for BEGIN and END
2) Did not need the /blog as part of the RewriteBase.Here is what worked:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
# END WordPressFYI
From my testing the wp-config worked with either / or /blog, but I switched it back to default of /Forum: Themes and Templates
In reply to: Editing imported CSS files in wp-adminAnd it looks like I want to add new CSS to a child folder and not edit the main theme css files. But still would like to know if there’s a way to do this directly in wp-admin.