Prestashop 1.6.0.9 Error sign up user - prestashop

I'm creating my first e commerce using prestashop 1.6.0.9 but when I try to register one user i obtain the error:
"TECHNICAL ERROR: unable to load form. Details: Error thrown: [object
Object] Text status: parsererror"
Anyone knows how can i fix it?
My website is: http://www.studio10-ecommerce.es/
Thank you so much.

Your JSON object syntax is broken by a PHP error. You can either:
Check your PHP error log;
Add a console.log(data); to the JavaScript file to see the actual response

Related

Login with LinkedIn is returning "The application is disabled"

I'm trying to set un a Log in with LinkedIn button. I followed all the steps in this post:
https://www.digitalocean.com/community/tutorials/django-authentication-with-facebook-instagram-and-linkedin#step-4-%E2%80%94-linkedin-authentication
The only difference is that my Authorized redirect URLs for your app is this one:
http://localhost:8000/auth/complete/linkedin-oauth2/
I added the keys in my backend, and I also added the "Sign In with LinkedIn" option inside the "products" tab.
But I'm still getting this message when I try to Log In:
I don't know if this is helpful, but I'm getting this error in the console:
Uncaught TypeError: Cannot read property 'textContent' of null
I have no idea what is going on here, I can't find someone with the same problem.
Do you have any clue what can I be doing wrong?
The problem was caused by an outdated Django dependency.
The dependency was social-auth-core and I updated it from version 3.2.0 to 4.0.3, that fixed the problem.

RSA API Erro 500

I'm trying to make content inclusion via the RSA Archer API, though it is returning me error 500 and the following message
{
     "Message": "An error has occurred."
}
How do I debug and identify this error?
With a 500 Error the first spot I'd check is making sure that the API is not a folder in IIS, and it's an application. Then check that it's using the same application pool as the parent (/RSAArcher or /Archer).
Without any further information on what call you're trying to make, or the code you're using to make that call, that's all I can suggest.

Prestashop login error: "Details: Error thrown: [object Object]"

In Prestashop backend login page, when I try to login I get the following message:
TECHNICAL ERROR:
Details: Error thrown: [object Object]
Text status: parsererror
Screen Picture:
When the admin login form is submitted an ajax request is sent to the server, please take a look at the response of that ajax request after enabling error debugging, there must be an error shown there. Share the details of that error with us so that we guide you better.
FYI, to enable error debugging in PrestaShop you can follow the steps below.
open file: config/defines.inc.php (using FTP or hosting control panel)
change false-->true:
define('_PS_MODE_DEV_', false);
define('_PS_MODE_DEV_', true);

SEMRush API ERROR 135 :: API REPORT TYPE DISABLED

I have code which is calling SEMRush API and it is working fine for a while, and then suddenly I stared getting 403 on API call with SEMRush error:
ERROR 135 :: API REPORT TYPE DISABLED
The API endpoint which I am calling is:
http://us.api.semrush.com/?action=report&type=phrase_this&key={xxxxxx}&export=api&export_columns=Ph,Nq,Cp,Co,Nr&phrase=sport
I cannot find anything about this error in their documentation.
Please does anyone know what this error means and how to resolve it?
Try updating your API call to the newer method. According to their documentation the database is no longer a subdomain and rather a parameter.
So instead of http://us.api.semrush.com/?action=report&type=phrase_this&key={xxxxxx}&export=api&export_columns=Ph,Nq,Cp,Co,Nr&phrase=sport
Try http://api.semrush.com/?action=report&type=phrase_this&key={xxxxxx}&export=api&export_columns=Ph,Nq,Cp,Co,Nr&phrase=sport&database=us

FB.ui() with method: "feed" is broken

It seems that method: 'feed' within FB.ui() using FB JavaScript SDK is broken. Consider the following example:
Having an app running as Page Tab on a FB page AND Canvas-App
All needed fields in the app section are filled out correctly
Using FB.ui() with method: 'feed' to let a user tell someone about it
The link-Property of method: 'feed' is set the Canvas-URL and for testing to the Page Tab URL of the app
Everything worked for us until a few days ago (don't remember the exact day)
Debugged over and over and couldn't find a bug
We always get the following error, now even with apps that formerly worked:
"An error occurred with xxx. Please try again later.
API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: redirect_uri is not owned by the application."
At least you got an error message.
I've the same but the following :
"An error occurred with xxx. Please try again later."
No error code or something.
Did you changed something on your app config ?
Your error code might means :
bad redirect_uri (mb you hav'nt the same appId or something)
You just changed your app domain name and your redirect uri isn't in the same domain
Try to access your app with your redirect_uri, if an error shows up you need to fix your redirect.
Good luck !