1
vote
3answers
55 views
Ruby on Rails - Restricting click by IP…
I am new to rails so go easy. I have created a blog with the ability to "vote" on a post by using a feature much like Facebook's "like". I am not using any authentication but would …
0
votes
1answer
19 views
Who’s Online in Pylons
I currently have a Pylons application running with a basic user system set-up. I want to try and create a widget that shows the users that are currently logged on to the website. I …
0
votes
1answer
24 views
Rails session needs “inspect” to be called
I'm using the Rails session to store a cookie_jar I get from Mechanize. This lets me call a webservice and maintain the cookies it sends back.
The class takes a session in it's co …
1
vote
2answers
13 views
Displaying the values stored in a session(using php) into a field
Here's the situation,
I created 6 pages,each of which has some text fields.I stored the values entered in these text fields in php sessions.now after the user fills up these text …
0
votes
1answer
31 views
What does this mean exactly? $_SESSION[’sessionName ‘][$item[’rowName ‘]]
And how does it translate to in C#?
$item holds the results from mysql_fetch_array()
I'm not really familiar with PHP so this is all new to me. Thanks.
0
votes
1answer
92 views
storing a TextBox value(in a html page) in php array variable which is then stored in a session
Hi,
I am totally new to coding and i would need some help regarding this question of mine.
the question is that,
I have around 5 html pages.I am trying to walk the user through e …
0
votes
1answer
73 views
php session encryption
I'd like to have sessions data encrypted like they are in suhosin, is there any library out there providing that?
1
vote
3answers
112 views
not understanding why this code is not working…
im new to sessions but from what i see it complicated to apply <input> with them. can you please look at this code and tell me why its not working. i had it working earlier …
0
votes
5answers
68 views
PHP Session is not destroying after user logout
I'm trying to create an authentication mechanism for my PHP Application and I'm having difficulty destroying the session. I've tried unsetting the authentication token which was pr …
0
votes
1answer
11 views
ckeditor image button and IE
Hello,
has anyone had any experience with this editor?
Ive been integrating this editor into a web application i am working on, and generally it has been going smoothely, except …
1
vote
3answers
54 views
How do I check that a session object contains a particular key/value entry
I want to check if a certain key/value pair has been set.
How do I check if a an entry with key named "keyName" exists. Sample code or a pointer to an example would be appreciated …
0
votes
2answers
20 views
SESSION with a form file
Hi ,
Say if I upload a file on page 1 and submit the form
How can I make a session with the file which has been uploaded
for example
how would I get the session to store …
0
votes
2answers
20 views
why is the value of textbox (this value is retrieved from the sessions using php) in html shown in IE
Okay the code is,
code in first.php
<?PHP
session_start();
include("script.php");
?>
<form action="script.php" method=POST>
<input type="text" value="<?PHP if( …
1
vote
1answer
16 views
Accessing Zend Session data between actions
Hi. Here's my problem -
I'm trying to access a session namespace across actions. The ZF examples appear to work by generating NEW namespaces, but they only demonstrate this within …
0
votes
2answers
55 views
Session Management (Zend Framework specific)
I'm trying to get the rememberMe() function to remember users and retain sessions for months at a time.
I've read that if you pass a value through rememberMe() it will not work i …
