similar to: Which command run after change Models

Displaying 20 results from an estimated 10000 matches similar to: "Which command run after change Models"

2012 Mar 02
2
OT: Why I can't see my email
Hi: I''m having a problem with this list and it''s that I can''t see my own emails and don''t know the cause. I check my configuration in Google Groups and it says that "Email: send each message to me as it arrives" so any help or tip? I just only see the reply from members lists but not my email so when I try to follow a thread sometimes I''m
2016 Aug 04
3
Can't connect trough SSH to a new fresh CentOS 7 minimal server
I have installed a new CentOS 7 minimal virtual machine in Vmware Workstation. I have disabled the firewall by running: *systemctl disable firewalld* => this one for disable it permanently (I don't need it since it's a VM for development) *systemctl stop firewalld* => this one for stop the service I have set SELinux to be permissive. SSH is up and running as the output from:
2016 Aug 05
4
Enable all permissions for root in Samba ...
As I said in previous messages I have a local virtual machine running CentOS 7 so I do not need any security. Having that in mind I have installed Samba and this is how I setup for access the remote server: [global] workgroup = WORKGROUP server string = Samba Server %v netbios name = CentOS Server security = user map to guest = bad user dns proxy = no [root] path = / browsable =yes writable =
2016 Mar 08
3
SOT: Can Fedora be installed from Live images?
Maybe world has changed I am not aware and I am still the old fashion way where I download a DVD image and install from there like in CentOS but has Fedora changed something? I mean I am trying to find the proper image for download it put on USB flash memory and install on my PC but all that I can find are "live images" so what happen here? Did I miss something? Can any put me on the
2011 Dec 26
0
Putty error "Network error: Software caused connection abort"
Hi every: I have a test or development environment in my Windows workstation with VMware Workstation 8.0 where I have around 7 VM with CentOS 6.2 and each of them have 2 network interfaces: one bridge and the other NAT. Since a few days I have been experimenting some problems with Putty because I get this error: --------------------------- PuTTY Fatal Error --------------------------- Network
2016 Aug 04
0
Can't connect trough SSH to a new fresh CentOS 7 minimal server
A few things you might try: 1. Verify ssh is listening: netstat -antp | grep :22 | grep -i listen 2. Verify you can ssh locally: ssh localhost 3. Try to telnet to ssh port: telnet <ipaddr> 22 4. run nmap against the ipaddress to verify port 22 is seen. Hope this helps. Regards, Monty On 08/04/2016 06:36 PM, reynierpm at gmail.com wrote: > I have installed a new CentOS 7
2016 Mar 08
0
SOT: Can Fedora be installed from Live images?
I think nearly all the fedora images are live CDs now. They should have an option to install fedora when you boot the cd. Usually when you boot the cd. A window appears asking to either install the os or try it out. If you are using a non gnome cd,you may have to search the application menu for the installer Hope this helps. Rafeal Stewart Big Fedora fan On Mar 8, 2016 08:54, "reynierpm
2006 Feb 21
6
Help with Script.aculo inPlaceEditor
Well, I start recently with Scriptacolus and inPlaceEditor. I have two doubts about use it. 1) When I specify URL for save changes or not it doesn''t work. See example below: <script type="text/javascript"> new Ajax.InPlaceEditor(''aNombre'', ''productos.php?a=actualizar&f=aNombre''); </script> In productos.php file I have
2006 Mar 10
8
multiple sub categories (parent-child)
hi. base from the cookbook example, where each categories can have many recipes, id like the categories to have multiple sub categories, unlimited levels. please show some code, as i am new to Ruby and Ruby On Rails. thanks -- Posted via http://www.ruby-forum.com/.
2006 Feb 25
31
Ajax Scaffold Generator for Rails Released
I just released a whole new version of the Ajax Scaffold Generator (for Ruby on Rails). The generator creates a scaffold page like the typical rails one, except adding, editing and deleting are all done inline. The generated scaffold is valid XHTML strict and fully styled right out of the box. Check out the demo: http://ajaxscaffold.height1percent.com/ And the how-to:
2006 Mar 15
5
acts_as_threaded - help ???
Hi, has anyone successfully used the acts_as_threaded plugin with postgresql? I''m using rails 1.0 and ruby 1.8.4 on linux. Following the screencast on http://www.railtie.net/articles/2006/02/05/rails-acts_as_threaded-plugin , I got to where we''re ready to create our first post, having made the changes to controllers/posts_controller.rb, views/posts/_form.rhtml,
2009 Aug 19
10
acts_as_list / acts_as_tree / acts_as_nested_set - which one
I am creating forum application which needs usage of acts_as_list or acts_as_tree or acts_as_nested_set. I am unable to decide among these. please could some one recommend from their experience? -- Posted via http://www.ruby-forum.com/.
2016 Jan 29
1
Re: Write content to file from Dockerfile and/or any other method
On Fri, 29 Jan 2016 06:31, Keith Keller <kkeller at ...> wrote: > On 2016-01-29, reynierpm at gmail.com <reynierpm at gmail.com> wrote: >> >> I am building a Dockerfile and I am setting up MariaDB repos as follow: > > This question is probably way offtopic for a CentOS mailing list. > >> # Setup MariaDB repos >> RUN touch
2016 Jan 29
2
Where did network setup goes under setup utility in CentOS 7?
In CentOS 6.7 I ran setup command and I could configure network settings from that "gui" utility at command line. In CentOS 7 I don't know where this goes or how to enabled. I have installed a few packages: yum install setuptool -y \ && yum install system-config-network-tui -y \ && yum install system-config-firewall* -y \ && yum install
2015 Nov 03
0
SSH login between servers still asking for password, why?
Hi On Tue, Nov 3, 2015 at 4:56 PM, Reynier Perez Mira <reynierpm at gmail.com> wrote: > I have two servers identified as `server-1 - 192.168.3.128` and `server-2 - > 192.168.3.130`. I am setting up `capifony` for automatic deployment from > server-1 to server-2 and this is what I have done so far: > > 1. In both servers I have created a user `deploy` without password since
2006 Apr 15
1
Begin with Autocompleter
Hi list: I''m a young developer that need a little help with scriptaculous "Autocompleter". I work with PRADO framework (http://www.xisc.com) and PHP as a script language. Now this is a little function in JavaScript for make a AJAX call and show the results without reload the entire page. See below: 1 function makeRequest(url,element) { 2 var http_request = false; 3 if
2006 Feb 07
3
Creating a new object with a passed in parent?
I have a simple object, Article, which has_one :parent of the same time. On my Show page for a given article there will be a "new child" button which will pass the current :id (or the current Article itself) to the new form. What is the proper way to hide a reference to this parent in the form so that when it is submitted back, the create method knows what to do with it?
2006 Apr 14
8
Error with Web Service tests after upgrading to Rails 1.1.2
Hello. I hope this is the right place to describe my problem ? After upgrading to Rails version 1.1.2 from rails version 1.0.0, Web Service functional tests seem broken. I upgraded rails (as the root user / administrator) with: # gem update rails --include-dependencies then I upgraded my application (as myself) with: ? rake rails:update % rake rails:update:configs After these steps,
2006 Jul 13
1
How to create a child from a parent
Hi i am trying to figure out what is the best way to do this very basic thing: lets say i have two tables: one with parents and one with children. there is a one to many relation between them. I scaffolded the parents tabel and i can open each parent. Now i want to add a link to the ''show'' view which will create a new child record. In the model i defined the has_many and
2006 Feb 08
1
Many-To-Many w/acts_as_tree?
Guys, I''m having a problem getting acts_as_tree working. It seems from the Agile book (p. 255) that acts_as_tree only supports one-to-one record relations, whereas I need many-to-many support. In other words, looking at the picture at the top of page 256 where where only 1 id is linked to 1 parent_id, I need multiple id''s linked to multiple parent_id''s - for