<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="http://bugs.horde.org/themes/feed-rss.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
  <title>Fatal error: Call to a member function sessionSetup() on a non-object</title>
  <pubDate>Sat, 05 Jul 2008 19:41:29 -0400</pubDate>
  <link>http://bugs.horde.org/ticket/5277</link>
  <atom:link rel="self" type="application/rss+xml" title="Fatal error: Call to a member function sessionSetup() on a non-object" href="http://bugs.horde.org/ticket/5277/rss" />
  <description>Fatal error: Call to a member function sessionSetup() on a non-object</description>

  
  
  <item>
   <title>After loging in and clicking on the MIMP link I see PHP erro</title>
   <description>After loging in and clicking on the MIMP link I see PHP error message:

Fatal error: Call to a member function sessionSetup() on a non-object in /var/www/horde/imp/lib/Session.php on line 293
</description>
   <pubDate>Sat, 21 Apr 2007 14:17:33 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32046</link>
  </item>
  <item>
   <title>I don't see this; which MIMP link do you mean? Are you using</title>
   <description>I don't see this; which MIMP link do you mean? Are you using a mobile browser or a desktop browser?</description>
   <pubDate>Sat, 21 Apr 2007 21:23:00 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32074</link>
  </item>
  <item>
   <title>After logging in I see:

&quot;Welcome, Vilius
Mobile Mail&quot; &lt;-</title>
   <description>After logging in I see:

&quot;Welcome, Vilius
Mobile Mail&quot; &lt;- a link

I'm using built-in mobile browser in Sony Ericsson Z610. Also this happens with Opera Mini.

Does MIMP supposed to intialize imp_search session? I don't remember that MIMP had search functionality in the past.</description>
   <pubDate>Sun, 22 Apr 2007 04:47:58 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32078</link>
  </item>
  <item>
   <title>One more thing. If I refresh a page after this error message</title>
   <description>One more thing. If I refresh a page after this error message, session is created and I am finally able to view inbox.</description>
   <pubDate>Sun, 22 Apr 2007 05:10:32 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32080</link>
  </item>
  <item>
   <title>I can't reproduce either, with either mobile or regular brow</title>
   <description>I can't reproduce either, with either mobile or regular browser, hordeauth on or off, and imp and horde-based auth.  This doesn't make any sense because we always call imp/base.php before we attempt to create a session, and we always initialize imp_search there.  You will have to track this down on your own to let us know why you are getting this error.</description>
   <pubDate>Mon, 23 Apr 2007 18:44:46 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32165</link>
  </item>
  <item>
   <title>Ok, let me start by posting relative config files. Maybe you</title>
   <description>Ok, let me start by posting relative config files. Maybe you will find something interesting.

-- horde/config/conf.php --
$conf['session']['name'] = 'Horde';
$conf['session']['use_only_cookies'] = true;
$conf['session']['cache_limiter'] = 'nocache';
$conf['session']['timeout'] = 0;
$conf['auth']['checkip'] = false;
$conf['auth']['checkbrowser'] = true;
$conf['auth']['alternate_login'] = false;
$conf['auth']['redirect_on_logout'] = false;
$conf['auth']['driver'] = 'composite';
$conf['auth']['params']['admin_driver'] = 'cyrsql';
$conf['auth']['params']['loginscreen_switch'] = '_horde_select_loginscreen';

$conf['auth']['params']['drivers']['ipmap']['params']['blocks'] = array('10.1.1.0/24');
$conf['auth']['params']['drivers']['ipmap']['driver'] = 'ipmap';

$conf['auth']['params']['drivers']['cyrsql']['driver'] = 'cyrsql';
$conf['auth']['params']['drivers']['cyrsql']['params'] = array('cyradmin' =&gt; 'removed',
                                                                'cyrpass' =&gt; 'removed',
                                                                'imap_dsn' =&gt; '{localhost:993/imap/ssl/novalidate-cert}',
                                                                'phptype' =&gt; 'mysql',
                                                                'socket' =&gt; '/var/lib/mysql/mysql.sock',
                                                                'protocol' =&gt; 'unix',
                                                                'hostspec' =&gt; 'localhost',
                                                                'username' =&gt; 'removed',
                                                                'password' =&gt; 'removed',
                                                                'database' =&gt; 'mail',
                                                                'table' =&gt; 'accountuser',
                                                                'username_field' =&gt; 'username',
                                                                'password_field' =&gt; 'password',
                                                                'domain_field' =&gt; 'domain_name',
                                                                'encryption' =&gt; 'crypt-md5',
                                                                'quota' =&gt; 512000,
                                                                'unixhier' =&gt; false,
                                                                'folder' =&gt; array('Spam')
                                                                );
if (!function_exists('_horde_select_loginscreen')) {
    function _horde_select_loginscreen()
    {
        return 'cyrsql';
    }
}

As you can see I'm using composite authentication driver. Could this be the problem?</description>
   <pubDate>Tue, 24 Apr 2007 13:46:31 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32216</link>
  </item>
  <item>
   <title>I don't see how does it suppose to work because function:  I</title>
   <description>I don't see how does it suppose to work because function:  IMP_Session::createSession($imapuser, $pass, $ptr['server'], $ptr) on http://cvs.horde.org/co.php?r=1.46&amp;f=imp%2Flib%2FAuth%2Fimp.php#l68 IS executed in mimp context. I checked it with Horde::logMessage().

Moreover /imp/lib/base.php is never loaded because function: IMP::checkAuthentication(true) on http://cvs.horde.org/co.php?r=1.45&amp;f=mimp%2Flib%2Fbase.php#l28 is never successfully executed for the same reason above.

I don't know why it works for you or why it works for me when I hit &quot;refresh page&quot; but from the code I'm seeing it should not work at all. Maybe I'm missing something? This is where you should step-in and enlight my poor Horde authentification skills.</description>
   <pubDate>Tue, 24 Apr 2007 16:05:44 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32221</link>
  </item>
  <item>
   <title>This also happens if I go to https://mydomain.com/horde/dimp</title>
   <description>This also happens if I go to https://mydomain.com/horde/dimp/ and then login.

However, if I login at first and then link my browser to https://mydomain.com/horde/dimp/ everything is working as expected.</description>
   <pubDate>Wed, 02 May 2007 10:23:04 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t32475</link>
  </item>
  <item>
   <title>&gt; This also happens if I go to https://mydomain.com/horde/di</title>
   <description>&gt; This also happens if I go to https://mydomain.com/horde/dimp/ and then login.
&gt;
&gt; However, if I login at first and then link my browser to 
&gt; https://mydomain.com/horde/dimp/ everything is working as expected.

Vilius, can you see if this fixes things?
http://lists.horde.org/archives/cvs/Week-of-Mon-20070604/068392.html</description>
   <pubDate>Mon, 04 Jun 2007 19:22:17 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t33841</link>
  </item>
  <item>
   <title>Now I have another problem.

PHP Fatal error:  Call to und</title>
   <description>Now I have another problem.

PHP Fatal error:  Call to undefined method Notification_Listener_status_imp::setMobileObject() in /var/www/html/horde/mimp/templates/mailbox/mailbox.inc on line 6, referer: https://mail.lnk.lt/horde/index.php?url=https%3A%2F%2Fmail.lnk.lt%2Fhorde%2Findex.php
</description>
   <pubDate>Tue, 05 Jun 2007 03:00:28 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t33875</link>
  </item>
  <item>
   <title>&gt; PHP Fatal error:  Call to undefined method 
&gt; Notificatio</title>
   <description>&gt; PHP Fatal error:  Call to undefined method 
&gt; Notification_Listener_status_imp::setMobileObject() in 
&gt; /var/www/html/horde/mimp/templates/mailbox/mailbox.inc on line 6, 

Try this:
http://lists.horde.org/archives/cvs/Week-of-Mon-20070611/068560.html</description>
   <pubDate>Mon, 11 Jun 2007 18:32:47 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t33990</link>
  </item>
  <item>
   <title>Yes! You finally done it. Thanks.</title>
   <description>Yes! You finally done it. Thanks.</description>
   <pubDate>Tue, 12 Jun 2007 01:24:08 -0400</pubDate>
   <link>http://bugs.horde.org/ticket/5277#t34001</link>
  </item>
  

 </channel>
</rss>
