Displaying 20 results from an estimated 20000 matches similar to: "user engine session id re-generating on post"
2006 Aug 06
4
DRY Scaffolds
I''ve got 8 scaffolds, each one can be considered an ''item'', such as a
blog, photo, etc. Using login_engine and user_engine, I list all blogs
belonging to a user by saying:
@user=session[:user]
@blogs=@user.blogs.find(:all)
but then let''s say I want to create an option where I want to slice it
differently:
@user=session[:user]
if @someOption ==1
2005 Dec 17
4
user engine: Role.count() is zero in tests
Subject pretty much says it all. When user_engine#check_system_roles is
called, it discovers that Role.count is zero. However using
script/console to execute the same query reveals three users.
N.b., this does not happen in the actual application; only when running
tests.
Any help is appreciated.
Thx
--
Posted via http://www.ruby-forum.com/.
2006 Jan 11
14
User Engine/General Engine issues
I''m trying to get the login/user engine combo up and working and am
having difficulties. I got the login engine up and running fine, no
problems. Now, on to the user engine.
After fixing the needed stuff in the bootstrap task so it loads I''m
able to login as the default admin ok. BUT none of the
views/controllers that are in login/user_controller are being
overridden by the
2006 Feb 06
0
how can I retrieve a session based on the session-id
I am trying to mix Flash and RoR (for fileupload without pagerefresh)
Unfortunately the requests originating from the flashplayer do not have the
right sessionid. So I tried to hackaround with reading the _session_id form
the cookie and sending it together with the fileupload POST from the
flashplayer to the webserver.
But how can i retrieve the session based on the session_id at my controller
2006 Feb 01
2
Uninitialized constant ApplicationController?
Hello list,
I''m trying to start my Rails server after doing a long complex switch
from Postgres to MySQL, and I''m getting the following error:
=> Booting WEBrick...
/usr/lib/ruby/gems/1.8/gems/activesupport-1.2.5/lib/active_support/dependencies.rb:200:in
`const_missing'': uninitialized constant ApplicationController
(NameError)
from
2007 Jan 18
5
Session IDs and SWFUpload
Hi
I''m using SWFUpload in one of my applications, but it has one big
shortcoming: it doesn''t maintain the session. Let me explain:
The user has to login to the application, thus creating an
authenticated session (cookie _session_id client side and the
sessions table server side). However, when you use SWFUpload, the
upload script is called with a new session
2007 Mar 08
2
Rendering a view from a model
Hi peoples.
I have the following class method in a Rails model, in which I retrieve
some objects from the DB...
@bubbles = Bubble.find(:all, :limit => 30) # What is the limit?
open( "public/xml_data/main_data_feed.xml", "w" ) { | l | l.write
ERB.new( IO.read( File.join( RAILS_ROOT,
"app/views/rssfeed/bubbles.rhtml" ) ) ).result }
When I attempt to run this
2013 May 22
1
getting problems with lsyncd.
Hello All,
When i run lsyncd using *lsyncd -rsync /home/abc/source
/home/abc/dest*then i am able to sync the two directories of the local
system. But when i
run using
*lsyncd -rsync /home/abc/source 10.5.1.12:/home/abc/dest* where 10.5.1.12
is the ip address of the local machine then i am unable to sync the both
directories on the local machine. Please leave your suggestions.
Thank you,
--
2006 Jun 30
9
User engine problems with 1.1.4 + Test driven development??!
The following two posts (at the bottom) were posted to engine-
users@lists.rails-engines.org and suggests further issues with 1.1.4
I''m forwarding it here for two reasons:
1. Just a heads-up that 1.1.4 breaks engines that are customised.
login/user_engine are probably almost as widely deployed as Typo, and
if you''ve done any controller-level customisation, 1.1.4 appears to
2006 Feb 11
1
What one *cannot* store in a session???
Hi
Can someone tell me what i *cannot* store in a session.
For ex.
class TempController < ApplicationController
def index
session[:thread]=Thread.new do
loop{}
end
render(:inline=>"abc")
p ''post rendering''
return
end
end
does not work. although the print at the end of the method is executed,
the string ''abc'' is not rendered.
2005 Dec 02
8
UserEngine: stack level too deep
Hi,
I''m trying to get the UserEngine running.
I have installed the LoginEngine, added the essential lines to
environment.rb / application.rb and application_helper.rb.
Worked fine.
Then I did the same with the UserEngine and when trying to set up the
db:
rake engine_migrate ENGINE=user
I get:
Migrating engine ''user_engine''
rake aborted!
stack level too deep
But...
2006 Mar 02
1
Engines SVN repository move
The rails engines SVN repository has now officially moved from its old
location on the OpenSVN servers to:
http://svn.rails-engines.org/
Please update your SVN externals appropriately, as the continued
existence of the old repository is now NOT guaranteed.
Engines plugin (official): http://svn.rails-engines.org/plugins/engines
Engines plugin (for Edge rails):
2005 Dec 09
7
UserEngine - rake bootstrap aborted
Hi there,
I''ve just installed login_engine and user_engine from the repositories,
followed the setup procedures as documented in:
vendor/plugins/user_engine/README
But I''m getting the following failure:
vince@vaio:~/Projects/Booking$ rake bootstrap
(in /home/vince/Projects/Booking)
rake aborted!
undefined method `edit'' for class `UserController''
2020 May 19
1
[PATCH nbdkit] common/include: Add locale-safe ascii_strcasecmp and ascii_strncasecmp.
These are derived from the FreeBSD functions here:
https://github.com/freebsd/freebsd/blob/master/sys/libkern/strcasecmp.c
Thanks: Eric Blake.
---
common/include/Makefile.am | 6 +++
common/include/ascii-ctype.h | 6 +++
common/include/ascii-string.h | 77 ++++++++++++++++++++++++++++
common/include/test-ascii-string.c | 79 +++++++++++++++++++++++++++++
server/main.c
2006 Feb 11
2
Session ID in a cookie?
I''ve been looking around for how to store the session ID in a cookie.
The "Agile Web Development with Rails" books seems to indicate that this
is done by default with Rails. But I don''t see a cookie being set in my
browser. (yeah, they''re enabled)
I poked through the RForum code to find something referencing "cookies"
but nothing came up.
Does
2016 Apr 01
1
Using R for cURL commands
Hello,
I'm looking for a way in which R can make my live easier.
Currently i'm using R convert data from a dataframe to json's and then sending these json's to a rest api using a curl command in the terminal (i'm on a mac).
I've been looking for a way to use R for sending data from R to the rest api. My primairy focus was on using R for executing the curl command,
2006 Apr 28
2
tests and login_engine
Hi there,
I just started writing tests today after some months of using rails (slap wrists).
I seem to be getting the hang of things, but I''m hitting a wall when it comes to functional_testing pages protected by login_engine/user_engine.
all my assertions come back with:
Expected response to be a <:success>, but was <302>
Is there a way I can login from within a test?
2019 Oct 17
2
[PATCH nbdkit] server: Allow file descriptors to be passed to nbdkit_read_password.
Allow password parameters such as ‘password=-FD’ where FD is a file
descriptor number inherited by nbdkit from the parent process. This
is another way to allow programs to hand passwords to nbdkit in a very
secure way, for example over a pipe so they never touch the
filesystem.
Previously nbdkit allowed you to use literal passwords on the command
line if they began with a ‘-’ (but were not just
2006 Jan 19
4
UserEngine - rake bootstrap aborted => undefined method `synchronize_with_controllers'' for Permission:Class
Good day all.
I have successfully installed Engines and LoginEngine and LE is setup and
running correctly.
However, after installing and setting up UE, when attempting to run the rake
bootstrap method I get the following error:
undefined method `synchronize_with_controllers'' for Permission:Class
My environment is
Rails 1.0.0
Ruby 1.8.2
WinXP
WebBRICK
MySQL 4.1.14
I found the following
2009 Nov 14
1
`const_missing': uninitialized constant CGI::Session (NameEr
Hi all...
I am facing the following error
"`const_missing'': uninitialized constant CGI::Session (NameError)"
While running "script/generate controller abc"
Having any idea????
Thanks all.....
--
Posted via http://www.ruby-forum.com/.