David Radovanovic
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Beta Tester] 3.5.2 installed – where's 3.6beta1?geekmy – unfortunately the page returns with the same version, even after multiple upgrades.
Forum: Plugins
In reply to: [WordPress Beta Tester] 3.5.2 installed – where's 3.6beta1?Still no joy for me 🙁 Maybe there’s a way to upgrade via svn?
Forum: Plugins
In reply to: [WordPress File Monitor Plus] Constant changes to WPFMP_DATA folder4th
Forum: Plugins
In reply to: [Background Manager] background images bleed off pageI had suspected so. Otherwise some very complex media query scripting, which would still be inconsistent. Thanks for your reply!
Forum: Plugins
In reply to: [Background Manager] background images bleed off pageThe background images are of individual models, so maybe two separate instances of the shortcode for that gallery [gallery id="1690"] side by side would allow more control of their images? Oh, but then the issue is the randomization effect; may show two different model images at the same time. And, that’s not desirable.
Forum: Plugins
In reply to: [Background Manager] background images bleed off pageI tried adding an artificial bottom bleed on the artwork itself. No joy though. Even with centering off, it chops the bottom even worse than before (with centering). I changed the size of background images to 1920 x 1080. I wonder what else could be a solution for preventing the chopping of the bottom of background images?
Forum: Plugins
In reply to: [AdRotate Banner Manager] Responsive Background AdsThat’s simple enough thanks!
Mark, you going to get scolded for posting a job on the support forum.
Forum: Networking WordPress
In reply to: What determines WPMU upload folder?Thanks Mika!
Forum: Networking WordPress
In reply to: What determines WPMU upload folder?symlink?
Forum: Plugins
In reply to: [Featured Video Plus] Compatbility with Headway FrameworkAs long as the php code above is in a loop then it should display something? Well, this is in my homepage.php:
<?php $audio_posts_query = new WP_Query( apply_filters( 'et_audio_posts_args', array( 'tax_query' => array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => 'post-format-audio' ) ), 'showposts' => (int) et_get_option( 'harmony_audio_postsnum', 4 ) ) ) ); ?> <?php if ( $audio_posts_query->have_posts() ) : ?> <!-- featured movie --> <?php if( has_post_video() ) { ?> <?php the_post_video(); ?> <?php } else { ?> <?php // default code to display the Featured Image goes here ?> <?php } ?> <!-- end of featured movie -->And in the front end nothing appears between my “featured movie” comments. Can give a heads up? Thanks for a much-needed plugin.
Forum: Plugins
In reply to: [Download Monitor] WPMU Compatible? Rewrite returns 404 page.Brandon, well…it was a basic folder permissions issue. I checked earlier and confirmed that the folders were 755 and files 644… but somehow the uploads and plugins folder were incorrect. So, as Confucius says, “… check the really simple things first, before insisting on making it complicated.” Or something like that. Thanks for your input.
Forum: Plugins
In reply to: [Download Monitor] WPMU Compatible? Rewrite returns 404 page.Here’s the page wit the downloads:
http://www.hrnerr.org/estuary-training/trainingtopic/estuary-shorelines/
BTW – I recently upgraded to another server. Maybe there is some type of restriction on the new server config?
Forum: Plugins
In reply to: [Download Monitor] WPMU Compatible? Rewrite returns 404 page.Brandon, yes sub-domains with mapping.
This is what I have in .htaccess:
# uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^downloads/([^/]+)$ http://www.hrnerr.org/wp-content/plugins/download-monitor/download.php?id=$1 [L] RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L] #END WordPressForum: Plugins
In reply to: [Download Monitor] WPMU Compatible? Rewrite returns 404 page.Any suggestions on how to troubleshoot this? I’ve commented the debug lines in download.php `/* Debug */
echo “
URL Parsed: $urlparsed\n
isUrl: $isURI\n
localURL: $localURI\n
BloginfoURL: “.get_bloginfo(‘url’).”\n
BloginfoWPURL: “.get_bloginfo(‘wpurl’).”\n
ABSPATH: “.ABSPATH.”
“;
exit;/* */
`Though I still get 404 error page without any print-out on screen of paths for debugging.