© 2015 X2Engine Inc.
Difference between revisions of "Known Issues"
From X2Engine
(→Troubleshooting) |
(→Troubleshooting) |
||
Line 5: | Line 5: | ||
|- | |- | ||
! scope="col" | Description | ! scope="col" | Description | ||
− | ! scope="col | + | ! scope="col" | Affected Installations |
! scope="col" | How to Fix | ! scope="col" | How to Fix | ||
|- | |- | ||
Line 23: | Line 23: | ||
| | | | ||
Run the following SQL: | Run the following SQL: | ||
− | + | ||
− | + | '''Versions earlier than 2.0:''' | |
+ | <syntaxhighlight lang="sql"> | ||
+ | INSERT INTO x2_fields (modelName, fieldName, attributeLabel, modified, custom, type, required, readOnly, linkType, searchable, relevance) | ||
+ | VALUES ("Quote", "products", "Products", 0, 0, "varchar", 0, 0, NULL, 0, ""), | ||
+ | ("Quote", "existingProducts", "Existing Products", 0, 0, "varchar", 0, 0, NULL, 0, "") | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | '''Versions 2.0 and later:''' | |
− | + | <syntaxhighlight lang="sql"> | |
+ | INSERT INTO x2_fields (modelName, fieldName, attributeLabel, modified, custom, type, required, readOnly, linkType, searchable, relevance,isVirtual) | ||
+ | VALUES ("Quote", "products", "Products", 0, 0, "varchar", 0, 0, NULL, 0, "",1), | ||
+ | ("Quote", "existingProducts", "Existing Products", 0, 0, "varchar", 0, 0, NULL, 0, "",1) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
|} | |} | ||
= Running Updates Manually = | = Running Updates Manually = | ||
In some cases, it may be desirable to bypass the update notifications and go straight to the updater to check if there is a new version available. To run an update or check for an update manually, log in as the admin user and in the browser's address bar, replace "index.php/site/whatsNew" with "index.php/admin/updater", and hit enter to run the action. | In some cases, it may be desirable to bypass the update notifications and go straight to the updater to check if there is a new version available. To run an update or check for an update manually, log in as the admin user and in the browser's address bar, replace "index.php/site/whatsNew" with "index.php/admin/updater", and hit enter to run the action. |
Revision as of 20:01, 17 October 2012
Troubleshooting
Description | Affected Installations | How to Fix |
---|---|---|
Update notifications do not work |
|
|
Cannot view or create quotes |
|
Run the following SQL: Versions earlier than 2.0: INSERT INTO x2_fields (modelName, fieldName, attributeLabel, modified, custom, type, required, readOnly, linkType, searchable, relevance)
VALUES ("Quote", "products", "Products", 0, 0, "varchar", 0, 0, NULL, 0, ""),
("Quote", "existingProducts", "Existing Products", 0, 0, "varchar", 0, 0, NULL, 0, "")
Versions 2.0 and later: INSERT INTO x2_fields (modelName, fieldName, attributeLabel, modified, custom, type, required, readOnly, linkType, searchable, relevance,isVirtual)
VALUES ("Quote", "products", "Products", 0, 0, "varchar", 0, 0, NULL, 0, "",1),
("Quote", "existingProducts", "Existing Products", 0, 0, "varchar", 0, 0, NULL, 0, "",1)
|
Running Updates Manually
In some cases, it may be desirable to bypass the update notifications and go straight to the updater to check if there is a new version available. To run an update or check for an update manually, log in as the admin user and in the browser's address bar, replace "index.php/site/whatsNew" with "index.php/admin/updater", and hit enter to run the action.