designerwood
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: MailPress] Mailpress add-onsThe mailpress download contains zips of addons in the main folder.
Forum: Fixing WordPress
In reply to: Problems with WP 2.6 loading jqueryI’m new to this so hopefully making sense ??
The default loading of the script is just wp_enqueue_script( ‘jquery’ ); That does not seem to setup the src properly if you have additional page structure. It doesn’t use the root domain like it should to locate the script it puts in the full path infront of the script location which makes it invalid (pointing to the wrong location).
Is this something I have setup wrong in my config/settings?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Problems uploading more than 1 image at a timeThanks for the response. Yeah the core flash uploader works fine.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Problems uploading more than 1 image at a timeUpdated today to WP2.6 and updated nextgen, still having the same issue. Imagine it’s a permission issue or something, but everything looks fine. (still creates thumbnails fine, but doesn’t update the database with links to the new images)
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Problems uploading more than 1 image at a time(Running flash 9 as well, tried on my Mac OSX and Vista)
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Problems uploading more than 1 image at a timeI’ve been looking for ideas for awhile now, I read people talking about turning off the batch upload, but I don’t see that option in this version.
My folder permissions seem to be fine.
Forum: Fixing WordPress
In reply to: new E-commerce 3.6.5 : installation problem3.6.6 didn’t work for me trying to do a fresh install.
I eventually narrowed it down to the lines that define the upload directories in wp-shopping-cart.php:
$wpsc_category_dir = ABSPATH.”{$upload_path}/wpsc/category_images/”;
For me atleast, the $upload_path already contains the ABSPATH, so it was creating a redundant directory structure. If I changed the lines
to:$wpsc_category_dir = “{$upload_path}/wpsc/category_images/”;
then it worked fine. Figured that out after hardcoding the $upload_path again to ‘wp-content/uploads’ worked as well.