Forum Replies Created
-
AuthorPosts
-
RRowley
ParticipantNo. I wanted an export of all database tables. There were only two tables in what you provided.
RRowley
ParticipantWould you please export the database structure and attach it to a response to this message? I need the structure, not the data.
RRowley
ParticipantYes. Select the database in phpMyAdmin then select the SQL tab. Copy and paste the commands, one at a time, into the command box and execute it. When you encounter one that fails, record the issue and the command and report that. Thanks…
RRowley
ParticipantThe error for patch #318 foreign keys needs to be resolved. Any more information on this? The following are the commands that comprise this patch. Try applying them one at a time in the given order and see where it fails.
ALTER TABLE
si_cron
ADD FOREIGN KEY (invoice_id
) REFERENCESsi_invoices
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_cron_log
ADD FOREIGN KEY (cron_id
) REFERENCESsi_cron
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense
ADD FOREIGN KEY (biller_id
) REFERENCESsi_biller
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense
ADD FOREIGN KEY (customer_id
) REFERENCESsi_customers
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense
ADD FOREIGN KEY (invoice_id
) REFERENCESsi_invoices
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense
ADD FOREIGN KEY (product_id
) REFERENCESsi_products
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense
ADD FOREIGN KEY (expense_account_id
) REFERENCESsi_expense_account
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense_item_tax
ADD FOREIGN KEY (expense_id
) REFERENCESsi_expense
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_expense_item_tax
ADD FOREIGN KEY (tax_id
) REFERENCESsi_tax
(tax_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_inventory
ADD FOREIGN KEY (product_id
) REFERENCESsi_products
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoices
ADD FOREIGN KEY (biller_id
) REFERENCESsi_biller
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoices
ADD FOREIGN KEY (customer_id
) REFERENCESsi_customers
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoices
ADD FOREIGN KEY (type_id
) REFERENCESsi_invoice_type
(inv_ty_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoices
ADD FOREIGN KEY (preference_id
) REFERENCESsi_preferences
(pref_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoice_items
ADD FOREIGN KEY (invoice_id
) REFERENCESsi_invoices
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoice_items
ADD FOREIGN KEY (product_id
) REFERENCESsi_products
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoice_item_tax
ADD FOREIGN KEY (tax_id
) REFERENCESsi_tax
(tax_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_invoice_item_attachments
ADD FOREIGN KEY (invoice_item_id
) REFERENCESsi_invoice_items
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_log
ADD FOREIGN KEY (user_id
) REFERENCESsi_user
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_payment
ADD FOREIGN KEY (ac_inv_id
) REFERENCESsi_invoices
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_payment
ADD FOREIGN KEY (ac_payment_type
) REFERENCESsi_payment_types
(pt_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_products
ADD FOREIGN KEY (default_tax_id
) REFERENCESsi_tax
(tax_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_products
ADD FOREIGN KEY (default_tax_id_2
) REFERENCESsi_tax
(tax_id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_products_attributes
ADD FOREIGN KEY (type_id
) REFERENCESsi_products_attribute_type
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_products_values
ADD FOREIGN KEY (attribute_id
) REFERENCESsi_products_attributes
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_user
ADD FOREIGN KEY (domain_id
) REFERENCESsi_user_domain
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;
ALTER TABLEsi_user
ADD FOREIGN KEY (role_id
) REFERENCESsi_user_role
(id
) ON UPDATE CASCADE ON DELETE RESTRICT;RRowley
ParticipantHaven’t heard back from you. Did the change I provided solve your problem?
RRowley
ParticipantThis is an error from the library the generates the table that list things like invoices, products, customers, etc. I believe the issue is related to your implementation not having completed the patch process. I responded to your other request earlier today with a zip file containing an sql file to import to your database. This will create a table you are missing and hopefully, allow the patch process to complete. Then see if this is resolved.
RRowley
ParticipantImport the sql file in the attached zip to create an empty table named, si_invoice_item_attachment. Then access SI. It should have updates to apply. Select UPDATE and hopefully it will complete the update of your database.
This missing table is probably something that I created manually in the past, forgot about it and thought it was part of the standard application. It isn’t used at all but since the patch manager expects it, it needs to be there.
Let me know how this works.
Attachments:
RRowley
ParticipantWhen you pull your schema, please do include the following tables: si_extensions, si_sql_patchmanager & si_system_defaults. The data in these tables don’t contain any secure/personal information. This is a little more work than just dumping the schema, but not too much.
RRowley
ParticipantI would appreciate a copy of your database schema. You can download it with phpMyAdmin and exclude data from it and I’ve added the ability to attach files to this forum. I want to see if there is something in the structure that prevents the update script from working.
RRowley
ParticipantI’m interested in correcting the problem with applying patches to the DB with the master_2019.2.1_beta version. Any chance you can provide me with a dump of your database structure? Also, what version of php and mysql are you running (xampp version OK if using)?
RRowley
ParticipantYou should already have the setting in the custom.config.php file. It looks like this:
local.locale = en_US
local.precision = 2This of course if for USA and two decimal place precision. If you look in the “lang” directory, you will see all the different country codes for languages supported on the system. Find yours and replace “en_US” with the file name of your language.
RRowley
ParticipantCan you supply a screen shot of the database request? If it is the step I believe it is, it is not able to access your database which means some setting is incorrect.
Also, you might try putting single quotes around the database password to see if that helps.
RRowley
ParticipantI just uploaded a change that uses the local.locale setting in the custom.config.php file to format the amount fields in the invoices and payments lists. I believe this will address the issue you pointed out. The version for this update is: 2019.2.1 – 20190613.
RRowley
ParticipantClick on the Settings tab and then on the Inv Prefs menu option. You can set the currency symbol to use as well as the currency formatting code country in each of the invoice preference records.
RRowley
ParticipantIt is a good idea but not something that can yet be done.
-
AuthorPosts
Recent Comments