You're right, I have an error in Field 'lang_explain' doesn't have a default value [1364]warmweer wrote: ↑Sat Jan 13, 2018 4:24 pmThe SQL error tells you exactly where the problem is.IldeNet wrote: ↑Sat Jan 13, 2018 1:03 am Can you help me with this?Code: Select all
SQL ERROR [ mysql4 ] Column 'lang_name' cannot be null [1048] SQL INSERT INTO phpbb_profile_lang (field_id, lang_id, lang_name, lang_explain) VALUES (22, '1', NULL, NULL), (22, '2', NULL, NULL), (23, '1', NULL, NULL), (23, '2', NULL, NULL), (24, '1', NULL, NULL), (24, '2', NULL, NULL), (25, '1', NULL, NULL), (25, '2', NULL, NULL) BACKTRACE
The field lang_name cannot have a NULL value, so the insert fails.
Check the source database and fill these source fields with a language code (probably en )
Apparently the field lang_explain will also receive a NULL: >> check if that is allowed.
but none of these values appear in my database.
for the first error, I deleted the line "'lang_name' => $profilefield['title']," of functions_vb3.php
for this new error, how can I give it value?
Thank you very much for the help and for your time. regards