Displaying 20 results from an estimated 104 matches for "contoller".
Did you mean:
controller
1999 Jan 13
2
Samba using Domain Contollers with SP4 applied
Has anyone with security = server tried to authenticate against a NT server
that runs Service Pack 4 yet? I have not tried yet, but there are some
changes
that may effect this such as SAM format changes and secure channel integrity
checking.
Any feedback on this would be appreciated.
Bill
2013 Jul 01
2
R2 2008 Windows Domain Contoller VS Samba
Hi,
We are using samba version 3.0.28 on Sun solaris 5.10 integrated with Windows 2003 Domain Controller.
It has been running for couple of years without any issues.
Recently the 2003 domain controllers are upgraded to 2008 R2 domain Controllers and the samba server that we currently have is not authenticating
With the new domain controllers. Could you please let me know which version of Samba
2013 Apr 19
3
Reading CSV file
I am trying to read a csv file using the code;
contol <- read.csv("RBS.csv")
This is the error message I got;
Error in file(file, "r") : unable to open connection
In addition: Warning message:
In file(file, "r") :
cannot open file 'RBS.csv', reason 'No such file or directory'
Where was the mistake?
--
OYEYEMI, Gafar Matanmi (Ph.D)
Senior
2006 Feb 03
4
contoller code mysteries
In my controller...this code works
def list2
first_name = params[:client][:first_name]
@myclients = Client.find(:all, :conditions =>
["first_name = :first_name", {:first_name => first_name}])
end
this code doesn''t...
def list2
first_name = params[:client][:first_name]
if first_name
searchstring = ''["first_name =
2009 Oct 27
5
Re-tasking destroy contoller action...is this bad practice?
...got an Author model in my Blog application and I
want my administrators to be able to disable authors. I don''t want to
delete authors because this would cause data integrity issues
(orphaned Author foreign key in the Post model). So my plan is to re-
task the destroy method of the AuthorsContoller to allow an
administrator to set a disabled_at timestamp on an Author instead of
actually deleting him.
What are the disadvantages to this design? One of the advantages to
this design that I see is that I don''t have to declare a new
controller method in my routes...it just fits into the...
2013 Aug 12
1
BTRFS corruptions counter
Hi,
We decided to give BTRFS a try. We find it very flexible and generally
fast. However last week we had a problem with a Marvell controller in
AHCI and one BTRFS formatted hard drive. We isolated the problem by
relocating the disk to an Intel contoller (SATA controller: Marvell
Technology Group Ltd. 88SE9172 SATA 6Gb/s Controller (rev 11) had a
lot of problems and I managed to overcome them by passing
libata.force=noncq for a couple of weeks, until it failed generally).
Now that the disk is on the intel contoller it works fine and data is
intact,...
2006 Jun 28
3
couple newbie questions
...n a "companies" controller and list_companies.rhtml view there I
am trying to redirect to another controller and another action to enable
adding of comment. Something like the following ?
<%= link_to "Comment", { # link_to options
*:contoller* => ''comment'',
*:action* => ''add_comment'',
*:id* => company},
{ # html options
*:post* => *true*...
2004 Dec 18
3
3rd party call control / CSTA , JTAPI or TAPI interfaces
(REPOST, sorry if you get this more than once.)
Hello all,
(Not sure if this is more appropriate for user or dev list)
Does asterisk have any sort of "standards based" api that can enable
an application to do call control on the switch ?
For example, if I am developing a call center application
using asterisk, I would like to be notified of inbound calls
and then be able to route
2009 Oct 26
2
find_with_ferret issue
...All,
I''m implementing the ferret search engine on my railspace project.
In my User and Info model, I have line that reads:
acts_as_ferret :fields => [''username'', ''email'']
This initially generates a find_by_contents which is added to the
community contoller:
@users = User. find_by_contents(query, :limit => :all)
THis returned a method error, and after some digging, it turns out
that the find_by_contents is not replaced with:
@users = User.find_with_ferret(query, :limit => :all)
HOWEVER..... With this in place, the book says the search should...
2019 Oct 02
3
CentOS 8 Broken Installation
...ID bus controller: Intel Corporation C600/X79 series chipset SATA
RAID Controller (rev 06)
On this controller all drives are found and it is possible to create a Raid1!
07:00.0 Serial Attached SCSI controller: Intel Corporation C602 chipset 4-Port
SATA Storage Control Unit (rev 06)
But on this Contoller NO drives found?
there are 4 drives connected!
OK I make a Test with Fedora now, but later I go back to Centos 7.7 with this
Version all is working, :-(
Waiting for a corrected Version
> > If you are a Red Hat customer, I definitely suggest filing a support
> > request.
>
>...
2011 Sep 21
5
problem with submit button in rails 3
hi,
i am using <%= s.submit ''Product save'' %>
when i click it, following error appears
" Routing Error
uninitialized constant ProductsController"
could any one provide me solution ?
thanks,
-pab
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send
2006 Feb 13
2
categories and admin/categories - different controllers and templates?
...ters, layout, etc.), simplifying
itself and the other children admin controllers quite
a bit.
Right now, I have a Category controller with many
before_filter only/except clauses, and render
:layout=>''public''|''admin'' in many functions. And I
have several other contollers - yuck. I thought about
putting everything in one big monolithic admin
controller (list_categories, edit_category,
destroy_category, list_members, list_links, etc.).
Thanks for any thoughts!
csn
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has th...
2015 Jan 07
2
reboot - is there a timeout on filesystem flush?
.../ obsolete
>> hardware. Corruption and failure are more or less what I'd expect if
>> your
>> hardware is junk.
>
> Not junk - these are mostly IBM 3550/3650 boxes - pretty much top of
> the line in their day (before the M2/3/4 versions), They have
> Adaptec raid contollers,
I never had Adaptec in _my_ list of good RAID hardware... But certainly I
can note be the one to offer judgement on hardware I avoid to the best of
my ability. If you can afford, I would do the test: replace Adaptec with
something else (in my list it would be either 3ware or LSI or areca),
leavi...
2006 Aug 13
7
you can pass multiple parameters using link_to? anything bad
...me, i always had the impression that i could only pass 1. i guess
i dont have to use sessions after all for my site. is there anything
wrong with this?
basically instead of the user filling out forms(drop down boxes, radio
boxes etc), i just what them to click on links that gets passed to the
contoller etc...and depending on what the selected, that will be used
for the query. is there anything wrong with this approach?
thanks.
--
Posted via http://www.ruby-forum.com/.
2005 Dec 17
1
file_column url_for_file_column from within controler
Hello,
i hope somebody can help me:
How can i get the path/url for a file stored with file_column within any
contoller?
Is it somehow possible to use the url_for_file_column method from the
file_column_helper.rb ?
Greetings and thanx for any advise,
Marc
--
Posted via http://www.ruby-forum.com/.
1999 May 29
1
Password authentication
...use the sama user or password file, since i cannot keep track of
the changes.
2. i want to authenticate against our primamry domain controller, since
everybody knows this password and logs in his/her PCs with it.
3. is there a simply library function to which i pass the login, password and
domain contoller and it tells me whether the password is correct or not. (i
tried pam_smb, but it will not work for me.)
please send all replies to: srichter@ixl.com or srichter@cbu.edu
Thank you in advance for your time and help!!!
stephan
--
Stephan Richter
iXL - programmer
2019 Oct 03
4
CentOS 8 Broken Installation
...ler (rev 06)
> >
> > On this controller all drives are found and it is possible to create a
> > Raid1!
> >
> > 07:00.0 Serial Attached SCSI controller: Intel Corporation C602 chipset
> > 4-Port SATA Storage Control Unit (rev 06)
> >
> > But on this Contoller NO drives found?
>
> If you provide the device ID pairing [xxxx:yyyy] for the one that is
> not working, it will become clear. Can you show us the output from:
>
> lspci -nn
>
> Is it this one?
>
> Serial Attached SCSI controller [0107]: Intel Corporation C602 chipset...
2019 Oct 02
1
CentOS 8 Broken Installation
...RAID Controller (rev 06)
> >
> > On this controller all drives are found and it is possible to create a Raid1!
> >
> > 07:00.0 Serial Attached SCSI controller: Intel Corporation C602 chipset 4-Port
> > SATA Storage Control Unit (rev 06)
> >
> > But on this Contoller NO drives found?
>
> If you provide the device ID pairing [xxxx:yyyy] for the one that is
> not working, it will become clear. Can you show us the output from:
>
> lspci -nn
>
> Is it this one?
>
> Serial Attached SCSI controller [0107]: Intel Corporation C602 chipset
>...
2001 Feb 05
2
Project "Muncher" the next step in wine
Ok, It's a lame name but it was the best I could come up with after
spinning around in a desk chair for a few minutes. Here is the general
idea behind it.
Once, in an interview, Steve Balmber, the CEO of Microsoft threw some
standard MS FUD out about Linux being a poor choice becaue each distro
tends to "mutate" linux and has no solid direction
I thought "Wouldn't
2006 Sep 27
2
how to get the message from validates_presence_of
hi,
I''ve a model with validates_*_of statements, but I have no idea how to
get the :message back, anyone has a clue? Thanks.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to