Questions tagged [refinerycms]

Refinery CMS, or RefineryCMS, often shortened to Refinery, is an open source content management system written in Ruby as a Ruby on Rails web application with jQuery used as the JavaScript library. Refinery CMS supports Rails 4 and 5.

Refinery CMS, often shortened to Refinery, is an open source content management system written in Ruby as a Ruby on Rails web application with jQuery used as the JavaScript library. Refinery supports Rails 5.1+.

Refinery differs from similar products by targeting a non-technical end user and allowing the developer to create a flexible website rapidly by staying as close as possible to the conventions of the Ruby on Rails framework.

Refinery started as a closed sourced project at Resolve Digital in 2004 and went on to be released as open source software under the MIT License on the 28th May 2009. Since then it has gained popularity and is now a popular Ruby on Rails CMS with more than 70 contributors and an active community extending the application with engines and themes.

Features:

  • Engine architecture
  • WYSIWYG content editing
  • Localisation (currently supports 10 languages)
  • Page management
  • Image and File management
  • Contact form and inquiry management
  • Search engine optimization (SEO)
495 questions
0
votes
1 answer

RefineryCMS + Extend the routes for image upload custom methods

In my refinery-cms application, I have added one custom method for image upload. No Issue is like when I define the routes in GemFile Code, it works. But I am not getting the way to extend my routes present in my application for that custom method.
Rubyist
  • 6,486
  • 10
  • 51
  • 86
0
votes
1 answer

How to get the name of the current user in Refinery?

In RefineryCMS, for some functionality I have to store the present logged in user's first name and last name. How to get logged in user's first name and last name?
Rubyist
  • 6,486
  • 10
  • 51
  • 86
0
votes
1 answer

RefineryCMS Changing Site Name in Production

I have a refinery site up on heroku and, in order to change the site name I have been going to my local copy, changing config.site_name, adding the new config file to my git repository, and doing git push heroku master. Though I don't anticipate…
VictorO
  • 147
  • 2
  • 8
0
votes
1 answer

refineryCMS install error

(sorry for my english) I tried to install with gem install refinerycms its drop: Fetching: acts_as_indexed-0.7.8.gem (100%) ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions into the…
Bendegúz
  • 758
  • 7
  • 15
0
votes
2 answers

jQuery Backstretch displaying on Multiple Pages in Refinery Rails App

I have a jQuery plugin Backstretch installed and working with my Refinery Rails App. The plugin loads the 1 image I have listed in application.js //= require…
nil
  • 2,238
  • 1
  • 19
  • 28
0
votes
1 answer

How to modify markup in Refinery CMS menu partials

I have done the rake override for _header, _menu, and _menu_branch.html.erb files. What I would like to do is modify the markup of the menus so that an icon is shown next to the title. I think the file I want is menu.html.erb, below:
rakitin
  • 1,943
  • 6
  • 25
  • 51
0
votes
1 answer

Best way to get the Page main title from a menu_branch in Refinery cms?

I'm setting up a RefineryCMS site, I'd like to have the menu links showing the page full title on hover. In other words, every li element of the menu should be in this form:
  • Darme
    • 6,984
    • 5
    • 37
    • 52
  • 0
    votes
    0 answers

    Refinery CMS - it creates an empty Rails app

    I'm trying to create an application using Refinery CMS. What I did was exactly from the tutorials: refinerycms rickrockstar cd rickrockstar rails s It creates an empty Rails app which I can create by saying rails new my_new_app What did I do…
    Alan Coromano
    • 24,958
    • 53
    • 135
    • 205
    0
    votes
    0 answers

    Refinery CMS and Extensions with Migrations. Anything I should know?

    I've inherited a rails web application that has Refinery CMS as the root app with multiple apps under the /vendor/extensions directory. The applications under this directory have database migrations under their db directory. Currently, this project…
    aarona
    • 35,986
    • 41
    • 138
    • 186
    0
    votes
    0 answers

    RefineryCMS Dashboard showing 500 Intenal Server Error

    I was hired to add a few changes to a site built on Rails 3.0.3 and RefineryCMS 0.9.9 . I am new at Rails and Capistrano, so I tried to do a test deploy to the site in order to get the hang of working with the tools. I downloaded the production…
    0
    votes
    1 answer

    Override refinerycms pages extension from another extension

    I'm making redirecting extension and I'd like to make a decorator for find_page in PagesController in pages extension (to handle redirect if page is not found). Everything works fine if the decorator is in main app. If I put it in my redirect…
    Slobodan Kovacevic
    • 6,848
    • 3
    • 29
    • 33
    0
    votes
    0 answers

    Rails Refinery styles don't appear in production

    When I go to the Refinery pages index or editor on my production environment, I can't see most of the links or buttons because none of the Refinery styles appears. (But they do appear on my development machine.) Does anyone know what I can do to…
    JellicleCat
    • 28,480
    • 24
    • 109
    • 162
    0
    votes
    1 answer

    RefineryCMS - Custom Image Engine using Dragonfly for Multiple Resize on upload - MassAssign Error when trying commit uid to database

    I've learnt much from the invaluable resource stackoverflow is. I am exceedingly greatful for the many excellent contributions made. Long live open source and those that make it real! For all the great information here already, I have not been able…
    0
    votes
    1 answer

    How to mount refinerycms engine on a custom path in existing rails application

    I intend to integrate refinery cms into an existing rails 3.2 application. I setup a refinery engine as per this guide http://refinerycms.com/guides/with-an-existing-rails-app. I do not want refinery to generate all the pages in my app. Only a set…
    ashsav
    • 121
    • 1
    • 5
    0
    votes
    1 answer

    Not redirection. The page isn't redirecting properly. Translations in Refinerycms

    I have a page in German name as 'kontakt', but the access is with /contact. I start to fiy this bug, thinking in the translations and I did changes in: (controller) inquiries-controller.rb: changing def find_page @page =…