sbsads
Forum Replies Created
-
I’m having the same issue. I converted the form to V2, and while the error disappeared, form submissions fail. It’s a rather troubling issue. Any news on a correction?
Also using WPAdmin AWS CDN. If the app is trying to authorize, but can’t find the WP authorization JS, might that be causing the issue?
Here is a screen clip of what I see:
<iframe src=”https://player.vimeo.com/video/391092415″ width=”640″ height=”564″ frameborder=”0″ allow=”autoplay; fullscreen” allowfullscreen></iframe>
Here is the error I find:
Uncaught TypeError: jQuery(…).iconpicker is not a function
at HTMLDocument.<anonymous> (edit.php?post_type=u…sPostID=12477:11100)
at i (jquery.js?ver=1.12.4-wp:2)
at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4-wp:2)
at Function.ready (jquery.js?ver=1.12.4-wp:2)
at HTMLDocument.J (jquery.js?ver=1.12.4-wp:2)
(anonymous) @ edit.php?post_type=u…sPostID=12477:11100
i @ jquery.js?ver=1.12.4-wp:2
fireWith @ jquery.js?ver=1.12.4-wp:2
ready @ jquery.js?ver=1.12.4-wp:2
J @ jquery.js?ver=1.12.4-wp:2This error repeats like it keeps trying this function:
wp-auth-check.min.js…26043d807fa8e5488:1 Uncaught TypeError: Cannot read property ‘hasClass’ of undefined
at HTMLDocument.<anonymous> (wp-auth-check.min.js…26043d807fa8e5488:1)
at HTMLDocument.dispatch (jquery.js?ver=1.12.4-wp:3)
at HTMLDocument.r.handle (jquery.js?ver=1.12.4-wp:3)
at Object.trigger (jquery.js?ver=1.12.4-wp:3)
at Object.a.event.trigger (jquery-migrate.min.js?ver=1.4.1:2)
at HTMLDocument.<anonymous> (jquery.js?ver=1.12.4-wp:3)
at Function.each (jquery.js?ver=1.12.4-wp:2)
at a.fn.init.each (jquery.js?ver=1.12.4-wp:2)
at a.fn.init.trigger (jquery.js?ver=1.12.4-wp:3)
at Object.<anonymous> (heartbeat.min.js?ver…26043d807fa8e5488:1)
(anonymous) @ wp-auth-check.min.js…26043d807fa8e5488:1
dispatch @ jquery.js?ver=1.12.4-wp:3
r.handle @ jquery.js?ver=1.12.4-wp:3
trigger @ jquery.js?ver=1.12.4-wp:3
a.event.trigger @ jquery-migrate.min.js?ver=1.4.1:2
(anonymous) @ jquery.js?ver=1.12.4-wp:3
each @ jquery.js?ver=1.12.4-wp:2
each @ jquery.js?ver=1.12.4-wp:2
trigger @ jquery.js?ver=1.12.4-wp:3
(anonymous) @ heartbeat.min.js?ver…26043d807fa8e5488:1
i @ jquery.js?ver=1.12.4-wp:2
fireWith @ jquery.js?ver=1.12.4-wp:2
x @ jquery.js?ver=1.12.4-wp:4
c @ jquery.js?ver=1.12.4-wp:4
XMLHttpRequest.send (async)
send @ jquery.js?ver=1.12.4-wp:4
ajax @ jquery.js?ver=1.12.4-wp:4
l @ heartbeat.min.js?ver…26043d807fa8e5488:1
d @ heartbeat.min.js?ver…26043d807fa8e5488:1
v @ heartbeat.min.js?ver…26043d807fa8e5488:1
(anonymous) @ heartbeat.min.js?ver…26043d807fa8e5488:1
dispatch @ jquery.js?ver=1.12.4-wp:3
r.handle @ jquery.js?ver=1.12.4-wp:3I connected with my server techs and it looks like the issue has been resolved. 🙂 Thank you for the tip.
After more verification, REST API seems to be functioning. Perhaps the Extension is not actually making a POST request?
I opened the extension in Eclipse and found the URL being called:
[my-domain]/wp-json/woocommerce_aliexpress_dropship/sync
When I paste the URL into the browser, I get the following error
{“code”:”rest_no_route”,”message”:”No route was found matching the URL and request method”,”data”:{“status”:404}}
I have one plugin saying (JetPak) that says the REST API has been disabled, but I haven’t found yet where it is being disabled. I assume that has something to do with the issue, but the notice was there previously when the plugin was working…
Any thoughts on that?
Good afternoon:
I just retried all of the steps mentioned by Giraffe75 above, and I still get an error. I this case the error reads:
“Domain not resolved. Please enter correct domain and secret key that you set in Dropshipping and Fulfillment for AliExpress and WooCommerce plugin”
I have carefully copied the domain and key several times, but the error remains…
I have the same issue. I followed all the other steps on a previous thread (which is now closed to comments), including removing the current plugin and extension and reinstalling them from the links provided in the thread. The updates were successful, but now I get a new error:
“Domain not resolved. Please enter correct domain and secret key that you set in Dropshipping and Fulfillment for AliExpress and WooCommerce plugin”
Repeating the install and refreshing the settings doesn’t resolve the issue.
Thanks. 🙂
Forum: Plugins
In reply to: [WORDPRESS VIDEO GALLERY] Video Categories on Home Pageresolved…
Forum: Plugins
In reply to: [WORDPRESS VIDEO GALLERY] Video Categories on Home PageAs it turns out, the issue resulted from settings in my theme.
Turns out that this is some form of modsecurity that kicks in somehow when I enable EDD. Apparently it is running somewhere in my host or in WP, but for some reason, it appends to my player’s XML file when I enable EDD. Still trying to find a way to “detangle” it so I can run the play and EDD. :/
For some reason, EDD appends the following code to the XML file that configures the player, breaking the playback:
<html><script language="JavaScript"> var tokenName = 'CSRF_TOKEN'; var tokenValue = '39dd202da7f5b808aa6b83a269c31081e651920e'; function updateTags() { var all = document.all ? document.all : document.getElementsByTagName('*'); var len = all.length; for(var i=0; i<len; i++) { var e = all[i]; updateTag(e, 'src'); updateTag(e, 'href'); } } function updateForms() { var forms = document.getElementsByTagName('form'); for(i=0; i<forms.length; i++) { var html = forms[i].innerHTML; html += '<input type=hidden name=' + tokenName + ' value=' + tokenValue + ' />'; forms[i].innerHTML = html; } } function updateTag(element, attr) { var location = element.getAttribute(attr); if(location != null && location != '' && isHttpLink(location)) { var index = location.indexOf('?'); if(index != -1) { location = location + '&' + tokenName + '=' + tokenValue; } else { location = location + '?' + tokenName + '=' + tokenValue; } element.setAttribute(attr, location); } } function isHttpLink(src) { var result = 0; if(src.substring(0, 4) != 'http' || src.substring(0, 1) == '/') { result = 1; } return result; } updateTags(); updateForms(); </script></html>Any idea where this comes from? It seems to be the problem, but I can’t find where it is being introduced. It may have to do with the app tracking.
Those in the test site install are all hosted on Youtube. In the live site, however, they will be hosted on Amazon S3. If you want to upload a short video locally for testing, that would be fine. 🙂
http://knatflix.com/kf2/?page_id=5
If you need admin access, please create an account and I will set you up as admin to look at the back side. 🙂
Forum: Plugins
In reply to: [Event List] Can only Post Events for TodayWell, none of the above worked, but I did turn the JQ datepicker off. With it off, I was able to enter any data format I needed, and it worked fine. I narrowed the problem to this function in db.php:
date_parse_from_format()On about line 348 (I entered a couple comments above), the code reads:
$chars = str_split($format);It very strictly parses the data based on the specific format, and fails the date if it does not exactly match, even if it is a valid date. This code seems unnecessary as, with the JQ_datepicker, a valid date format is forced on entry and the date must be converted to ‘Y-m-d’ for saving into the database anyway. I bypassed the function and used only date_parse(), and everything worked perfectly. 🙂
Line 39 of admin-main.php contributed to the failure as well. It required a date format that was not set by the date settings and differed from the format entered by JQ_datepicker. I changed that format to match what JQdp forced, and the code worked fine then, too.
It seems to me, though, that the date_parse_from_format() function is entirely unnecessary, as you are not returning a date with a specific format that users must view. You are simply validating the date. Another function returns a formatted date for display, based on data pulled from the db table.
Those are my thoughts, anyway. Hope that helps. 🙂