Displaying 20 results from an estimated 3000 matches similar to: "Samba PDC not creating roaming profiles"
2008 Mar 06
3
cache_sweeper
Hi,
Why is cache_sweeper not a documented method? I was pretty sure it
used to be, but I could be wrong. I can''t seem to find any
information on it anymore in the online docs.
As a side note, looking at the code for cache_sweeper it appears to
only work with the :only option, not :except (ignores it)... what''s
the reason for this?
Thanks,
Andrew
2007 Oct 21
4
Making 'expire_fragment' available to a model?
I noticed a lot of repetition across different Sweeper models in my
app expiring the same fragments and so have been trying to move all
the expire_fragment calls into another model which the sweepers can
then use but it''s not working as I''d hoped..
I''ve created a CacheDestroyer model and want to be able to call
something to the effect of:
2007 Feb 14
4
cache sweeper not getting called
Hi,
I''ve started to implement page caches but I''ve hit a brick wall getting
a sweeper to clear the cache when needed. It seems that any models that
I tell it to observe aren''t being observed properly. If I add the
sweeper to a controller the initialize method runs, but no matter what I
do the after_save/after_update callbacks aren''t running. Also if I try
to
2006 Sep 15
2
Caching::Sweeper Access to Controller
Hello,
I''m running Mongrel 0.3.13.3, cluster 0.2.0, and Rails 1.1.6 and I
have a problem with a sweeper not having access to the controller
instance.
NoMethodError (undefined method `session'' for nil:NilClass):
/app/models/audit_sweeper.rb:16:in `log''
/app/models/audit_sweeper.rb:9:in `after_update''
2005 Apr 25
1
Problems when using sweepers with postbacks
I''m using a cache sweeper class [1] to take care of some pretty complex
sweeping. However, there is a problem with the current implementation.
Namely, the sweeper gets called only when an action named in
cache_sweeper is called using GET. As many methods where sweeper would
be useful are using postback to send the form to the same action, this
causes the cache to get swept when
2006 Apr 08
2
trouble expiring cached pages
I''m having a bear of a time getting my cached pages to expire. Maybe
one of you guys can help me out. I''ll show my sweeper and then my log
to show that it "should" be working.
class PragmaticSweeper < ActionController::Caching::Sweeper
observe Comment
def after_save(comment)
expire_page(comment.post_id)
end
private
def expire_page(post_id)
2000 Dec 04
29
Thank You!
Robert's suggestion indeed fixed the problem. I kept thinking
those entries were necessary in inetd.conf. Also, kind
thanks to Fred Gilbert for his prompt responses.:-)
John
2005 Jun 26
4
calling controller and caching from a sweeper class
[cross-posting to rails and typo lists]
Hi,
I''m tinkering with the code for typo, a rails-based blog engine.
Typo has an XmlController with actions "rss" and "atom" which generate feed.xml
files, and it uses a caches_page declaration to cache the files that get
generated by those actions. It also has a Sweeper (Observer) class that expires
those cached files when a
2003 May 15
5
Session and open files
Hi,
Hi I'm using redhat 9 I've got samba working and I have users onj the
system accessing the shares, Can anyone recomend a programme that can
tell me whch users have got files open on my samba box
Thanks
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Iwan Davies
Server Support and Development Technician
Cyngor Sir Ceredigion County Council
IT Section
Finance
iwandav@ceredigion.gov.uk
2006 Jan 03
5
Are cache sweepers used?
After drawing many virtual blank stares in the IRC channel and finding
zero results on the wiki for ''sweeper'' I''m left to wonder whether
these are actually officially supported, or are on their way toward
being deprecated. Is there a better way of expiring caches on model
saves and deletions?
Sincerely,
Tom Lieber
tom@alltom.com
http://AllTom.com/
2006 Jun 27
3
Easy question: Where do I put sweepers?
Trying to implement some sweepers to clean up my caching, but where do I
put them?
"ruby script/generate sweeeper" does nothing.
--
Posted via http://www.ruby-forum.com/.
2008 Apr 01
1
"Undefined method merge" when using sweeper
Hi,
I''m trying to use sweepers for the first time and got a problem - I
get "undefined method `merge'' for "/signature/
f2d7c7c66450b169.html":String". The "/signature/f2d7c7c66450b169.html"
part of the error message is the cached page.
Here''s my sweeper:
class FooSweeper < ActionController::Caching::Sweeper
observe Foo
def
2006 Jul 12
3
Ajax, the Back button, and Sweepers
I''m working on an app that''s basically forms and that makes fairly heavy use of Ajax. As a result of the Ajax usage, if the visitor uses the back button they get the page as it was originally loaded, not as they left it. I''ve looked at the Sweeper documentation and can not tell for sure that it''ll do what I want, which is to force an unconditional reload from
2006 Sep 07
4
How to setup a sweeper to restart stale or hung mongrel servers
How do I setup a sweeper to restart stale or hung mongrel servers?
--
Jared Brown
jaredbrown at gmail.com
(765) 409-0875
7001 Central Ave
Indianapolis, IN 46220
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060907/0994017f/attachment.html
2002 Dec 17
1
samba does not work
I have installed linux 8.
Have configured smb.conf
workgroup = domain name
netbios name = samba server name
and so on
and also run
smbd
nmbd
but my windows can not see it
can you help me in this regard.
Thanks,
Mohammad Espahrom
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of
2003 Apr 24
1
duplicate password prompt
I'm running samba 2.2.8a on a redhat 9 box, everything works great, but
ever since I playd with the system-auth I now have to enter a password
in twice when I logon to the console.
Any one got any ideas
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Iwan Davies
Server Support and Development Technician
Cyngor Sir Ceredigion County Council
IT Section
Finance
iwandav@ceredigion.gov.uk
2001 Mar 15
1
OS issues
Hi,
I would like to know if Samba runs on the following Operating systems
and which versions (including old and latest) if they do:
| Old ver | New ver
-----------|---------- --|----------------------------
NT - | |
Solaris - | |
AIX - | |
(See attached file: augustine_boateng.vcf)
2002 Mar 11
1
Samba still win the elections
**********************************************************************
Este email assim como os ficheiros que possa ter em anexo s?o confidenciais
e para uso exclusivo da pessoa ou organiza??o para o qual foi enviado.
Se recebeu este email por engano por favor notifique Redes@bnc.pt
Esta nota confirma que esta mensagem foi verificada pelo MIMEsweeper
n?o tendo sido encontrados virus.
2006 Mar 24
2
Expiring cached actions outside of ActionController
In the site I''m building, my models are *almost* never updated within
ActionController-- all new data comes in via command line scripts
manipulating ActiveRecord directly.
Can anyone offer any hints about expiring cached actions without Sweeper?
-Ross
2005 Nov 01
1
spyware detected (PR#8270)
Gentlemen:
I ran a spyware sweep on my computer after installing:
10/07/2005 03:25 PM 27,230,914 R-2.2.0-win32.exe
>From the cran website.
Spy Sweeper 4.0.3 with the latest definition files found
Directory of C:\Program Files\R\R-2.2.0
11/01/2005 09:27 AM 668,938 unins000.exe
To have the golden eye signature. This is serious if indeed the uninstall
program contains