Keichide
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WP User Avatar conflicts with RelevanssiYes, that solved the Problem. Thx
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimizer removing attachments pathsI just send you a Mail over the Contact form so you can take a look by yourself.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimizer removing attachments pathsThat makes sense.. I’m currently using WP Post Thumbnail to make 4 Sizes out of a single image… And i also see now, that every link to my Screenshots here got deleted o__O
Anyway.. I’m seeing them in the Media Library that there a 10 or more Pages (with a view setting of 100) for a single Image.
I’m just not really sure about the /uploads/ folder on the Server.. The current month somehow has 3436 Files, i need some time to look deeper into that.
Edit: Nope, everything in the /uploads/ folder is correct no duplicates or anything there.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimizer removing attachments pathsSo.. First sorry this damn forum does’nt let me Edit my posts after a certain time.. So i had to write 3 posts instead of editing one.. And things got a bit confusing..
Anyway, you are right, the Plugin did’nt delete anything as i stated in post 3 here, so i’m sorry about saying this.
The Thing is now, that (somehow) all the stuff from the wp_ewwwio_images table got mixed into the Media Library of WordPress and he even multiplied the entrys of a single image by 20 or 30, which is why i now have a few hundread pages in the Library and at first did’nt saw that the orginal Images are still there and did’nt saw that nothing happend with them.
Also about the “Scan & Optimize” Feature.. I just let him scan the directories of WordPress, i did’nt set anything in the Options which tells them, where he should look for images. So i think i’m was using it like intended.
And Like i also said somewhere.. The only settings which are Active are they for the JPG and PNG Optimizing everything else is unchecked and untouched.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimizer removing attachments pathsI found something, after digging further into it..
Here is what i found in the DB after i searched that first image name (which is a Avatar saved from Facebook, that’s why it has such a strange file name)
INSERT INTO<code>wp_ewwwio_images</code>(<code>id</code>,<code>path</code>,<code>image_md5</code>,<code>results</code>,<code>gallery</code>,<code>image_size</code>,<code>orig_size</code>) VALUES (4993, '/www/htdocs/w0114e4a/wp-content/uploads/2014/06/1536618_417349305034438_1027195089_n.jpg', NULL, 'Reduced by 0.2% (28,0 B )', NULL, 16178, 16206); (sorry, had to export the value to get the PATH.)SELECT * FROM <code>d018c312</code>.<code>wp_ewwwio_images</code> WHERE ( CONVERT( <code>id</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' OR CONVERT( <code>path</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' OR CONVERT( <code>image_md5</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' OR CONVERT( <code>results</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' OR CONVERT( <code>gallery</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' OR CONVERT( <code>image_size</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' OR CONVERT( <code>orig_size</code> USING utf8 ) LIKE '%1536618_417349305034438_1027195089_n%' ) LIMIT 0 , 30Also… 1536618_417349305034438_1027195089_n got me 690 Hits in wp_posts
EDIT:
uhm.. I seems like all the orginal Images are still linked in the DB.. I just checked a few Pages and looked what still was in the Media Library.. And everything was still there.. It’s just that there is a HUGE bunch of death Entrys which got pulled into the Media Library from the Database. And also the Thumbnail in the Library is missing somehow.. That user now has 48 Pages of Images but should only have 1 (and i already are at 100 shown images)
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimizer removing attachments pathsI just remembered something.. When i woke up today, and checked the Status of the Bulk Process, my quota had run out. So i upgraded to Silver and resumed the process. Which could also be the reason. I did’nt check the Library there, because i was’nt expecting that again.
Forum: Plugins
In reply to: [Plugin WooCommerce] Paypal FeesI made a VERY dirty hack to the class-wc-gateway-paypal.php in woocommerce/classes/gateways/paypal
and it just works if you don’t use Taxes
Add to line 228 right after global $woocommerce;:
$paypalfee = 1;
$subtotal = number_format($order->get_total() + $order->get_shipping(), 2, ‘.’, ” );
$order_id = $order->id;
$fee_percent = ‘1.9’; // Paypal’s percentage rate per transaction (3.4% in UK)
$fee_cash = ‘0.40’; // Paypal’s set cash amount per transaction (£0.20 in UK)// Calculate Fees
$paypal_fee = ((($sub_total / 100) * $fee_percent) + $fee_cash);And replace Fees on line 378 with this:
// Fees
if ( $paypalfee == 1 ) {
$item_loop++;
$paypal_args[ ‘item_name_’ . $item_loop ] = __( ‘Paypal Gebuehren’ );
$paypal_args[ ‘quantity_’ . $item_loop ] = ‘1’;
$paypal_args[ ‘amount_’ . $item_loop ] = $paypal_fee;}
Like i said.. It’s totally garbish but it works pretty well for me, and does what i want. AND it dosen’t cost you 25$ which i thing is just scam, because THIS i a function that should’t need a damn Plugin -__-
Forum: Plugins
In reply to: [WooCommerce] Checkout Page redirects to WP-Login siteFixed it, after turning the WP-Debug mode on, i found that there still was a plugin active that hooked into the registration/login Process.
In my case it was “WordPress Login :: Red Rokk Widget Collection”
Forum: Plugins
In reply to: [WooCommerce] Checkout Page redirects to WP-Login siteNarrowed it down a bit.. After i Unchecked the Remote Login Optin in WordPress MU Domain Mapping, i suddenly get the same error as him:
http://ww.wp.xz.cn/support/topic/error-msg-invalid-key-woocommerce-plug-in?replies=1
>Please enter your username or email address. You will receive a link to create a new password via email.
> Sorry, that key does not appear to be valid.WordPress still dosen’t add a User in the DB :/
But the Registration of Accounts over the “My Account” page works without Problems, it’s just on the Checkout page.