rcore_hotel
GeneralStep by step installation guide, config preview, locale preview, common issues & solutions and most importantly code snippets to help you integrate our system with known resources.
Common Issues & Solutions
this script REQUIRES artifact version 4752 or newer
Unknown column 'extra' in 'field list'

rcore_hotel needs extra info in billing so it can recognize invoices given from the hotel. So please copy & paste this SQL query
ALTER TABLE billing ADD extra TEXT NOT NULL DEFAULT '{}' AFTER create_date;
If you're having an error with "TEXT" can't have a default value, please instead of the one above use this one below.
ALTER TABLE billing ADD extra VARCHAR(1024) NOT NULL DEFAULT '{}' AFTER create_date;
You lack the required entitlement
Do you see something like this in the console?

Please read this guide: Error: You lack the required entitlement
Syntax error near '<\1>'
Do you see something like this in the console?

Please read this guide: Error: syntax error near '<\1>'
Could not find dependency / Can't run
Do you see something like this in the console?



Follow this guide please: Updating server
Do you see something like this in the console?


Follow this guide please: onesync
Last updated
Was this helpful?