Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
1k views

SyntaxError on the welcome to rails screen using Pow

I have just set up a new project which displays all the correct info in the about your applications environment window when on http://localhost:3000/ but when I run it at http://egg.dev/ I get: ...
2
votes
2answers
772 views

Rails CookieStore::CookieOverflow, not for all users, only in production

I have a couple users that are getting this CookieStore::CookieOverflow error. I'm suspicious of nginx/passenger because I just switched to that last week (from nginx/thin) and now these are ...
1
vote
2answers
56 views

Multiple Tabs and Sessions issue in Ruby on Rails

I've an application which I am deploying as Facebook application also. Problem is when I am logged as user1 on my app via Facebook, and try to login from other tab of same browser, session of user2 ...
1
vote
2answers
124 views

How to store cookie jar to be used between functions inside class?

I'd like to hear your suggestions on how to effectively store cookies, that are to be used inside a class by other functions. My current code looks like this: class SomeClass: def __init__(self, ...
1
vote
1answer
541 views

session cookies work on emulator, but not real device

I'm developing an app using android 2.1. I have a problem with using session cookies to login to a RESTful web service. The code works fine on the emulator, but when I run it on my HTC Magic, the ...
0
votes
1answer
119 views

How to save a cookie in an Android webview forever?

With my code below, I have been able to save a cookie, but as soon as I close the application the cookie disappears. How is this caused and how can I solve it? package com.jkjljkj import ...
0
votes
1answer
147 views

Cookies login doesn't work

I have a problem. I have done custom "Remember Me" functionality using cookies. HttpCookie rememberMeCookie = FormsAuthentication.GetAuthCookie(userName, rememberMe); if (rememberMe) { ...
0
votes
1answer
136 views

How to add cookies to a drag and drop div

Hello i have added a drop and drop feature to my site See Here and as i am a beginner i don't know anything about adding cookies to a page or a div, i would like to have a save button which will save ...
0
votes
1answer
535 views

Rails, CookieStore vs ActiveRecordStore

I am currently experiencing a strange issue with our users being logged out. I haven't been able to reproduce it explicitly. The Rails application is using the default CookieStore. My initial ...
0
votes
2answers
63 views

http cookies and embedded images

I'm setting a cookie during http GET request of the .html pages with embedded images. I'm expecting the browser to return the cookies when getting all the embedded images, but apparently it does not ...
0
votes
3answers
356 views

How easy is it to crack a cookie created by CookieStore from a Rails app?

I have read a bunch of stuff saying that one con of using the cookie store in a Rails app is that the client can see the cookie data. However, I looked at the cookie data and it is encrypted. Is it ...
0
votes
2answers
312 views

For Rails apps, keeping your environment.rb file in your repository seems unsecure

Many Rails apps use the CookieStore method of storing sessions. The security of this method depends mainly on the security of the session secret key which is defined by default in ...