nubber
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Filebase Download Manager] Files are not loading in Treeupdate:
not too hard of a fix.. in wp-filebase.php change:
define(‘WPFB_PLUGIN_URI’, str_replace(str_replace(‘\\’,’/’,ABSPATH),get_option(‘siteurl’).’/’,WPFB_PLUGIN_ROOT));
to:
define(‘WPFB_PLUGIN_URI’, str_replace(str_replace(‘\\’,’/’,ABSPATH),’/’,WPFB_PLUGIN_ROOT));
that will fix tree view errors for people using multisite with custom domain mapping
thanks!
Forum: Plugins
In reply to: [WP-Filebase Download Manager] Files are not loading in Treeon a MU site with custom domain mapping, the ajax tree is not getting the permissions correctly and in turn not displaying the files.
/wp-content/plugins/wp-filebase/wpfb-ajax.php is not properly authenticating and returning the file list result. This is because i have a subdomain MU installation with a domain mapping plugin running as well.
Filebase is trying to load:
https://customdomain.mainsite.com/wp-content/plugins/wp-filebase/wpfb-ajax.php
instead of:
https://customdomain.com/wp-content/plugins/wp-filebase/wpfb-ajax.php
im going to go through the plugin and fix it for my site. however i would hope you can add this fix to the next release. If you’re able to fix it before i can please post the code changes here ?? and when i find a fix i will post here as well.
thanks! awesome plugin
Forum: Plugins
In reply to: [Slideshow Gallery LITE] [Plugin: Slideshow Gallery] Slideshow not workingI was using the php hardcode method and had the gallery accidentally inserted between an anchor tag in my theme:
<a href='#'><?php if (function_exists('slideshow')) { slideshow($output = true, $gallery_id = false, $post_id = false, $params = array()); } ?></a>
Its usually the silly simple things i overlook =/
Forum: Plugins
In reply to: [Slideshow Gallery LITE] [Plugin: Slideshow Gallery] Slideshow not working@antonie My problem was unrelated to your plugin and had to do with my theme. Sorry about that! Your plugin is great thanks for your hard work!
Forum: Plugins
In reply to: [Slideshow Gallery LITE] [Plugin: Slideshow Gallery] Slideshow not working@antonie yes im running the latest; Stable tag: 1.2.3.2
??
still same error:
SCRIPT5007: Unable to get value of the property ‘target’: object is null or undefined
gallery.js?ver=1.0, line 41 character 4i tried adding the fallback meta tag with no luck
<meta http-equiv=”X-UA-Compatible” content=”IE=8″ />Forum: Plugins
In reply to: [Slideshow Gallery LITE] [Plugin: Slideshow Gallery] Slideshow not workingSlides aren’t rotating properly in IE9 only. Seems to work fine in all others. I check IE9 dev console and see:
SCRIPT5007: Unable to get value of the property ‘target’: object is null or undefined
gallery.js?ver=1.0, line 41 character 4I replace this line:
a.tg = tag(‘a’,h)[0] != ” ? tag(‘a’,h)[0].target:’_self’;
with:
a.tg = tag(‘a’,h)[0] = ‘_self’;
and the error is gone but the problem still persists. only the first slide is displayed..
Any ideas?
In Safari, if i have the dev tools open the page halts on jQery.js ParseJSON function if that helps.. im out of ideas