peternemser
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I not send a new user a registration email?That is correct.
James,
Thanks for your response. Added the aryo plugin and will monitor.
Do you think there is anyway that I can hard code the option in the template with some sort of meta tag – so this never happens again?
-Peter
I have done this and no avail. Please advise.
Forum: Networking WordPress
In reply to: Path to [gallery] images way messed up.Hey, my bad. There is a little link in the image gallery that was misconfigured. Had to change the gallery to go to the images. DUHHH. However, this brings up a point that i have been running into with numerous plugins, the documentation and verbage on plugins need improvement. A lot of time wasted trying to find a very important switch, which should be called out with emphasis.
Forum: Networking WordPress
In reply to: Path to [gallery] images way messed up.Can this update be accomplished solely in the .htaccess file. If I could find the extension for the file, i could solve the problem.
Forum: Networking WordPress
In reply to: Path to [gallery] images way messed up.Here is my .htaccess file
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,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
Forum: Networking WordPress
In reply to: Path to [gallery] images way messed up.Note – image paths that are present do not include the file extensions and ends with a / (slash) thinking that the file is a directory and not an image.