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 supports Rails 3.0.
0
votes
2answers
20 views
sequel adapter is missing by deploying a database to heroku
I'm trying to deploy my app on heroku. But everytime I try to push my database, I get the following error:
heroku db:push
Sending schema
Schema: 100% ...
1
vote
1answer
8 views
RefineryCMS + Error 'Index was created prior to version 0.6.8. Please delete it, it will be rebuilt automatically.'
In my refinery project, I am getting this error message .
Index was created prior to version 0.6.8. Please delete it, it will be
rebuilt automatically.
While creating and editing the pages, I ...
-1
votes
0answers
18 views
Every time I add a CMS download or Gem like refinery or Locomotive it kills my layout or ignores it… any ideas how to approach or avoid this? [closed]
I want to to add a CMS that allows me to use with twitter bootstrap. Any idead on approach? Suggestions or tips for this newbie would be greatly appreciated.
0
votes
0answers
34 views
Insert non-Refinery link into Refinery navigation menu
Refinery generates its navigation menu in the _menu and _menu_branch helpers. I want to keep the provided logic since it allows a user to create a new page. However, let's say I have a model Product ...
0
votes
1answer
27 views
Rails: Named scope works on Class but not instance of Class
Given the following code:
user_decorator.rb
Refinery::User.class_eval do
has_many :employees, :class_name => 'Refinery::Employee'
scope :active_employees,
lambda {
...
0
votes
1answer
11 views
RefineryCMS + Getting Strange Output at HTML page
I am using RefineryCMS tool to built one application, but I am getting some strange output.
Refer the Image:
I did not get the way to resolve it.
UPDATE :
Editor : wymeditor
0
votes
1answer
37 views
Refinery Image Uploading giving no route match (How do you change default image route in refinery?)
When uploading an image to the Refinery CMS I get a broken link.
No route matches [GET] "/system/images/W1siZiIsIjIwMTMvMDUvMDgvMjFfMjBfMjFfMzlfc3RlYWtfZmluYWwuanBnIl1d/steak-final.jpg"
Any idea ...
0
votes
1answer
20 views
NoMethodError and Refinery Engine in Rails
I'm trying to reuse a refinery engine on another page in refinery. In the routes.rb i've included:
match 'locations/:location_id/' => "locations/#index"
What is the right way to do this?
2
votes
0answers
89 views
CMS for Rails 4 + Ember.js
Is there a Rails gem that adds content management functionality to an existing Rails 4 application, which can be used for an Ember.js front-end via RESTful webservices + JSON?
0
votes
2answers
18 views
Overriding a refinery view, specific page
I have a refinery courses engine. It has 3 actions, show, index and classroom.
The routes work fine. For my classroom action, I am rendering a classroom view. Once again the view works fine but the ...
1
vote
1answer
30 views
Rails App Refinery+Devise: Can't access Devise views
newbie Rails developer here.
I'm trying to create an app that uses Devise for authentication and Refinery for content management. I've followed these tutorials:
...
1
vote
1answer
69 views
Ruby on Rails: Why do I have to use sudo for commands to succede?
I'm learning ruby on rails... I've was able to install an app on my OSX (10.8.3) localhost but it was very problematic most commands failed with permission-related errors unless I used sudo:
$ ...
-1
votes
1answer
25 views
Refinery CMS not installing on Rails3.2.6 app
I've added gem refinerycms, ~> 2.0.10 in my existing rails app built with rails version 3.2.6 but when I run "bundle command" I'm getting this error:
Bundler could not find compatible versions for ...
1
vote
1answer
59 views
Rails App “Permission Denied” error when installing refinerycms
While trying to install refinery, a rails app, I keep getting the following error:
ESL@new-host-2 ~$ refinerycms /Application/MAMP/htdocs/goodwatching
create
...
0
votes
2answers
31 views
Problems adding Devise model to a RefineryCMS app
I'd like to add a Devise model to a RefineryCMS app to allow a customer to log in and manage their profile. It seems reasonable to do this since a customer has nothing to do with the CMS. Since ...
0
votes
0answers
31 views
Implementing RefineryCMS search engine
I'm trying to implement the RefineryCMS search engine, I have followed the steps on the guide https://github.com/refinery/refinerycms-search#search-plugin-for-refinery-cms, however as I'm implementing ...
0
votes
0answers
32 views
How do I add a route for a new Refinery CMS admin action
I have a refinery extension that I created that manages Fieldtrips for a school.
My current fieldtrips_controller for the admin side has the following.
module Refinery
module Fieldtrips
...
0
votes
1answer
31 views
Refinery CMS - Styling the actual backend
Is there anyway to style the actual Refinery backend? Ideally I'd like to make it look a bit nicer and even add some javascript animation to some of the buttons.
0
votes
1answer
18 views
Refinery CMS - Adding it to an existing site
So I have made a simple html + css + javascript website to test out my Refinery skills.
Embarrassingly, I've completely hit a brick wall! How can I add my own custom pages to Refinery CMS?
0
votes
0answers
14 views
How to change the wymeditor “Paste_From_Word” to Paste as we usual do
I read the source code, find I press the keyboard ctrl+v = "Paste_From_Word" ,My words will not have any style.
But I hope press ctrl+v, the content will display as word style, what i already edit ...
0
votes
1answer
35 views
Rails Routing: Need to add an optional :user_id to route for user emulation
I'm using Refinery CMS with an extension application that has the following in its routing:
namespace :sub_application do
resources :employees
resources :customers
resources ...
0
votes
1answer
30 views
What do I do about an empty instance variable in a form helper?
I have two associated models where case_studies belong_to clients and clients has_many case studies. My controller has a before_filter to find all the clients for an instance variable of @clients.
...
0
votes
0answers
4 views
Home page duplicate in the backend
I'm using RefinerCMS v2.0, I'm not sure what I did but I in the backend I have the homepage duplicated. As there is not an option to delete the homepage, which would be the workaround to eliminate the ...
0
votes
1answer
34 views
How to use use polymorphic associations across namespaced models?
I understand how you can use the class_name option in active directory to refer to namespaces models:
has_one :slide, :class_name => '::Refinery::Slides::Slide'
And how to use polymorphic ...
0
votes
1answer
28 views
RefineryCMS Installation is not displaying my application
I installed RefineryCMS into my existing Rails application exactly as described here: http://refinerycms.com/guides/with-an-existing-rails-app. Everything with the installation went fine.
However, ...
0
votes
0answers
15 views
page parts not showing in the backend, refinerycms
Suddenly my page parts defined in for the home page view template are not showing, the content appear fine in the front end but when I try to edit the content, it looks empty and the custom page parts ...
1
vote
2answers
71 views
High response queue times on Heroku with Rails RefineryCMS
I'm running a RefineryCMS application on Heroku. It's on two web dynos, yet actual dyno load is under 10% a piece (if I'm reading New Relic correctly) for the current negligible traffic of 13 requests ...
1
vote
0answers
39 views
RefineryCMS + TinyMCE + Integrate tinymce 3.5.6 with refinery 2.0.2
I am developing a CMS by modifing refinery, but instead of using the default editor I want to use TinyMCE editor but I am facing trouble integrating it with refinery. The editor tags does not appear ...
0
votes
0answers
24 views
How to fix NoMethod Error on Refinery CMS Page Not Found
I'm getting an error when trying to access my Refinery CMS app at a url that doesn't exist such as /foo.
The problem is that I have items from a custom news engine in my footer. When it tries to ...
0
votes
0answers
27 views
Adding Heroku CDN to RefineryCMS
Trying to use asset_sync in a RefineryCMS site on Heroku following this article. Worked out all the problems with rendering from the app/assets directory. Now I'm having issues with images and files ...
0
votes
0answers
23 views
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 ...
3
votes
0answers
61 views
RefineryCMS Custom Layout Template works in host app but not with engine
So I followed the refinery guide to create a custom layout template. I switched my about page to use my new template in the advanced options and it worked like a charm.
Then I created a new engine ...
0
votes
0answers
30 views
for generate the seed file with refinerycms-page-images
i use the refinerycms-page-images engine to my Refinerycms and I feel it is very wonderful.
i want to generate all the resources with one seed file,this means I do not want to manually fill in the ...
0
votes
0answers
13 views
RefineryCMS + Locale representation Issue while displaying on html page
In RefineryCMS, I am trying to fetch label from locale file but I am getting some strange output, i.e, it is coming i18n while displaying at page.
Code :
<div class="field">
<span ...
0
votes
1answer
41 views
RefineryCMS + Drag and Drop Image Functionality for adding images
In RefineryCMS, for image upload present functionality is to browse the image and then click to upload the image.
Is it possible to add drag and drop image functionality to page image ?
Thanks in ...
0
votes
0answers
17 views
Refinery + Current User
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 ?
Thanks in advance.
0
votes
1answer
25 views
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 ...
0
votes
1answer
14 views
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 ...
0
votes
0answers
16 views
Refinery + Not able to Extend Controllers with Decorators
I am trying 'Extending Controllers and Models with Decorators' for Refinery. But it is not working.
Refinery::PagesController.class_eval do
after_filter :id_to_page, :only => [:create]
...
1
vote
1answer
51 views
how to render collection from home page in rails 3.12
in rails I would have a controller for widgets with an index, show, and crud methods.
the index controller would have a simple
@widgets = Widget.all
respond_to do |format|
format.html
...
0
votes
2answers
63 views
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 'jquery-backstretch'
...
0
votes
0answers
55 views
Modifying path of refinerycms-blog articles
I'm configuring the refinerycms-blog engine. By default, the path for individual blog posts is /blog/posts/article-name and I'd like to change this to /blog/article-name. Does anyone know if it's ...
0
votes
0answers
22 views
How to access partial counter without instance variable
according to the RoR guide
Rails also makes a counter variable available within a partial called by the collection, named after the member of the collection followed by _counter.
The example ...
0
votes
0answers
15 views
How to change/remove class=“selected_by_wym” for an image in refinerycms 2.0
I am new using RefineryCMS. I would like to modify the generated HTML that WYMeditor create after inserting an image.
How do we change / remove class="selected_by_wym" after inserting an image.
Thanks ...
0
votes
1answer
109 views
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 ...
1
vote
1answer
81 views
Customize site layout with Refinery CMS
New with Rails and with RefineryCMS. I came across thisquestion about per page layouts.
It pointed me to a very nice guide and in this guide it says
In this case, when we are customizing the ...
0
votes
1answer
60 views
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:
<li><a ...
0
votes
0answers
54 views
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 ...
0
votes
0answers
44 views
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 ...
0
votes
0answers
93 views
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 ...




