smakdaddy
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Smart Export (Free)] Custom Post Taxonomies not availableHi Bruno, yes you’re absolutely right. Something with the way my taxonomies have been setup is causing an issue. One of my other custom post types behaving as expected and I can see my custom taxonomy as an option to export.
Time to dig a bit deeper from my end.
Thank you!
Hey Lwangaman,
Your post is a little long in the tooth but thought i’d reply anyway.
Copy / pasting into the .htaccess file straight from the plugin dashboard doesn’t work. You need to clean it up a bit.
I copy/paste into Notepad++ (or similar) first and eyeball it for missing spaces or other weird characters. Remove the double spacing too as that’s painful.
In the end there’s usually a line or two that butt up against each other which become a bit more obvious in a colour coded text editor.
The block i have in my htaccess (using latest version of ithemes security) looks like this:
# Rules to disable directory browsing Options -Indexes <IfModule mod_rewrite.c> RewriteEngine On # Rules to protect wp-includes RewriteRule ^wp-admin/includes/ - [F] RewriteRule !^wp-includes/ - [S=3] RewriteCond %{SCRIPT_FILENAME} !^(.*)wp-includes/ms-files.php RewriteRule ^wp-includes/[^/]+\.php$ - [F] RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F] RewriteRule ^wp-includes/theme-compat/ - [F] # Rules to prevent php execution in uploads RewriteRule ^(.*)/uploads/(.*).php(.?) - [F] # Rules to block unneeded HTTP methods RewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK) [NC] RewriteRule ^(.*)$ - [F] # Rules to help reduce spam RewriteCond %{REQUEST_METHOD} POST RewriteCond %{REQUEST_URI} ^(.*)wp-comments-post\.php* RewriteCond %{HTTP_REFERER} !^(.*).* RewriteCond %{HTTP_REFERER} !^http://jetpack\.wordpress\.com/jetpack-comment/ [OR] RewriteCond %{HTTP_USER_AGENT} ^$ RewriteRule ^(.*)$ - [F] </IfModule>Slightly different, but it works for me.
Forum: Fixing WordPress
In reply to: Chrome Flash uploader: "This file is empty. Please try another."Same issue here, it’s definitely a chrome thing. Has been around for the last few minor updates of chrome as far as i can tell. Will try an uninstall/reinstall and see if it goes away.
Forum: Fixing WordPress
In reply to: wp_enqueue_script with Jquery UI and Tabshey guys. having this problem myself, very frustrating.
jquery-ui simply won’t load using the wp_enqueue_script function.
the only way i can get this to function (albeit, without jqueryui css) is this;
function load_custom_scripts() { wp_register_script('my-jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.js'); wp_enqueue_script( 'my-jquery-ui' ); } add_action('admin_init', 'load_custom_scripts');this should work but doesn’t.
wp_enqueue_script( 'jquery-ui-core' );I’ve tried @designerfoo’sn suggestion above but that doesn’t work.
any ideas?
Forum: Plugins
In reply to: jQuery UI Components Will Not Load on WP Admin Menuhey jorbin, can you expand a little on this? i’m having the same issue but not sure how you go about declaring this dependancy?
Forum: Plugins
In reply to: [Plugin: Custom Post Type UI] Version 0.4.1 partially working with WP3 Beta 1I am running locally, using wamp. Any suggestions?
Forum: Plugins
In reply to: [Plugin: Custom Post Type UI] Version 0.4.1 partially working with WP3 Beta 1I’m getting the same error as gambit37 using v0.5 of Custom Post Type UI and WP3.0 Beta 1.
I get the following error as soon as i click on ‘Manage Post Types’
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘cpt_manage_cpt’ not found or invalid function name in [path removed]\wp-includes\plugin.php on line 395
I do have custom post types created as the appear under the default screen .
I also get a 404 if i click on ‘Edit’ for any of the custom post types that do exist.