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
5
votes
5 answers

How to install Refinery CMS using Rails 4

I previously never had a problem with Refinery. I was refreshing my knowledge by following along to the tutorial http://railscasts.com/episodes/332-refinery-cms-basics .Then when I created a new app with Refinery CMS, I got this error Bundler could…
JGallardo
  • 11,074
  • 10
  • 82
  • 96
5
votes
2 answers

rails refinerycms s3 upload error

I'm trying to configure RefineryCMS to use Fog for S3 uploads. Here's the error I'm getting: ArgumentError in Refinery::Admin::ImagesController#create The following keys are invalid: :url My configuration in…
Tyler
  • 829
  • 11
  • 26
5
votes
2 answers

How do you loop through a field on a custom engine in refinery cms

I'm creating a custom engine in refinery cms and I have a field called "PDF" that is a refinery resource field type. Some entries in the engine will only have one pdf, while others will have multiple pdf's. Is there a way to do this without creating…
Lee McAlilly
  • 9,084
  • 12
  • 60
  • 94
5
votes
1 answer

Refinery CMS: generating migrations for existing models within an engine

I want to add an attribute to a model I've created within a Refinery CMS engine. I know I could do the following: rails generate migration AddPartNumberToProducts part_number:string Manually move the migration file from db/migrate to…
Mike
  • 9,692
  • 6
  • 44
  • 61
5
votes
1 answer

What is the currently accepted way to embed forms in Refinery CMS sites?

I'd like to create a couple of forms on a Refinery based CMS site. One is a contact form, and another is a variation on this contact form with a few additional fields. For this form, I've looked at the Refinery inquiry gem but I can't seem to find a…
purpletonic
  • 1,858
  • 2
  • 18
  • 29
4
votes
4 answers

Rails routing url name helpers

What basic settings are required to make sure routing url name helpers work? For instance in my route I have the following: Blog::Application.routes.draw do resources :news, :as => :news_items, :controller => :news_items, :only => [:show,…
mabounassif
  • 2,311
  • 6
  • 29
  • 46
4
votes
1 answer

Can I use RefineryCMS with Cancan or similar?

I'm contemplating using RefineryCMS for a large web application which will include newsletters, blogs, forums, tutorials etc. Creating those things I know RefineryCMS would be great at. My question is can RefineryCMS deal with different types of…
map7
  • 5,096
  • 6
  • 65
  • 128
4
votes
1 answer

Heroku + Refinery + S3 : get "Unknown region" error

Following How to Install Refinery on Heroku I get ArgumentError (Unknown region: "EU_Ireland") UPDATE: I'm actually using fog (not aws-s3) as required in last version: lsoave@ubuntu:~/rails/heroku/ennefoto$ egrep "fog|aws" Gemfile # gem 'aws-s3',…
4
votes
1 answer

Trouble Getting s3 set up in Rails 3 Refinery CMS App

I'm trying to get my refinery cms image storage to Amazon s3 and I'm following this guide: http://refinerycms.com/guides/how-to-use-amazon-s3-for-storage But I'm blocked here: There are a number of ways to set these with your credentials,…
Lee McAlilly
  • 9,084
  • 12
  • 60
  • 94
4
votes
1 answer

Multiple Layouts in Refinery CMS

Does anyone know how to make multiple layouts in refinery? It doesn't have to be in the user admin I just need to be able to programmatically tell some refinery pages to use one layout and others to use a different one. thanks.
fregas
  • 3,192
  • 3
  • 25
  • 41
4
votes
1 answer

what's the differences between helper and include in a controller?

i'm working on refinerycms, trying to add preview feature to news like pages, i'm trying to include my own helper to a controller, 'include' does not works, but 'helper' works. sample code: module Refinery module News module Admin class…
dfang
  • 1,366
  • 15
  • 41
4
votes
3 answers

RefineryCMS 2.1.0 and Zurb 4 Top menu with dropdown navigation

I'm trying to use Zurb foundation to style an app built with the latest version of refinery. I began by following this guide http://blog.flatironschool.com/post/54511602806/build-a-blog-based-site-with-refinerycms but the latest version of refinery…
TimK
  • 109
  • 1
  • 9
4
votes
1 answer

How do i work with nested model attributes in refinerycms?

I have seen http://railscasts.com/episodes/196-nested-model-form-revised and tried the same doing with my refinery engine, but i am not able to see the nested fields in my form while adding a record from admin section and also I am not getting any…
4
votes
2 answers

gem install refinerycms, Unable to resolve dependencies

I'm trying to just install the refinerycms gem. This worked this morning: $ ruby -v ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.3.0] $ gem -v 2.0.3 $ gem sources *** CURRENT SOURCES *** https://rubygems.org/ $ gem install…
David Winiecki
  • 4,093
  • 2
  • 37
  • 39
4
votes
1 answer

Can we use refinerycms for user authentication purpose

Am developing one website for which I have to do user login and registration form for the authentication purpose. My question is can we do this using only refinerycms and if it is possible please tell me how to do this. If it is not possible then…
web spider26
  • 252
  • 4
  • 16
1
2
3
32 33