UncleCali
Forum Replies Created
-
Forum: Plugins
In reply to: [Twitter Bootstrap for WordPress] Styling IssuesThanks for the great suggestion Paul, I was able to locate what the problem was.
It seems the styling was caused by a form tag I had wrapped around the content that had a class of “form-horizontal” which gave it that awkward look. /facepalm – I’m still trying to get a hang of this css thing ??
Thanks a ton, and keep up the great work! ??
Cheers!
Forum: Plugins
In reply to: [Infinite-Scroll] Keep the "No More Posts" message visible?Thank you very much. I appreciate you fixing it for me, this will help me a lot.
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] need help with CSS SelectorsTry these..
Content Selector: div.narrowcolumn
Item Selector: div.title
Nav Selector: #navigation
Next Page Selector: #navigation .nav a:lastForum: Plugins
In reply to: [Infinite-Scroll] Need help with CSS SelectorsNot positive, but try these..
content selector: div.listing
posts selector: #rightColumn
navigation selector: div.navigationbottom
next page selector: div.navigationbottom a.nextpostslinkForum: Hacks
In reply to: Creating a folder & moving a file.Thank you. I was able to work something out, my code for anyone interested
function docu_docsetup() { define("PLUGIN_PATH", plugin_dir_path(__FILE__)); $copy_from = PLUGIN_PATH . "inc"; $copy_to = ABSPATH . "doc"; if(!is_dir(ABSPATH . '/doc')) { mkdir(ABSPATH . '/doc',0755); } if(!file_exists(ABSPATH . '/doc/dl.php')) { copy($copy_from . "/dl.php", $copy_to . "/dl.php"); } } register_activation_hook( __FILE__, 'docu_docsetup' );
Thank you ??
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorPerfect. Thanks for your help and thanks for creating this plugin. I’ve been looking for something like this for quite sometime.
Cheers.
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorHappy days! Thank you. I commented out line 10
//$target_path = realpath($target_path);
And it’s working on my localhost. I assume it’ll work on my live server as well. Haven’t tested it yet. Security wise is this O.k to leave out?
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorBoth realpath and pathinfo are available. I’m not sure what’s going on. I googled for some answers and it seems like a lot of people have the same issue with uploadify. They provide some solutions with error reporting but I don’t have the technical skill to add it to the plugin.
I also noticed when I clear the queue it tells me that,
“The file “undefined” has been removed from the queue.” – Not sure if that has anything to do with anything though.I just read about the uploadify insecurity, and reinstalled your plugin back to the way it was.
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorGaining headway.. I downloaded uploadify and replaced the uploadify/uploadify.php and I’m getting files complete notification, the thing is I don’t see the files in the users folder. I’ve tried turning off the use base folders option with no luck.
Also how can I check if realpath and pathinfo are turned on within xampp?
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorI’m not on godaddy, I’m using hostgator and tried with a local install using xampp.
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorI also noticed when turning on wp-debug I get 3 errors stating register_uninstall_hook, wp_register_script and wp_register_style was called incorrectly…
Forum: Plugins
In reply to: [Uploader] [Plugin: Uploader] HTTP ErrorI’m having the same problem. I’ve set everything to 755, the plugin folder with everything in it and also the users folders created by the plugin.
Forum: Themes and Templates
In reply to: Custom page template. How to check if page is a subpage.Yes. I know its called with if ( is_page() && $post->post_parent )
but how can I call it in this query? Or should I make a new query?