Re: Categories/Product Issue
Your issue is this
Code:
PHP Fatal error: 1054:Unknown column 'products_description2' in 'field list' ::
This looks like the NUMINIX product fields plugin. I would guess the files are installed, but somehow the database install did not get done/complete properly.
~Melanie
Re: Categories/Product Issue
Quote:
Originally Posted by
mprough
Your issue is this
Code:
PHP Fatal error: 1054:Unknown column 'products_description2' in 'field list' ::
This looks like the NUMINIX product fields plugin. I would guess the files are installed, but somehow the database install did not get done/complete properly.
~Melanie
If I delete that line in the file will that correct the issue because that field does not appear in the database.
Re: Categories/Product Issue
Quote:
Originally Posted by
Bruce1952
If I delete that line in the file will that correct the issue because that field does not appear in the database.
No, the file is looking for it to store the data. Go to Tools >> Developer tool and search for
products_description2
in the entire cart at the bottom.
There a most certainly others when you resolve this one. Make sure the plugin is fully re-installed with the database changes.
~Melanie
Re: Categories/Product Issue
Quote:
Originally Posted by
mprough
No, the file is looking for it to store the data. Go to Tools >> Developer tool and search for
products_description2
in the entire cart at the bottom.
There a most certainly others when you resolve this one. Make sure the plugin is fully re-installed with the database changes.
~Melanie
Running into the same EXACT problem. But I don't have NPF installed. Running through my admin and searching, yields no results. This is as I choose to search EVERYTHING (not just PHP files).
I ended up having to patch this problem by adding products_description2 to the $fields_to_skip variable for now and it worked. But I have no idea why this field is being looked for as it is not a part of my MySQL tables. Would appreciate a better fix.
Re: Categories/Product Issue
One of these things is true:
- You will have to check your files in admin vs a fresh download. You have modified files in your admin to include the field products_description2 - this is not a bug in Zen Cart.
- You have modified the products_description table to include this field, but you haven't updated the rest of your code to handle it. Delete the field from your products_description table or fix your code.