islandcastaway
Forum Replies Created
-
Forum: Plugins
In reply to: Posting to multiple blogs ???Same problems here ;(
Tried adminimize1.7.13a.zip – didn’t fix it.
downgrading to 7.12 didn’t work, had to restore database also
I’m using 3.1 multisite
Forum: Plugins
In reply to: [WP-ServerInfo] [Plugin: WP-ServerInfo] PHP memory_limit stuck at 256Mwp-config.php = define(‘WP_MEMORY_LIMIT’, ‘400M’);
php.ini = memory_limit = 400M
.htaccess = php_value memory_limit 400M
wp-overview plugin = shows 400M
phpinfo(); = shows 400MWhat config are you taking about? It seems to be fine except this plugin.
I found this thread that states something may have changed in 3.0:
https://www.ads-software.com/support/topic/wp3-exeed-256-memory-limitI just tweeted the author to let him know
Forum: Hacks
In reply to: unhook img classWhat I mean is when you insert an image with the post editor it adds:
class=”alignnone etc”
I’m not after the stlye change, I just dont want the class element period.
Thanx
Forum: Plugins
In reply to: [Top Level Categories] Top Level Categories Fix for WordPress 3.1The sky has fallen! Thank you so much for this quick fix. I use a multisite installation and this is a nightmare. For the most part this new plugin seems to have fixed the issue but %category%/%postname% is still a HUGE issue. Looking forward to this being resolved.
Thanx again.
PS. Steps I used to fix:
1. sitewide deactivate top level categories
2. change each sites permalinks to default
3. network activate FV top level categories
4. change each sites permalinks to month/dateForum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Wordtube thumbnailsI came up with some code to get the image from wordtube:
<?php //wordtube $content = $post->post_content; $wordtubeshortcode = stripos($content, "[media"); if($wordtubeshortcode !== false){ $matches = array(); $html = $post->post_content; $pattern = "/\[media id=(\d+)\]/"; preg_match( $pattern, $html, $matches ); $wordtubeId = $matches['1']; $wordtubeimage = $wpdb->get_var($wpdb->prepare("SELECT image FROM $wpdb->wordtube WHERE vid = $wordtubeId;")); echo '<img src="'.$wordtubeimage.'">'; }?>
It does not work with the legacy [media=#] or [media id=# width=# height=#]
to use width and height use:
$pattern = "/\[media id=(\d+)(?: width=)?(\d+)?(?: height=)?(\d+)?\]/";
Hopefully someone can improve on this.
Cheers
Forum: Plugins
In reply to: [wordTube] [Plugin: wordTube] WordTube Error: "Task Queue failed at step 5"Found a side effect of my hack, The flash slideshow in NexGen Gallery doesn’t work now. It seems to be running off the swfobject file in wordtube. Guess it loads before Nexgen’s.
Got it working again by disabling the flash slideshow in Nexgen and using the default javascript one. Drawbacks are no navigation bar or background music ??
Forum: Plugins
In reply to: [wordTube] [Plugin: wordTube] WordTube Error: "Task Queue failed at step 5"figured out a down n dirty hack.
this is for WordPress multisite with domain mapping:
in /wp-content/plugins/wordtube/lib/swfobject.php
line 99:
$this->embedSWF = 'swfobject.embedSWF("'. $swfUrl .'", "'. $this->id .'", "'. $width .'", "'. $height .'", "'. $version .'", '. $expressInstallSwfurl .', this.flashvars, this.params , this.attr );' . "\n";
replace with:
$new = str_replace(".","",$swfUrl); $new = str_replace("blogsdir","blogs.dir",$new); $new = str_replace("playerswf","player.swf",$new); $new = str_replace("https://mydomain1com","",$new); $new = str_replace("https://mydomain2com","",$new); $new = str_replace("https://mydomain3com","",$new); $new = str_replace("https://mydomain4com","",$new); //add more if needed $this->embedSWF = 'swfobject.embedSWF("'. $new .'", "'. $this->id .'", "'. $width .'", "'. $height .'", "'. $version .'", '. $expressInstallSwfurl .', this.flashvars, this.params , this.attr );' . "\n";
This removes the referring domain name and all seems to be ok.
For some reason the referring domain name reverts back to the original if you just try to strip out the main WordPressMU for the simpler fix:
$new = str_replace("main-wpmu-domain","",$new);
I hope someone comes up with a better fix, but this seems to work.
Cheers
Forum: Plugins
In reply to: [wordTube] [Plugin: wordTube] WordTube Error: "Task Queue failed at step 5"I also have this issue on wpmu 3.02 with domain mapping.
It only affects playlists, not single videos.
The closest thing I have found so far is to add a crossdomain.xml file but it is not working.
-welp
Forum: Plugins
In reply to: Next-gen gallery show a page description only on first pageIf found a way to do it to category pages:
<?php if ( $paged < 2 ) { ?>text for first page<?php } else { ?>empty or text for rest of pages<?php } ?>
can this be adapted for nexgen album pages?
Forum: Fixing WordPress
In reply to: Enqueue and load a CSS file *only* if string in content matches?I’m trying to get this technique to work with the Audio-player plugin( https://www.ads-software.com/extend/plugins/audio-player/ ).
It uses addHeaderCode() and addFooterCode() too insert.
Could someone point me in the right direction please?
Sorry, Didn’t mean to sound harsh. Just that after a plugin is updated the yellow warning on the top of admin always pops up saying I DO need to clear caches.
So what your saying is this message can just be disregarded and hidden and things will take care of themselves?
Just trying to figure this all out.
thanx
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Page Cache debug info not showingI also did that after reading about buddypress issues. Im running 3.0 mutltisite/buddypress. All seems to be ok now.
I still am VERY interested in an indepth tutorial or even better a video tutorial for the complete No0b explaining how everything works especially on shared hosting.
Cheers
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Page Cache debug info not showingI got it, didnt have define(‘WP_CACHE’, true);