minklet
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Allowed memory size exhaustedI’ve tried following this:
http://perishablepress.com/press/2008/02/17/wordpress-error-fix-increase-php-memory-for-cachephp/But it hasn’t done anything. I cannot get into my admin panel at all, I really need to get this sorted immediately.
Forum: Fixing WordPress
In reply to: Stripping formattingSadly this does not work for the visual editor, which it must work for as it is for clients who I can’t expect to be even remotely adept at html
People have been complaining about this since version 2, how can wordpress seriously keep doing this. What is its actual statement on this issue?
Forum: Fixing WordPress
In reply to: Oembed not working at allI’ve just disabled Tiny MCE advanced plug in and it has worked. This ia a problem, as I have this plug ing because of wordpress removing line breaks and such.
Is there any way round this? Anyone know why Tiny MCE advanced is doing this?
Forum: Fixing WordPress
In reply to: WordPress deleting iframesI found this, so figured I’d post it for anyone else having this problem, and I’m sure there are many esepcially since youtube has changed.
http://digitizor.com/2011/01/14/add-insert-iframe-wordpress/
The level of pissing about you have to do to wordpress to get it functioning how it is supposed to is outstanding.
Forum: Fixing WordPress
In reply to: Two difference excerpt functionsForum: Fixing WordPress
In reply to: Two difference excerpt functionsYes, I’ve already done that. But that only declares a value that is then used every time you use the_excerpt();
I want 2-3 different excerpts, like the_excerpt(); with 20 words and […] more link, the_excerpt2(); with 30 words and [MORE]
Forum: Fixing WordPress
In reply to: archive.php not used for custom post types….anyone?
Forum: Fixing WordPress
In reply to: archive.php not used for custom post typesFor example:
December 2010 contains 2 custom post types and one normal post,
http://nottingham.subverb.net/blog/toast/2010/12/and September only contains a custom post type
http://nottingham.subverb.net/blog/toast/2010/09/As you can see, it is using a different template to display the archives.
I DO NOT WANT A SEPERATE ARCHIVE FOR EACH POST TYPE. I have done that already, I want archive.php to include all post types.
I have already added this, in the exact same manner as the index.php
<?php global $wp_query;
$p = array(‘post_type’ => array(‘event’,’post’, ‘photos’, ‘audio’));
$post = array_merge($wp_query->query_vars, $p);
query_posts($post); ?>I know this board is largely pointless and no one actually gets any replies, but can someone help me here please? Custom Post Types are driving me insane, I swear they should havent been released yet, they clearly arent finished.
Forum: Fixing WordPress
In reply to: Custom Post Type PermalinksActually, it seems those two posts coming up for that link have different permalinks.
Why is that even happening? Why is the ‘audio’ slug bringing up both of those posts? And then if I click on the post title of the 2nd post, which should take me to:
http://nottingham.subverb.net/blog/toast/2010/12/test/still takes me to:
http://nottingham.subverb.net/blog/toast/audio/test/WHAT THE CRAP IS GOING ON?! Custom post types is the biggest pile of a*se gravy that this slap dash pile of fetid turd has ever released. Nothing works properly and everything involves some google found hack.
Forum: Fixing WordPress
In reply to: Populate custom meta box from databaseI deleted ARRAY_A and it showed up the results. I really don’t get this bloody framework.
Forum: Fixing WordPress
In reply to: Populate custom meta box from databaseI’ve just changed it to this, but it’s not actually getting any values from teh database. It’s echoing the checkboxes tho
function event_genre_options(){ global $post; global $wpdb; $rows = $wpdb->get_results( "SELECT genre_id, genre_name FROM genres ORDER BY genre_name ASC", ARRAY_A); if ($rows) : foreach ($rows as $row) : echo '<div class="genre_checkbox"><input type="checkbox" name="genre[]" value="' . $row->genre_name . '">' . $row->genre_name . '</div>'; endforeach; else : ?> <h2> Not Found</h2> <?php endif; }Forum: Networking WordPress
In reply to: $_SERVER['PHP_SELF'] doesn't workof course I mean that I would then have to hard code the rest of the url after bloginfo
Forum: Networking WordPress
In reply to: $_SERVER['PHP_SELF'] doesn't workWell, it breaks plugin options screens because the action points to blog/wp-admin/options etc rather than blog/site/wp-admin/options etc
It’s going down a directory. Which means that the results of the form aren’t being processed and it is impossible to save anything. I’ve seen this happen on quite a few plug ins now.
Will <?php bloginfo(‘url’) work in the admin page? I can only try it I suppose.
I just deleted this from the plugin file instead
add_action(‘wp_meta’,array(& $this, ‘renderMetaLink’));
This doesn’t actually work for me. Added to functions and message is still there.