DrLightman
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Redirection Plugin - 301 Redirect Manager] Javascript errorsBy the way I use the premium and I don’t have those errors, it doesn’t seem to use bootstrap at all
Forum: Plugins
In reply to: [SEO Redirection Plugin - 301 Redirect Manager] Javascript errorsit also affects whole page’s style css when you visit its options page (left wp sidebar, top wp sidebar), not only its page’s content
Hello?
Also you may want to prevent lazy load on these kind of images, depending on the various plugins out there you may want to apply some classes:
https://support.wptasty.com/tasty-pins/how-can-i-make-the-hidden-image-work-with-lazy-load
or ad a filter to the tag to let a dev do it on a per case basis.
Yes it’s the premium
Any thought on this? Still getting this deprecated message, needs to be fixed.
Forum: Plugins
In reply to: [BuddyPress Docs] PHP Error with 7.3It’s an issue in WP core, at least 4.9.10 that I’m using
Forum: Plugins
In reply to: [BuddyPress Docs] PHP Error with 7.3It’s a WP core issue.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] You are submitting requests too quickly.My logs fill up like crazy with that stuff, I even have a static page html cache in place.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] the WordPress DB has increased by 600mbIs it possibile to know what are they referring to as “entry”?
Ok maybe in the wp_options table, with names “aalb_update_table_batch_%”
I have no idea what they serve to, I inspected one and it takes about ~100kb being an array of 400 items, each item an array of 10 asins and a marketplace code, eg: IT
Check how quickly your application is submitting requests.
If your application is submitting requests faster than once per second per IP address, you may receive error messages from the Product Advertising API until you decrease the rate of your requests.
Does a site page load of an article containing one or more product shortcodes result in one or more API requests? Please respond, it may help me understand why my application does many requests per second, having a lot of articles with a lot of product’s shortcodes.
- This reply was modified 7 years, 2 months ago by DrLightman.
Seriously how do you solve this? I can’t search products because of this error.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Corrupted links automaticly createdyour editor may have messed up the php file. ensure that /xml_manipulator.php starts this way:
<?php /* Copyright 2016-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the GNU General Public License as published by the Free Software Foundation, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ namespace AmazonAssociatesLinkBuilder\rendering; use AmazonAssociatesLinkBuilder\constants\Paapi_Constants; use AmazonAssociatesLinkBuilder\helper\Xml_Helper; use AmazonAssociatesLinkBuilder\constants\XML_Constants;make sure you save it using UTF8 encoding (not UTF8+BOM).
if you don’t know what I’m talking about, better leave the way you are with the working version 1.8.0 of the plugin and wait for an official fixed release by Amazon.
- This reply was modified 7 years, 3 months ago by DrLightman.
- This reply was modified 7 years, 3 months ago by DrLightman.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Call management or cacheDo you use any page cache plugin at wp level? Such as “wp super cache”, “wp rocket”, etc
If not, you’re triggering amazon’s api at each page load you might face the query limit faster.
If you use a page cache at wp level, amazon’s api are only issued when a cached page expires.
- This reply was modified 7 years, 3 months ago by DrLightman.
- This reply was modified 7 years, 3 months ago by DrLightman.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Corrupted links automaticly createdBy studying the code, cached links should expire in 30 minutes or so:
define( ‘AALB_CACHE_FOR_ASIN_ADUNIT_TTL’, 30 * MINUTE_IN_SECONDS );