Errors and Messages
8 minutes to readThis section contains a list of common error codes and messages you may encounter while using the Caspio platform.
If your problem is not answered on these guides, please contact Caspio Support team.
Errors
Error code | Description |
---|---|
2081 | Operation cannot be performed. This error code is returned when the operation fails in a triggered action. Review the triggered actions which modify data in the data source of your DataPart. |
2083 | Operation cannot be performed due to a system limitation. This error is shown when the system limits prevent the operation from being executed. Since the most frequent cause of this error is the exceeded total number of operations performed in a triggered action, we recommend you reviewing your triggered actions. |
2130 | Operation cannot be performed due to a system limitation. This error is shown when the system limits prevent the operation from being executed. Since the most frequent cause of this error is the exceeded total number of nested levels in a triggered action, we recommend you reviewing your triggered actions. |
50501 | The deploy code of the DataPage may be missing the complete app key. The DataPage is deleted and no longer exists in your account. Select the DataPage, click Deploy, choose the preferred deployment method, copy the deploy code and replace the deploy code on your host page with the new version. |
50510 | This DataPage is not configured for public access.
Enable external access to the DataPage.
|
50522 | This DataPage belongs to Caspio Account which has exceeded one of its usage limits. Please ask your administrator to increase the limit for Caspio Account. This error occurs when one or more resources (for example emails, storage or data transfer) utilized by your DataPages has reached its daily or monthly limits. If you want to increase the limits, upgrade your account to a higher plan or contact Caspio Support for assistance. |
60011 | There are 2 possible reasons:
|
60023 | This DataPage must be accessed via HTTPS only. The reason you get this error message is because your DataPage deployment inside the Caspio platform has SSL encryption enabled. However, you are trying to access the DataPage through “http” protocol. Use HTTPS in the URL or the Embed deploy code in your webpage source. If you don’t need the SSL encryption, then you can clear the Enable SSL encryption check box in the DataPage deployment screen. |
60025 | Cannot redirect to the specified destination page. This DataPage is designed to be embedded on a web page.
You may encounter this error in two cases:
|
60040 | Operation cannot be performed because one or more values have a duplicate in a unique field. This error is shown when the form submission results in a value duplication in a unique field that is not visible on the form(for example, a formula field). It could be also caused by a triggered action attempting to insert a non-unique value to a unique field. Review your table design, the current data in data source table, and triggered actions. |
60041 | Operation cannot be performed due to a data integrity restriction. This error message is shown when table relationships have data integrity enforcement enabled and the requested operation violates this enforcement. Review your table relationships for the data source table. |
62504 | Failed security check. DataPage cannot be rendered from this account type. This error occurs when you store users’ passwords in a Text (255) field in a user table. Due to data security restriction, passwords must be stored in a Password data type field. |
Messages
Message | Description |
---|---|
Duplicates values are not allowed | You see this message because the Caspio platform enforces the Unique integrity rule of a field in your table. Submitting any record that violates the Unique rule is not allowed. If your email field is set to unique, it is not possible to enter a duplicate email address. Note that “blank” is also considered a value. As a result the unique field can only be left blank in one record. To see or change the “Unique” property of a field, open the table in Design mode.Bottom of Form |
Cannot redirect to Facebook or Error: redirect_uri_mismatch | This error occurs when your ID service provider is expecting to be reached via HTTPS but your application is calling it in HTTP.
|
Object moved to here or This webpage is not available. | You see this error when the form you are submitting or the DataPage you are interacting with is accessed from your file system and is not deployed to a web server. Upload your DataPage to a web server and access the page via its URL. If you don’t have a web server, instead of getting the embed code from Caspio’s Deployment screen, get a direct URL to your DataPage. For more instructions, go to the article on DataPage Deployment. |
Error in formula | While performing calculations in a DataPage using Calculated Fields or Aggregate functions, there could be a number of arithmetic issues contributing to the message, Error in formula, but there are common situations when your formula is causing the error. Division by zero: Example: “A/B” works fine, except when B is zero and you get the error message. Case When [@field:B]= '0' Then null Else ([@field:A]/[@field:B]) End Blank values: Example: A+B works fine, except when the field value is blank. IsNull([@field:A],0)+IsNull([@field:B],0) Non-numeric values: Example: A+B works fine, except when the field value is text such as N/A. (Case When IsNumeric([@fieldA]) = 1 Then [@fieldA] Else 0 End) + (Case When IsNumeric([@fieldB]) = 1 Then [@fieldB] Else 0 End) Table or Field name change: If table or field name is changed in the table design and they are referenced in the calculated field or calculated value on a DataPage level in a select query, they won’t be updated in the formula which results in “Invalid formula” error message. Mismatch data type: If fields in the formula do not have the same data type. If result expressions in Case formula do not have the same data type. Example: |