Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4582800
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T21:07:35+00:00 2026-05-21T21:07:35+00:00

As you can see here in my rails log my text_area text is empty:

  • 0

As you can see here in my rails log my text_area text is empty:

Started POST "/admin/tags/3" for 127.0.0.1 at 2011-04-28 08:24:39 +0200
  Processing by Admin::TagsController#update as HTML
  Parameters: {"utf8"=>"Ô£ô", "authenticity_token"=>"X9LoKGw2OXE/rXBor7YxEKJmxpe
BM0hq+u7q1NiPbtE=", "tag"=>{"name"=>"vind billetter", "title"=>"Vind billetter Ô
Çô Deltag i konkurrencer om billetter", "keywords"=>"", "meta"=>"", "h1"=>"Vind
billetter ÔÇô Deltag i konkurrencer om billetter", "text"=>""}, "commit"=>"Updat
e Tag", "id"=>"3"}
  ←[1m←[36mKonkurrancer Load (0.0ms)←[0m  ←[1mSELECT `konkurrancers`.* FROM `kon
kurrancers`←[0m
  ←[1m←[35mCACHE (0.0ms)←[0m  SELECT `konkurrancers`.* FROM `konkurrancers`
  ←[1m←[36mCACHE (0.0ms)←[0m  ←[1mSELECT `konkurrancers`.* FROM `konkurrancers`←
[0m
  ←[1m←[35mTag Load (0.0ms)←[0m  SELECT `tags`.* FROM `tags`
  ←[1m←[36mAdmin Load (1.0ms)←[0m  ←[1mSELECT `admins`.* FROM `admins` WHERE (`a
dmins`.`id` = 1) LIMIT 1←[0m
  ←[1m←[35mTag Load (0.0ms)←[0m  SELECT `tags`.* FROM `tags` WHERE (`tags`.`cach
ed_slug` = '3') LIMIT 1
  ←[1m←[36mSQL (0.0ms)←[0m  ←[1mSELECT sluggable_id FROM slugs WHERE ((slugs.slu
ggable_type = 'Tag' AND slugs.name = '3' AND slugs.sequence = 1))←[0m
  ←[1m←[35mTag Load (0.0ms)←[0m  SELECT `tags`.* FROM `tags` WHERE (`tags`.`id`
= 3) LIMIT 1
  ←[1m←[36mSQL (0.0ms)←[0m  ←[1mBEGIN←[0m
  ←[1m←[35mSlug Load (1.0ms)←[0m  SELECT `slugs`.* FROM `slugs` WHERE (`slugs`.s
luggable_id = 3 AND `slugs`.sluggable_type = 'Tag') ORDER BY id DESC LIMIT 1
  ←[1m←[36mSQL (0.0ms)←[0m  ←[1mCOMMIT←[0m
Redirected to http://localhost:3000/admin/kategoris/3
Completed 302 Found in 207ms

My form:

    <%= simple_form_for(@kategori, :url => {:action => 'update', :id => @kategori.id }) do |f| %>
<%= f.text_area :text, :cols => 80, :rows => 20, :class => 'mceEditor' %>
    <%= f.button :submit %>
    <% end %>

My tiny_mce.yml :

# Here you can specify default options for TinyMCE across all controller
theme: advanced
editor_selector: tinyMce
plugins:
 - layer
 - save
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
        theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
        theme_advanced_toolbar_location : "top"
        theme_advanced_toolbar_align : "left"
        theme_advanced_statusbar_location : "bottom"
        theme_advanced_resizing : true

My applikation controller:

uses_tiny_mce(:options => {  :theme => 'advanced', :theme_advanced_toolbar_location => "top", :theme_advanced_toolbar_align => "left", :editor_selector => "mceEditor", :skin => 'o2k7', :skin_variant => 'silver', :theme_advanced_resizing => true, :theme_advanced_statusbar_location => "bottom"})

My tags controller:

uses_tiny_mce :options => {  :theme => 'simple'}

The text_area text is not submitted in both the update and create action

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T21:07:36+00:00Added an answer on May 21, 2026 at 9:07 pm

    I have found a solution I removed my tiny_mce configuration in my admin controller

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am specifically intertested in #270. You can see it here: http://railscasts.com/episodes/270-authentication-in-rails-3-1 I've downloaded
You can see here what i am doing: http://www.arvag.net/otkrijte-svet/leto/ So its pulling 2 custom
As you can see here and here I'm not a good friend of asp.net
I have some code that is using SyncEnumerator. As you can see here ,
I have a problem with the Firefox browser. You can see it here .
You can see my project here - http://www.inluxphoto.com/custom/jsgallery/index.php I am attempting to make the
You can see the example here: http://jsfiddle.net/8EHED/8/ This is a tricky problem because I
I have a div that contains 3 fields You can see the image here
I'm working on a jquery carousel. You can see the example here: http://jsfiddle.net/6fwbS/2/ Click
For some reason my bind events won't work. You can see my code here:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.