Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a upload script which post upload lets the user edit the content title for a period of time. It sets the following in the ci_sessions user_data column in the db:

array (
  'user_data' => '',
  'edit' => 
  array (
    'image_id' => 'HF',
    'session_id' => '783c15b057bcd9c19d3fd82f367ee55d',
  ),
)

The problem is my session CHECK code can't find the session:

<?php if ($this->session->userdata('edit') !== FALSE) : ?> 
<?php echo '<!-- session found -->'; ?>
    <?php $session_info = $this->session->userdata('edit'); ?>
    <?php $ids_array = explode(",", $session_info['image_id']); ?>
    <?php foreach ($ids_array as $id): ?>
    <?php 
    if ($id == $alpha_id 
    && 
    $session_info['session_id'] == $this->session->userdata('session_id')) :
    ?> 

The echo on line 2 of that block never gets outputted. Can anyone see what I'm doing wrong? thanks

heres my controller http://pastebin.com/aXeRn1VN

share|improve this question
Can you post the content of config.php? – Sérgio Michels Mar 1 '12 at 12:09
Here's config.php session info pastebin.com/A31nrC1b – user1166654 Mar 1 '12 at 12:10
Try printing all the data with $this->session->all_userdata(). It shows something? – Sérgio Michels Mar 1 '12 at 12:16
@SérgioMichels that outputs pastebin.com/sRtRaRbB – user1166654 Mar 1 '12 at 12:17
Also note user_data is NOT blank in the db, but there is multiple sessions with the same ip in the db (if relevant), but different session_ids of course – user1166654 Mar 1 '12 at 12:21

1 Answer

Try this

<?php if( $this->session->userdata('edit') ) : ?> 

instead of

<?php if ($this->session->userdata('edit') !== FALSE) : ?> 
share|improve this answer
same result with that – user1166654 Mar 1 '12 at 11:56
then you should check what your session contains with $this->session->all_userdata(); – Shayan Husaini Mar 1 '12 at 12:03
when i ouput that it says user_data is blank, but when i check in the db it is not blank, it has all the info – user1166654 Mar 1 '12 at 12:06
FYI, there seems to be multiple sessions in the db with the same ip (if thats relevant) – user1166654 Mar 1 '12 at 12:08
'user_data' => '' what does this line means? and you cannot understand the values in db as codeigniter sessions are stored in an encrypted form – Shayan Husaini Mar 1 '12 at 12:09
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.