bratze49
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] 2 Shops mit demselben PP-Konto…Chaos!Alles klar, vielen Dank 🙂
Aha aha!
OK. Thank you very much!Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] 2 Shops mit demselben PP-Konto…Chaos!Du meinst wenn jeder Shop eine andere Mailadresse für PP hat? Ich dachte das geht nicht, weil es dasselbe Konto sein muß (mit derselben Mailadresse)?
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] 2 Shops mit demselben PP-Konto…Chaos!Hallo Andreas,
danke für die Infos.
In der Tat gehören Shop A und Shop B zur gleichen Firma (“Firma F”).Mit demselben Unternehmensnamen Mailadresse in den Paypal-Einstellungen klappt es.
Danke 🙂
Forum: Plugins
In reply to: [Basic Interactive World Map] Change Continent names?Hey,
thanks for your answer. I figured it out somehow…editing the SVG file definitions did the Job, I think.
🙂
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] 2 Shops mit demselben PP-Konto…Chaos!Hallo @vanvox,
sorry, kann dank Urlaub erst jetzt antworten.
1.) Der Shop wurde so geklont, daß vom WordPress-Verzeichnis eine komplette Kopie gemacht wurde, dann einen SQL-Dump gemacht, die URLS geStrReplaced, eine neue DB angelegt und die wp-config geändert.
Dann im neuen Shop die Einstellungen angepaßt.2.) Der Rechnungspräfix ist eindeutig, in jedem der beiden Shops anders. Gleich sind Live Client ID und Live Secret ID.
Der Fehler ist noch da.
Grüße,
Bratze49 🙂Ah…ok! Didn’t find that at first. Thanks 🙂
A good Idea. It will be included in one of the next Plugin Updates, I believe.
Thanks a lot 🙂
Forum: Plugins
In reply to: [Scalable Vector Graphics (SVG)] Media gallery loads forever🙂
Forum: Plugins
In reply to: [Scalable Vector Graphics (SVG)] Media gallery loads foreverMaybe it is helpful to say that this problem does not appear on a local(host) server running with MAMP and the exact same configuration.
Forum: Plugins
In reply to: [Scalable Vector Graphics (SVG)] Media gallery loads foreverI had the same problem. There is an Internal Server error (500) in admin-ajax.
Maybe the Plugin is not compatible with WP 4.8 yet?
Cheers!
Resolved
You must have had a commpletely different error with the same results then 🙂
I have searched in the database for “fgg_images”. It was found in 2 places, because I have 2 galleries.
The field “meta_value” contains serialized data, and after moving the site some values are wrong (because they did not change).
I saved the content of a meta_valiue field in the variable $string, then I ran the above script. Like this:
<?php
$string = “old_wrong_data”;preg_match_all(‘#s:([0-9]+):”([^;]+)”#’,$string,$m);
foreach($m[1] as $k => $len) {
if($len != strlen($m[2][$k])) {
$newstr=’s:’.strlen($m[2][$k]).’:”‘.$m[2][$k].’”‘;
echo “len mismatch: {$m[0][$k]}\n”;
echo “should be: $newstr\n\n”;
$string= str_replace($m[0][$k], $newstr, $string);
}
}echo “<br>———“;
echo $string // good new data
?>The output of this (below the ———) I pasted back into the mata_value box. i did this 2 times, once for each gallery.
Good Luck
It is fixed now. Thank you for you answer.
Your Plugin is great!
- This reply was modified 8 years, 11 months ago by bratze49.