vendetta V Posted January 27, 2016 Share Posted January 27, 2016 I'm importing some categories but it turns out that if the categories have a 10-digit id does not work and I jump error not to have created the category, but that category I leave at 9 digits and works perfectly. This does not work:3003900500 But if I remove the zero to the right if it works:300390050 I tried to increase int 10-11 in database but nothing.I'm turning but I can not understand. Which may be the fault? Link to comment Share on other sites More sharing options...
Simonas Invertus Posted January 27, 2016 Share Posted January 27, 2016 In my PrestaShop table ps_category, id_category int(10) So it should work with length 10 but it certainly will not work with length 11. What you need to do to increase it to 11 or/and change from int to longint. Link to comment Share on other sites More sharing options...
vendetta V Posted January 28, 2016 Author Share Posted January 28, 2016 In my PrestaShop table ps_category, id_category int(10) So it should work with length 10 but it certainly will not work with length 11. What you need to do to increase it to 11 or/and change from int to longint. bigint (11) does not work Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now