These are the steps to migrate/deploy to another domain: Export to sql your DB Replace your old domain to the new domain in the SQL, like: "https://localhost:3000/" into "https://mydomai...
Read MoreCamaleon CMS Permit you to customize your domains for old domains or support multiple domains to a single site, like this: # Add an initializer in config/initializers/camaleon_map_sites.rbRails.app...
Read MoreWhen you worked in your development environment using sqllite3 DB, you will need to migrate your DB to Production DB (Mysql or Postgres). Export development.sqlite3 into sql format:CMD: sqlite3 pr...
Read MoreFor many reasons you can try to avoid/verify the visits for categories, posts or any other, then by this way you can do it: Create an initializer Create a before filter for :category on CamaleonCm...
Read MoreBy this way you can extend, overwrite a Camaleon CMS Post Model. Create an initializer # config/initializers/my_custom_cama_post.rbRails.application.config.to_prepare do CamaleonCms::Post.class_ev...
Read MoreEnter your AWS + Cloudfront settings in Admin -> Settings -> General Site -> File System TabSample: After change your settings, go to media section to clear cache and fetch files from the ...
Read MoreThis is a sample which uploads a remote file to the CMS storage (local or aws): # lib/tasks/owen.rakenamespace :owen do desc "Test download external image" task download_image: :environment do incl...
Read MoreCamaleon CMS automaically generates rss content for each content/category/content group which can be easily modified.The default template to generate RSS is here:https://github.com/owen2345/camaleo...
Read MoreHow to add custom routes for my contents? and how to show them with a custom layout + template? Add the hook "on_render_post" in your config/config.json... "on_render_post": ["e_on_render_post"].....
Read MoreIf you want to have shared post tags, you can do it by this: Camaleon version >= 2.4.4.2 Create an initializer: my_app/config/initializers/shared_tags.rb Rails.application.config.to_prepar...
Read More