xiao xiaoxiao
Forum Replies Created
-
no luck.
Thanks anyway.
The problem is still the same. I think the rewrite rule resolved problem looking for the path in
blog/wp-content/blogs.dir/%BLOG_ID%/files
The NGG couldn’t save the gallery under that directory. this is root cause. some rewrite rules in NGG are wrong, I guess.
Forum: Networking WordPress
In reply to: nextgen gallery couldn't see added gallery in subsiteThanks for reply.
WP 3.5 with multisite enabled.
here is detail:
http://ww.wp.xz.cn/support/topic/added-gallery-doesnt-appear-in-list-in-subsite-multisite-issue?replies=4Forum: Plugins
In reply to: [Lightbox Gallery] gallery not working in wp3.5to khan:
I can’t find 516 and 530 line. Could you please copy&paste the around code?
I use VIM, the line 516 and 530 are nonsense.
Forum: Plugins
In reply to: [Cool Video Gallery] not working in multisitei can created cvg catergory.
the folder was created in -root/blog/video-gallery/
some rewrite rules seem to be wrong.
ngg: Version 1.9.10
wordpress: 3.5in subsite:
Gallery path: / This is the default path for all galleriesin mainsite:
Gallery path: wp-content/blogs.dir/1/files/ This is the default path for all galleriesin network setting:
Gallery path: wp-content/blogs.dir/%BLOG_ID%/files/
I thinnk this is problem.
subsite didn’t recognize the gallery path.Please fix.
my .htaccess rules are as below:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [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).*) blog/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ blog/$2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress