From d.hill at yournetplus.com Mon Aug 3 00:37:55 2009 From: d.hill at yournetplus.com (d.hill at yournetplus.com) Date: Mon, 03 Aug 2009 00:37:55 +0000 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> Message-ID: <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> Quoting Michael Rubinsky : > > Quoting d.hill at yournetplus.com: > >> Quoting Michael Rubinsky : >>> >>> Quoting d.hill at yournetplus.com: >>> >>>> Quoting Michael Rubinsky : >>>> >>>>> >>>>> Quoting d.hill at yournetplus.com: >>>>> >>>>>> I'm still getting an error relating to 'Class definition of >>>>>> Horde_Cache_emcache not found' periodically. >>>>>> >>>>>> I have added my email account as an admin so I could get the >>>>>> full error message. Being the content of the text is over >>>>>> 500Kb, here is a link to the text of what I receive periodically: >>>>>> >>>>>> http://mail.yournetplus.com/d.hill/Horde_Cache_emcache.txt >>>>>> >>>>>> I've changed all of the sensitive information (E.g. server >>>>>> domain names and passwords) to protect the innocent. >>>>>> >>>>>> Can anyone shed light as to what is going on? I have very >>>>>> little PHP experience to debug this issue. >>>>> >>>>> This is very bizarre. It looks like you either have a corrupt >>>>> Cache.php file or a badly broken PHP build. >>>>> >>>>> Can you post what the factory() method looks like in >>>>> lib/Horde/Cache.php? Even better, you can place >>>>> var_dump($driver) statements in various locations in that method >>>>> and see where the string is losing the first character. >>>> >>>> Thanks for your quick response. I have placed var_dump($driver) >>>> after all of the if statements within that particular methond. >>> >>> ...and what are the results of the var_dump()s? >> >> The error has not occured as of yet. I'm assuming the var_dump() >> will show something in the logs. What would I be looking for? Also, >> is it going to show something on the dump page I get when the error >> occures? > > No, var_dump was a quick and dirty way of getting the value of that > variable...it will display on the screen. If you want it to appear > in the log, you should do something like: > > Horde::logMessage(print_r($driver, true), _FILE__, __LINE__, PEAR_LOG_DEBUG); > > ..and this will not happen only if there is an error - it will log > every time. I must not be looking for the correct log line. I've looked in the horde log and apache log and don't see anything that sticks out. This is the error in the logs when it happens: [Mon Aug 03 00:25:05 2009] [error] [client 173.29.174.24] PHP Warning: include_once() [function.include]: Failed opening 'Horde/Cache/emcache.php' for inclusion (include_path='/usr/local/www/apache22/data/horde/lib:/usr/local/www/apache22/data/horde/lib/../pear') in /usr/local/www/apache22/data/horde/lib/Horde/Cache.php on line 181, referer: http://webmail.yournetplus.com/services/portal/sidebar.php From mrubinsk at horde.org Mon Aug 3 02:22:51 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Sun, 02 Aug 2009 22:22:51 -0400 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> Message-ID: <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> Quoting d.hill at yournetplus.com: > Quoting Michael Rubinsky : > >> >> Quoting d.hill at yournetplus.com: >> >>> Quoting Michael Rubinsky : >>>> >>>> Quoting d.hill at yournetplus.com: >>>> >>>>> Quoting Michael Rubinsky : >>>>> >>>>>> >>>>>> Quoting d.hill at yournetplus.com: >>>>>> >>>>>>> I'm still getting an error relating to 'Class definition of >>>>>>> Horde_Cache_emcache not found' periodically. >>>>>>> >>>>>>> I have added my email account as an admin so I could get the >>>>>>> full error message. Being the content of the text is over >>>>>>> 500Kb, here is a link to the text of what I receive >>>>>>> periodically: >>>>>>> >>>>>>> http://mail.yournetplus.com/d.hill/Horde_Cache_emcache.txt >>>>>>> >>>>>>> I've changed all of the sensitive information (E.g. server >>>>>>> domain names and passwords) to protect the innocent. >>>>>>> >>>>>>> Can anyone shed light as to what is going on? I have very >>>>>>> little PHP experience to debug this issue. >>>>>> >>>>>> This is very bizarre. It looks like you either have a corrupt >>>>>> Cache.php file or a badly broken PHP build. >>>>>> >>>>>> Can you post what the factory() method looks like in >>>>>> lib/Horde/Cache.php? Even better, you can place >>>>>> var_dump($driver) statements in various locations in that >>>>>> method and see where the string is losing the first character. >>>>> >>>>> Thanks for your quick response. I have placed var_dump($driver) >>>>> after all of the if statements within that particular methond. >>>> >>>> ...and what are the results of the var_dump()s? >>> >>> The error has not occured as of yet. I'm assuming the var_dump() >>> will show something in the logs. What would I be looking for? >>> Also, is it going to show something on the dump page I get when >>> the error occures? >> >> No, var_dump was a quick and dirty way of getting the value of that >> variable...it will display on the screen. If you want it to appear >> in the log, you should do something like: >> >> Horde::logMessage(print_r($driver, true), _FILE__, __LINE__, >> PEAR_LOG_DEBUG); >> >> ..and this will not happen only if there is an error - it will log >> every time. > > I must not be looking for the correct log line. I've looked in the > horde log and apache log and don't see anything that sticks out. You're looking in the wrong log. The error you're pasting is from the web server error log, you need to look in the horde log for the debug output. Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From d.hill at yournetplus.com Mon Aug 3 04:45:05 2009 From: d.hill at yournetplus.com (d.hill at yournetplus.com) Date: Mon, 03 Aug 2009 04:45:05 +0000 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> Message-ID: <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> Quoting Michael Rubinsky : > > Quoting d.hill at yournetplus.com: > >> Quoting Michael Rubinsky : >> >>> >>> Quoting d.hill at yournetplus.com: >>> >>>> Quoting Michael Rubinsky : >>>>> >>>>> Quoting d.hill at yournetplus.com: >>>>> >>>>>> Quoting Michael Rubinsky : >>>>>> >>>>>>> >>>>>>> Quoting d.hill at yournetplus.com: >>>>>>> >>>>>>>> I'm still getting an error relating to 'Class definition of >>>>>>>> Horde_Cache_emcache not found' periodically. >>>>>>>> >>>>>>>> I have added my email account as an admin so I could get the >>>>>>>> full error message. Being the content of the text is over >>>>>>>> 500Kb, here is a link to the text of what I receive >>>>>>>> periodically: >>>>>>>> >>>>>>>> http://mail.yournetplus.com/d.hill/Horde_Cache_emcache.txt >>>>>>>> >>>>>>>> I've changed all of the sensitive information (E.g. server >>>>>>>> domain names and passwords) to protect the innocent. >>>>>>>> >>>>>>>> Can anyone shed light as to what is going on? I have very >>>>>>>> little PHP experience to debug this issue. >>>>>>> >>>>>>> This is very bizarre. It looks like you either have a corrupt >>>>>>> Cache.php file or a badly broken PHP build. >>>>>>> >>>>>>> Can you post what the factory() method looks like in >>>>>>> lib/Horde/Cache.php? Even better, you can place >>>>>>> var_dump($driver) statements in various locations in that >>>>>>> method and see where the string is losing the first character. >>>>>> >>>>>> Thanks for your quick response. I have placed var_dump($driver) >>>>>> after all of the if statements within that particular methond. >>>>> >>>>> ...and what are the results of the var_dump()s? >>>> >>>> The error has not occured as of yet. I'm assuming the var_dump() >>>> will show something in the logs. What would I be looking for? >>>> Also, is it going to show something on the dump page I get when >>>> the error occures? >>> >>> No, var_dump was a quick and dirty way of getting the value of >>> that variable...it will display on the screen. If you want it to >>> appear in the log, you should do something like: >>> >>> Horde::logMessage(print_r($driver, true), _FILE__, __LINE__, >>> PEAR_LOG_DEBUG); >>> >>> ..and this will not happen only if there is an error - it will log >>> every time. >> >> I must not be looking for the correct log line. I've looked in the >> horde log and apache log and don't see anything that sticks out. > > You're looking in the wrong log. The error you're pasting is from > the web server error log, you need to look in the horde log for the > debug output. As I stated, I was looking in the Horde log file and do not know what I should be looking for. From mrubinsk at horde.org Mon Aug 3 04:51:04 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Mon, 03 Aug 2009 00:51:04 -0400 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> Message-ID: <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> Quoting d.hill at yournetplus.com: > > As I stated, I was looking in the Horde log file and do not know > what I should be looking for. Do you have the log level turned up enough to see debug messages? Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From d.hill at yournetplus.com Mon Aug 3 05:03:59 2009 From: d.hill at yournetplus.com (d.hill at yournetplus.com) Date: Mon, 03 Aug 2009 05:03:59 +0000 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> Message-ID: <20090803050359.1339623bz2zcgq4o@webmail.yournetplus.com> Quoting Michael Rubinsky : > Quoting d.hill at yournetplus.com: > >> >> As I stated, I was looking in the Horde log file and do not know >> what I should be looking for. > > Do you have the log level turned up enough to see debug messages? I apologize for my ignorance. Now that I have Horde logging everything, what am I looking for? I'm sorry I'm not fluent with PHP. From Gary at primeexalia.com Mon Aug 3 06:32:42 2009 From: Gary at primeexalia.com (Gary Smith) Date: Sun, 2 Aug 2009 23:32:42 -0700 Subject: [horde] logout problem Message-ID: <5017258D295FBE41917880488689F7B80FABD910BA@VCSSBS.visionarycs.local> Following up on my thread for CVS Update, the original problem that I encountered is a ticket lifetime issue when someone tries to log out. Verifying that the patch is implemented, when I log out I still get the error "This request cannot be completed because the link you followed or the form you submitted was only valid for minutes. Please try again now." I logged into horde last week and still as of today I'm logged in, regardless of rebooting the computer, and not visiting the site. Anyone have any ideas on this one? From rsalmon at mbpgroup.com Mon Aug 3 07:33:46 2009 From: rsalmon at mbpgroup.com (Ronan SALMON) Date: Mon, 03 Aug 2009 09:33:46 +0200 Subject: [horde] Update from CVS issue In-Reply-To: <20090731230636.so4o4s@technest.org> References: <5017258D295FBE41917880488689F7B80FABD9107C@VCSSBS.visionarycs.local> <55875808.20090726103500@lnk.lt> <20090726184239.32465aaw0aczg7c4@portal.theupstairsroom.com> <5017258D295FBE41917880488689F7B80FABD91081@VCSSBS.visionarycs.local> <20090727101934.72961tench5r99j4@portal.theupstairsroom.com> <5017258D295FBE41917880488689F7B80FABD91087@VCSSBS.visionarycs.local> <5017258D295FBE41917880488689F7B80FABD910AC@VCSSBS.visionarycs.local> <20090731230636.so4o4s@technest.org> Message-ID: <20090803093346.160122hfidvqu3gk@webmail.mbpgroup.local> Chuck Hagenbuch a ?crit?: > Quoting Gary Smith : > >> Blew away all my files, ran the command above, and still, I have a >> old copy of the framework/Horde/Horde.php file. >> >> /** >> * @package Horde_Framework >> * >> ... >> * $Horde: framework/Horde/Horde.php,v 1.489.2.113 2009-02-14 >> 18:02:06 mrubinsk > > Can someone else please specifically check what version of this file > you get from the anoncvs server? I am getting 1.489.2.114 this morning, but this file has been updated 2 days ago in FRAMEWORK_3. Thanks, Ronan. From jan at horde.org Mon Aug 3 08:42:04 2009 From: jan at horde.org (Jan Schneider) Date: Mon, 03 Aug 2009 10:42:04 +0200 Subject: [horde] what to do with horde_setup_upgrade.php? In-Reply-To: <60f50c4a0907280803n7f2db749jc9525f67fea786c3@mail.gmail.com> References: <60f50c4a0907280803n7f2db749jc9525f67fea786c3@mail.gmail.com> Message-ID: <20090803104204.1199253tgphjni74@neo.wg.de> Zitat von Soren Orel : > I'm a newbie to php, horde, and I just want to ask that I install horde, > etc, and I don't want to give permissions like: > chmod 777 /etc/horde/horde3/conf.php > touch /etc/horde/horde3/conf.bak.php > chmod 777 /etc/horde/horde3/conf.bak.php > > so I clicked on the: > "Save generated configuration as a PHP script to your server's temporary > directory." > and it gived me: > "Saved setup upgrade script to: "/tmp/horde_setup_upgrade.php"." > Ok, I can see the file, but how could I get horde to use it, to get the > config right? Execute it. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: Digitale PGP-Unterschrift URL: From jan at horde.org Mon Aug 3 08:48:14 2009 From: jan at horde.org (Jan Schneider) Date: Mon, 03 Aug 2009 10:48:14 +0200 Subject: [horde] subscribed_view always on imp In-Reply-To: <4A74CE5D.3070003@schetterer.org> References: <4A74CE5D.3070003@schetterer.org> Message-ID: <20090803104814.192978zvlg5zp9ow@neo.wg.de> Zitat von Robert Schetterer : > Hi, how can i set the subscribed_view > always on or minimum set on as default ? You can't. Don't use subscriptions if you want to see all folders by default. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: Digitale PGP-Unterschrift URL: From d.hill at yournetplus.com Mon Aug 3 13:08:14 2009 From: d.hill at yournetplus.com (d.hill at yournetplus.com) Date: Mon, 03 Aug 2009 13:08:14 +0000 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803050359.1339623bz2zcgq4o@webmail.yournetplus.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> <20090803050359.1339623bz2zcgq4o@webmail.yournetplus.com> Message-ID: <20090803130814.84734yn4xmpxtngg@webmail.yournetplus.com> Quoting d.hill at yournetplus.com: > Quoting Michael Rubinsky : > >> Quoting d.hill at yournetplus.com: >> >>> >>> As I stated, I was looking in the Horde log file and do not know >>> what I should be looking for. >> >> Do you have the log level turned up enough to see debug messages? > > I apologize for my ignorance. Now that I have Horde logging > everything, what am I looking for? I'm sorry I'm not fluent with PHP. Never mind. I found the log lines: Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line 174 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line 184 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line 193 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] The three log lines I've found to be repeated three times all within the same hour. There should be four lines being logged. I'm not sure why the first one is not being logged. It should be the first thing executed within the fuction: function factory($driver, $params = array()) { Horde::logMessage(print_r($driver, true), __FILE__, __LINE__, PEAR_LOG_DEBUG); if (is_array($driver)) { $app = $driver[0]; $driver = $driver[1]; } Horde::logMessage(print_r($driver, true), __FILE__, __LINE__, PEAR_LOG_DEBUG); $driver = basename($driver); if (empty($driver) || $driver == 'none') { return new Horde_Cache($params); } Horde::logMessage(print_r($driver, true), __FILE__, __LINE__, PEAR_LOG_DEBUG); if (!empty($app)) { include_once $app . '/lib/Cache/' . $driver . '.php'; } elseif (file_exists(dirname(__FILE__) . '/Cache/' . $driver . '.php')) { include_once dirname(__FILE__) . '/Cache/' . $driver . '.php'; } else { include_once 'Horde/Cache/' . $driver . '.php'; } Horde::logMessage(print_r($driver, true), __FILE__, __LINE__, PEAR_LOG_DEBUG); $class = 'Horde_Cache_' . $driver; if (class_exists($class)) { $cache = new $class($params); } else { $cache = PEAR::raiseError('Class definition of ' . $class . ' not found.'); } Horde::logMessage(print_r($driver, true), __FILE__, __LINE__, PEAR_LOG_DEBUG); return $cache; } From mrubinsk at horde.org Mon Aug 3 14:45:07 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Mon, 03 Aug 2009 10:45:07 -0400 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803130814.84734yn4xmpxtngg@webmail.yournetplus.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> <20090803050359.1339623bz2zcgq4o@webmail.yournetplus.com> <20090803130814.84734yn4xmpxtngg@webmail.yournetplus.com> Message-ID: <20090803104507.13053jbktbirf4mc@portal.theupstairsroom.com> Quoting d.hill at yournetplus.com: > Quoting d.hill at yournetplus.com: > >> Quoting Michael Rubinsky : >> >>> Quoting d.hill at yournetplus.com: >>> >>>> >>>> As I stated, I was looking in the Horde log file and do not know >>>> what I should be looking for. >>> >>> Do you have the log level turned up enough to see debug messages? >> >> I apologize for my ignorance. Now that I have Horde logging >> everything, what am I looking for? I'm sorry I'm not fluent with PHP. > > Never mind. I found the log lines: > > Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line 174 > of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] > Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line 184 > of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] > Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line 193 > of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] > > The three log lines I've found to be repeated three times all within > the same hour. > > There should be four lines being logged. I'm not sure why the first > one is not being logged. It should be the first thing executed > within the fuction: It sounds to me like you have a badly broken PHP. Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From d.hill at yournetplus.com Mon Aug 3 15:48:19 2009 From: d.hill at yournetplus.com (d.hill at yournetplus.com) Date: Mon, 03 Aug 2009 15:48:19 +0000 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803104507.13053jbktbirf4mc@portal.theupstairsroom.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> <20090803050359.1339623bz2zcgq4o@webmail.yournetplus.com> <20090803130814.84734yn4xmpxtngg@webmail.yournetplus.com> <20090803104507.13053jbktbirf4mc@portal.theupstairsroom.com> Message-ID: <20090803154819.15541m313yr5zum8@webmail.yournetplus.com> Quoting Michael Rubinsky : > > Quoting d.hill at yournetplus.com: > >> Quoting d.hill at yournetplus.com: >> >>> Quoting Michael Rubinsky : >>> >>>> Quoting d.hill at yournetplus.com: >>>> >>>>> >>>>> As I stated, I was looking in the Horde log file and do not know >>>>> what I should be looking for. >>>> >>>> Do you have the log level turned up enough to see debug messages? >>> >>> I apologize for my ignorance. Now that I have Horde logging >>> everything, what am I looking for? I'm sorry I'm not fluent with >>> PHP. >> >> Never mind. I found the log lines: >> >> Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line >> 174 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] >> Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line >> 184 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] >> Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line >> 193 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] >> >> The three log lines I've found to be repeated three times all >> within the same hour. >> >> There should be four lines being logged. I'm not sure why the first >> one is not being logged. It should be the first thing executed >> within the fuction: > > > It sounds to me like you have a badly broken PHP. I would accept that as an answer to the issue. However, I am finding it hard to believe when there are several other PHP applications running without issue. When you say broken, it what particular area(s) are you talking about? From mrubinsk at horde.org Mon Aug 3 17:09:27 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Mon, 03 Aug 2009 13:09:27 -0400 Subject: [horde] Class definition of Horde_Cache_emcache not found - Revisted In-Reply-To: <20090803154819.15541m313yr5zum8@webmail.yournetplus.com> References: <20090731235559.13525nm4sihdwrgg@webmail.yournetplus.com> <20090731202240.205436y3ic92xh44@portal.theupstairsroom.com> <20090801003917.16147jni5624olk4@webmail.yournetplus.com> <20090731205909.20675vi612gpabus@portal.theupstairsroom.com> <20090801162342.11521qa6xu6x00m8@webmail.yournetplus.com> <20090801124145.14643kr2do6ypxlc@portal.theupstairsroom.com> <20090803003755.94508wq1jslqvmg0@webmail.yournetplus.com> <20090802222251.146071dv1e236bcr@portal.theupstairsroom.com> <20090803044505.445720fp8i659dvo@webmail.yournetplus.com> <20090803005104.42613yglgla13yyo@portal.theupstairsroom.com> <20090803050359.1339623bz2zcgq4o@webmail.yournetplus.com> <20090803130814.84734yn4xmpxtngg@webmail.yournetplus.com> <20090803104507.13053jbktbirf4mc@portal.theupstairsroom.com> <20090803154819.15541m313yr5zum8@webmail.yournetplus.com> Message-ID: <20090803130927.90772mtx9uvyc3c4@portal.theupstairsroom.com> Quoting d.hill at yournetplus.com: > Quoting Michael Rubinsky : > >> >> Quoting d.hill at yournetplus.com: >> >>> Quoting d.hill at yournetplus.com: >>> >>>> Quoting Michael Rubinsky : >>>> >>>>> Quoting d.hill at yournetplus.com: >>>>> >>>>>> >>>>>> As I stated, I was looking in the Horde log file and do not >>>>>> know what I should be looking for. >>>>> >>>>> Do you have the log level turned up enough to see debug messages? >>>> >>>> I apologize for my ignorance. Now that I have Horde logging >>>> everything, what am I looking for? I'm sorry I'm not fluent with >>>> PHP. >>> >>> Never mind. I found the log lines: >>> >>> Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line >>> 174 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] >>> Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line >>> 184 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] >>> Aug 03 12:21:08 HORDE [debug] [horde] emcache [pid 85246 on line >>> 193 of "/usr/local/www/apache22/data/horde/lib/Horde/Cache.php"] >>> >>> The three log lines I've found to be repeated three times all >>> within the same hour. >>> >>> There should be four lines being logged. I'm not sure why the >>> first one is not being logged. It should be the first thing >>> executed within the fuction: >> >> >> It sounds to me like you have a badly broken PHP. > > I would accept that as an answer to the issue. However, I am finding > it hard to believe when there are several other PHP applications > running without issue. > > When you say broken, it what particular area(s) are you talking about? I have no idea. I'm not familiar with PHP internals. But when a statement doesn't execute, when it clearly should, and when the value of a parameter is changed between the time it is passed to a function and the time it gets to the function, it's broken. Unless you can trace your code to the exact point in Horde's code that the value of $driver is changed from 'memcache' to 'emcache', I have to assume it's something broken in PHP. Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From lists at xunil.at Mon Aug 3 17:52:15 2009 From: lists at xunil.at (Stefan G. Weichinger) Date: Mon, 03 Aug 2009 19:52:15 +0200 Subject: [horde] ingo H3 (1.2.1) and dovecot-managesieve In-Reply-To: <4A740D9D.4090502@xunil.at> References: <4A55B915.6050503@xunil.at> <4A55DAAF.8050405@schetterer.org> <4A55ED07.1050206@xunil.at> <4A55F53E.9050201@schetterer.org> <4A55F72C.5020707@schetterer.org> <4A560074.4070803@xunil.at> <4A740D9D.4090502@xunil.at> Message-ID: <4A7723CF.6010000@xunil.at> Stefan G. Weichinger schrieb: > Stefan G. Weichinger schrieb: > >> As if it wouldn't contact managesieve at all. Maybe I lack some library >> or something ... > > I set horde-logging to debug ... when I look at the logs I notice: > > [pid 27115 on line 1214 of > "/data/httpd/at.xy.horde/horde/lib/Horde/DataTree/sql.php"] > Jul 29 15:19:54 HORDE [debug] [ingo] Ingo_Storage_sql::_store(): DELETE > FROM ingo_lists WHERE list_owner = ? AND list_blacklist = ? [pid 3430 on > line 271 of "/data/httpd/at.xy.horde/horde/ingo/lib/Storage/sql.php"] > Jul 29 15:19:54 HORDE [debug] [ingo] Ingo_Storage_sql::_store(): INSERT > INTO ingo_lists (list_owner, list_blacklist, list_address) VALUES (?, ?, > ?) [pid 3430 on line 280 of > "/data/httpd/at.xy.horde/horde/ingo/lib/Storage/sql.php"] > > Why the "?" ? Might ingo not be able to use the correct user I am > authenticated with? And in consequence it can't login to managesieve or > pysieved? Ok, so I switched over to use the vfs-driver instead ... works now, although the original problem was not solved. But I had to get that running ... Stefan From bhalsema at purdue.edu Mon Aug 3 21:05:32 2009 From: bhalsema at purdue.edu (Beth Halsema) Date: Mon, 3 Aug 2009 17:05:32 -0400 (EDT) Subject: [horde] Bad or malformed request. Server Responded: Command unrecognized: LOGIN Message-ID: While testing our installation of Horde Groupware Webmail Edition (version 1.2.3), we ran into an understandable but undesirable behavior. I am uncertain as to whether it should be considered a bug, but I was hoping that I might find out: a) Whether others have experienced this scenario? b) If so, how did they address it? c) Whether I should be submitting a bug report? We are running the latest release of UW-IMAP. We are using the IMP application to authenticate. We also use the IMAP host's native account expiration. From the time that the expiration field is set and excluding its final day, the status information displayed by IMP (as provided by the IMAP server) is correct: Account expires in x days(s)! However, on the final day (the account has not yet expired), instead of the alert being displayed, Account expires today! , the login attempt fails, and the following informational message is provided on the Horde login page: Bad or malformed request. Server Responded: Command unrecognized: LOGIN I believe that this is due to the fact that the IMAP server returns (untagged): * NO [ALERT] Account expires today! as opposed to: * OK [ALERT] Account expires in x day(s)! According to RFC 3501 Section 7.1.2 (NO Response), this is a recognized response, indicating an operational errror from the server. The command can and does complete successfully. http://www.rfc-editor.org/rfc/rfc3501.txt ------------------------------------------------------------------------- Beth A. Halsema Sr. Network Analyst/Engineer Utility Software Services email:bhalsema at purdue.edu OVPIT - IT Infrastructure 401 S. Grant St. phone:(765)496-7456 West Lafayette, Indiana 47907-2024 fax :(765)494-0566 From jan at horde.org Tue Aug 4 10:14:30 2009 From: jan at horde.org (Jan Schneider) Date: Tue, 04 Aug 2009 12:14:30 +0200 Subject: [horde] Bad or malformed request. Server Responded: Command unrecognized: LOGIN In-Reply-To: References: Message-ID: <20090804121430.2122585lrpjf26sc@neo.wg.de> Zitat von Beth Halsema : > > While testing our installation of Horde Groupware Webmail Edition > (version 1.2.3), we ran into an understandable but undesirable > behavior. I am uncertain as to whether it should be considered a > bug, but I was hoping that I might find out: > > a) Whether others have experienced this scenario? > b) If so, how did they address it? > c) Whether I should be submitting a bug report? > > We are running the latest release of UW-IMAP. We are using the IMP > application to authenticate. We also use the IMAP host's native > account expiration. From the time that the expiration field is set > and excluding its final day, the status information displayed by IMP > (as provided by the IMAP server) is correct: > > Account expires in x days(s)! > > However, on the final day (the account has not yet expired), instead > of the alert being displayed, > > Account expires today! > > , the login attempt fails, and the following informational message is > provided on the Horde login page: > > Bad or malformed request. Server Responded: Command unrecognized: LOGIN > > I believe that this is due to the fact that the IMAP server returns > (untagged): > > * NO [ALERT] Account expires today! > > as opposed to: > > * OK [ALERT] Account expires in x day(s)! > > According to RFC 3501 Section 7.1.2 (NO Response), this is a recognized > response, indicating an operational errror from the server. The > command can and does complete successfully. > > http://www.rfc-editor.org/rfc/rfc3501.txt We have no influence on that. PHP uses the c-client for authentication at the IMAP server, which has been developed by the author of that RFC. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: Digitale PGP-Unterschrift URL: From schaarschmidt at zdv.uni-tuebingen.de Tue Aug 4 11:00:35 2009 From: schaarschmidt at zdv.uni-tuebingen.de (Gabriele Schaarschmidt) Date: Tue, 04 Aug 2009 13:00:35 +0200 Subject: [horde] Deletion or move generates "malicious request" error Message-ID: <20090804130035.15284cm11uctln0z@webmail.uni-tuebingen.de> Hi all, some of our users have the following problem: when they try to delete or move a message they get an error: "We cannot verify that this request was really sent by you. It could be a malicious request. If you intended to perform this action, you can retry it now." and mails will not be marked for deletion or moved. This also happens sometimes when logging out immediatly after login. We use horde-3.3.3, imp-h3-4.3.3 with memcache as custom session handler. SUSE Linux Enterprise Server 10 (x86_64) memcached-1.2.5-2.1 php5-5.2.5-9.9 $conf['cache']['default_lifetime'] = 86400; $conf['cache']['driver'] = 'memcache'; $conf['sessionhandler']['params']['track'] = false; $conf['sessionhandler']['type'] = 'memcache'; $conf['sessionhandler']['memcache'] = true; $conf['memcache']['hostspec'] = array('localhost'); $conf['memcache']['port'] = array('11211'); $conf['memcache']['weight'] = array(); $conf['memcache']['persistent'] = true; $conf['memcache']['c_threshold'] = 0; $conf['memcache']['compression'] = true; $conf['memcache']['large_items'] = true; $conf['memcache']['enabled'] = true; tickets #7618 #7931 are about a similar problem but with sql-based session handler. Can anyone reproduce this? Regards, Gabriele From bhalsema at purdue.edu Tue Aug 4 13:44:02 2009 From: bhalsema at purdue.edu (Beth Halsema) Date: Tue, 4 Aug 2009 09:44:02 -0400 (EDT) Subject: [horde] Bad or malformed request. Server Responded: Command unrecognized: LOGIN In-Reply-To: <20090804121430.2122585lrpjf26sc@neo.wg.de> References: <20090804121430.2122585lrpjf26sc@neo.wg.de> Message-ID: [NOTE: I have included the initial post, since it contained detailed information regarding what we are seeing. ] On Tue, 4 Aug 2009, Jan Schneider wrote: > > Zitat von Beth Halsema : > > > > > While testing our installation of Horde Groupware Webmail Edition > > (version 1.2.3), we ran into an understandable but undesirable > > behavior. I am uncertain as to whether it should be considered a > > bug, but I was hoping that I might find out: > > > > a) Whether others have experienced this scenario? > > b) If so, how did they address it? > > c) Whether I should be submitting a bug report? > > > > We are running the latest release of UW-IMAP. We are using the IMP > > application to authenticate. We also use the IMAP host's native > > account expiration. From the time that the expiration field is set > > and excluding its final day, the status information displayed by IMP > > (as provided by the IMAP server) is correct: > > > > Account expires in x days(s)! > > > > However, on the final day (the account has not yet expired), instead > > of the alert being displayed, > > > > Account expires today! > > > > , the login attempt fails, and the following informational message is > > provided on the Horde login page: > > > > Bad or malformed request. Server Responded: Command unrecognized: LOGIN > > > > I believe that this is due to the fact that the IMAP server returns > > (untagged): > > > > * NO [ALERT] Account expires today! > > > > as opposed to: > > > > * OK [ALERT] Account expires in x day(s)! > > > > According to RFC 3501 Section 7.1.2 (NO Response), this is a recognized > > response, indicating an operational errror from the server. The > > command can and does complete successfully. > > > > http://www.rfc-editor.org/rfc/rfc3501.txt > > We have no influence on that. PHP uses the c-client for authentication > at the IMAP server, which has been developed by the author of that RFC. > > Jan. > I understand c-client's part in the handling of the server response. However, the inability to login is not due to a server problem, nor c-client. The behavior appears to be due to the handling of the response in the case statement found in the _runCommand() function in the file horde/imp/lib/IMAP/Client.php Specifically, the handling of the NO response for untagged responses doesn't appear to be consistent with the RFC. Here is an excerpt from our logs: ------------- Aug 3 16:38:20 HORDE[14505]: [imp] Could not complete request. Reason Given: [ALERT] Account expires today!: NO [pid 14505 on line 382 of "/opt/horde-webmail-1.2.3/imp/lib/IMAP/Client.php"] Aug 3 16:38:20 HORDE[14505]: [imp] Bad or malformed request. Server Responded: Command unrecognized: LOGIN: BAD [pid 14505 on line 382 of "/opt/horde-webmail-1.2.3/imp/lib/IMAP/Client.php"] Aug 3 16:38:20 HORDE[14505]: [imp] IMAP alerts: [ALERT] Account expires today! [pid 14505 on line 170 of "/opt/horde-webmail-1.2.3/imp/lib/IMAP.php"] ------------- Thank you for any assistance you might be able to provide. Beth From jan at horde.org Tue Aug 4 14:11:49 2009 From: jan at horde.org (Jan Schneider) Date: Tue, 04 Aug 2009 16:11:49 +0200 Subject: [horde] Bad or malformed request. Server Responded: Command unrecognized: LOGIN In-Reply-To: References: <20090804121430.2122585lrpjf26sc@neo.wg.de> Message-ID: <20090804161149.53515eopn6fm7zjc@neo.wg.de> Zitat von Beth Halsema : > > [NOTE: I have included the initial post, since it contained detailed > information regarding what we are seeing. ] > > On Tue, 4 Aug 2009, Jan Schneider wrote: >> >> Zitat von Beth Halsema : >> >> > >> > While testing our installation of Horde Groupware Webmail Edition >> > (version 1.2.3), we ran into an understandable but undesirable >> > behavior. I am uncertain as to whether it should be considered a >> > bug, but I was hoping that I might find out: >> > >> > a) Whether others have experienced this scenario? >> > b) If so, how did they address it? >> > c) Whether I should be submitting a bug report? >> > >> > We are running the latest release of UW-IMAP. We are using the IMP >> > application to authenticate. We also use the IMAP host's native >> > account expiration. From the time that the expiration field is set >> > and excluding its final day, the status information displayed by IMP >> > (as provided by the IMAP server) is correct: >> > >> > Account expires in x days(s)! >> > >> > However, on the final day (the account has not yet expired), instead >> > of the alert being displayed, >> > >> > Account expires today! >> > >> > , the login attempt fails, and the following informational message is >> > provided on the Horde login page: >> > >> > Bad or malformed request. Server Responded: Command unrecognized: LOGIN >> > >> > I believe that this is due to the fact that the IMAP server returns >> > (untagged): >> > >> > * NO [ALERT] Account expires today! >> > >> > as opposed to: >> > >> > * OK [ALERT] Account expires in x day(s)! >> > >> > According to RFC 3501 Section 7.1.2 (NO Response), this is a recognized >> > response, indicating an operational errror from the server. The >> > command can and does complete successfully. >> > >> > http://www.rfc-editor.org/rfc/rfc3501.txt >> >> We have no influence on that. PHP uses the c-client for authentication >> at the IMAP server, which has been developed by the author of that RFC. >> >> Jan. >> > > I understand c-client's part in the handling of the server response. > However, the inability to login is not due to a server problem, nor > c-client. The behavior appears to be due to the handling of the > response in the case statement found in the _runCommand() function > in the file > > horde/imp/lib/IMAP/Client.php > > Specifically, the handling of the NO response for untagged responses > doesn't appear to be consistent with the RFC. > > Here is an excerpt from our logs: > > ------------- > Aug 3 16:38:20 HORDE[14505]: [imp] Could not complete request. > Reason Given: [ALERT] Account expires today!: NO [pid 14505 on line > 382 of "/opt/horde-webmail-1.2.3/imp/lib/IMAP/Client.php"] > Aug 3 16:38:20 HORDE[14505]: [imp] Bad or malformed request. Server > Responded: Command unrecognized: LOGIN: BAD [pid 14505 on line 382 > of "/opt/horde-webmail-1.2.3/imp/lib/IMAP/Client.php"] > Aug 3 16:38:20 HORDE[14505]: [imp] IMAP alerts: [ALERT] Account > expires today! [pid 14505 on line 170 of > "/opt/horde-webmail-1.2.3/imp/lib/IMAP.php"] > ------------- > > Thank you for any assistance you might be able to provide. That's an important bit of information! Please file a ticket on bugs.horde.org. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: Digitale PGP-Unterschrift URL: From rmcauley at ca.afilias.info Tue Aug 4 17:33:30 2009 From: rmcauley at ca.afilias.info (Robert McAuley) Date: Tue, 04 Aug 2009 13:33:30 -0400 Subject: [horde] Installing Horde from Git/CVS In-Reply-To: <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> References: <4A731426.1060405@ca.afilias.info> <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> Message-ID: <4A7870EA.1090302@ca.afilias.info> Thanks for updating the CVS instructions. >> >> - Installing the devtools package won't work: >> >> [root at horde-staging devtools]# pear install package.xml > > you need to use `pear install -f package.xml` from the devtools directory. This is still not working. A problem with my PEAR setup? [root at horde-staging horde-git]# pear install -f framework/devtools/package.xml Attempting to discover channel "framework/devtools"... unknown channel "framework/devtools" in "framework/devtools/package.xml" Unknown channel "pear.horde.org" Parsing of package.xml from file "framework/devtools/package.xml" failed Cannot initialize 'framework/devtools/package.xml', invalid or missing package file Package "framework/devtools/package.xml" is not valid install failed [root at horde-staging devtools]# pear install -f package.xml parsePackageName(): invalid package name "package.xml" in "package.xml" Unknown channel "pear.horde.org" Parsing of package.xml from file "package.xml" failed Cannot initialize 'package.xml', invalid or missing package file Package "package.xml" is not valid install failed > Probably a missing path in your php.ini include_path setting. I wound up simply symlinking the Horde CLI directory, which works in a pinch to make the symlinking work. -- Regards, Rob McAuley Systems Administrator, Afilias http://www.afilias.info E-mail: rmcauley at ca.afilias.info From jchurchey at mountdesales.net Tue Aug 4 18:02:37 2009 From: jchurchey at mountdesales.net (jchurchey at mountdesales.net) Date: Tue, 04 Aug 2009 14:02:37 -0400 Subject: [horde] DIMP causes Redirection Errors as Initial Application Message-ID: <20090804140237.77bqoe4uisk4s8k4@webmail.mountdesales.net> Hello everyone, I'm using Horde Groupware Webmail Edition 1.2.3. I am trying to set DIMP as the default application. I set permissions on the DIMP module to allow all of the authenticated users to use it. It is working for some users sometimes while others receive intermittent redirection errors. Here is the redirection as it is contained in the access_log of apache: 72.210.68.164 - - [04/Aug/2009:16:42:42 +0000] "GET /dimp/index.php HTTP/1.1" 302 - 72.210.68.164 - - [04/Aug/2009:16:42:42 +0000] "GET /imp/redirect.php?url=%2Fdimp%2Findex.php HTTP/1.1" 302 This has been brought up on the list before, but I was not sure if I could implement these hacks on the recent code base or if they would even work now: http://marc.info/?l=horde&m=122702708215921&w=2. another related mailing list item: http://marc.info/?l=horde&m=122062593027530&w=2 Does anybody have any suggestions about what I can do to make DIMP work as the default application consistently? I've been digging through code and trying different things most of the morning. If somebody else has some insight on this problem, it would be greatly appreciated. SAJChurchey From slusarz at horde.org Tue Aug 4 18:36:38 2009 From: slusarz at horde.org (Michael M Slusarz) Date: Tue, 04 Aug 2009 12:36:38 -0600 Subject: [horde] DIMP causes Redirection Errors as Initial Application In-Reply-To: <20090804140237.77bqoe4uisk4s8k4@webmail.mountdesales.net> References: <20090804140237.77bqoe4uisk4s8k4@webmail.mountdesales.net> Message-ID: <20090804123638.cwocggk40swg@bigworm.curecanti.org> Quoting jchurchey at mountdesales.net: > Hello everyone, > > I'm using Horde Groupware Webmail Edition 1.2.3. I am trying to set > DIMP as the default > application. I set permissions on the DIMP module to allow all of > the authenticated users > to use it. It is working for some users sometimes while others > receive intermittent > redirection errors. > > Here is the redirection as it is contained in the access_log of apache: > > 72.210.68.164 - - [04/Aug/2009:16:42:42 +0000] "GET /dimp/index.php > HTTP/1.1" 302 - > 72.210.68.164 - - [04/Aug/2009:16:42:42 +0000] "GET > /imp/redirect.php?url=%2Fdimp%2Findex.php HTTP/1.1" 302 You are better off setting the initial_application to 'imp' and setting 'force_view' to 'dimp' in imp/config/conf.xml. michael -- ___________________________________ Michael Slusarz [slusarz at horde.org] From johnm at ntplx.net Tue Aug 4 19:15:02 2009 From: johnm at ntplx.net (John Merriam) Date: Tue, 04 Aug 2009 15:15:02 -0400 Subject: [horde] Duplicate Turba Icon In Top Menu When 'horde' not in 'apps' Message-ID: <4A7888B6.3040209@ntplx.net> Hello. I'm installing the latest versions of Horde, IMP, Ingo and Turba. I have everything set up, configured and ready to go except one strange issue. I have two Address Book icons/links showing up in the top menu bar. In my imp/config/conf.php I have: $conf['menu']['apps'] = array('ingo', 'turba'); if I add 'horde' back to $conf['menu']['apps'] the problem goes away, only one Address Book icon/link. I don't want horde in my apps though since my users have no reason to use horde itself. The HTML from that part of the menu bar (from IMP) is:
  • Filters
    Filters
  • Address Book
    Address Book
  • Address Book
    Address Book
  • Options
    Options
  • A GIF of what I'm talking about is attached to this message. I also get duplicate Address Book icons/links in Ingo. What's also strange and most likely related is that when I'm in Turba, an Address Book icon/link also shows up (only one) in the top menu when it should be hidden (since I'm in Turba at that point). horde is also not in my apps setting for Turba. Any ideas of how to fix this? Thanks. -- John Merriam johnm at ntplx.net -------------- next part -------------- A non-text attachment was scrubbed... Name: duplicateaddrbook.gif Type: image/gif Size: 4666 bytes Desc: not available URL: From mrubinsk at horde.org Tue Aug 4 19:27:27 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Tue, 04 Aug 2009 15:27:27 -0400 Subject: [horde] Installing Horde from Git/CVS In-Reply-To: <4A7870EA.1090302@ca.afilias.info> References: <4A731426.1060405@ca.afilias.info> <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> <4A7870EA.1090302@ca.afilias.info> Message-ID: <20090804152727.256762ydz2kuohc8@portal.theupstairsroom.com> Quoting Robert McAuley : > Thanks for updating the CVS instructions. > >>> >>> - Installing the devtools package won't work: >>> >>> [root at horde-staging devtools]# pear install package.xml >> >> you need to use `pear install -f package.xml` from the devtools directory. > > This is still not working. A problem with my PEAR setup? > > [root at horde-staging horde-git]# pear install -f > framework/devtools/package.xml > Attempting to discover channel "framework/devtools"... > unknown channel "framework/devtools" in "framework/devtools/package.xml" > Unknown channel "pear.horde.org" ah. You need to discover horde's pear server: sudo pear channel-discover pear.horde.org Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From jchurchey at mountdesales.net Wed Aug 5 02:28:56 2009 From: jchurchey at mountdesales.net (Justin Churchey) Date: Wed, 05 Aug 2009 02:28:56 +0000 Subject: [horde] DIMP causes Redirection Errors as Initial Application In-Reply-To: References: Message-ID: <20090805022856.795535qy7x8r0zfs@webmail2.mountdesales.net> > Hello everyone, > > I'm using Horde Groupware Webmail Edition 1.2.3. I am trying to set > DIMP as the default > application. I set permissions on the DIMP module to allow all of the > authenticated users > to use it. It is working for some users sometimes while others receive > intermittent > redirection errors. > > Here is the redirection as it is contained in the access_log of apache: > > 72.210.68.164 - - [04/Aug/2009:16:42:42 +0000] "GET /dimp/index.php > HTTP/1.1" 302 - > 72.210.68.164 - - [04/Aug/2009:16:42:42 +0000] "GET > /imp/redirect.php?url=%2Fdimp%2Findex.php HTTP/1.1" 302 > > This has been brought up on the list before, but I was not sure if I > could implement > these hacks on the recent code base or if they would even work now: > > http://marc.info/?l=horde&m=122702708215921&w=2. > > another related mailing list item: > > http://marc.info/?l=horde&m=122062593027530&w=2 > > Does anybody have any suggestions about what I can do to make DIMP > work as the default > application consistently? > > I've been digging through code and trying different things most of the > morning. If > somebody else has some insight on this problem, it would be greatly > appreciated. > > SAJChurchey > > > You are better off setting the initial_application to 'imp' and > setting 'force_view' to 'dimp' in imp/config/conf.xml. > > michael Thanks michael, This got Horde behaving the way I want. Thanks for the fix. SAJ From asa at isac.gov.in Wed Aug 5 10:02:30 2009 From: asa at isac.gov.in (ANANT S ATHAVALE) Date: Wed, 05 Aug 2009 15:32:30 +0530 Subject: [horde] why do I get this error in horde.log Message-ID: <20090805153230.22172484s0p22186@isacmail.isac.dos.gov.in> Dear List, When I click on Administration->Sessions, though it lists the sessions, it also generates the following error (many like the one below) in horde log file. ---- Aug 05 2009 15:28:10 HORDE [error] [horde] Unable to read file: /var/lib/php/session/sess_lcicd3k02ilrdmnj5ccuh27ru6 [pid 20986 on line 39 of "/home/horde/lib/Horde/SessionHandler/none.php"] ----- What could be the reason for such error? Regards, Anant Athavale. From tberger at rz.uni-leipzig.de Wed Aug 5 11:48:08 2009 From: tberger at rz.uni-leipzig.de (Thomas Berger) Date: Wed, 05 Aug 2009 13:48:08 +0200 Subject: [horde] install Horde Git Repository Message-ID: <20090805134808.11582tqf1kmuea9k@mail.uni-leipzig.de> Hallo, i would like to install the Horde Git Development Repository (Horde 4), but after calling the command: git clone git://dev.horde.org/horde/git/horde-hatchery i miss the index.php and the complete config folder... can someone help me please? best regards Thomas Berger From rmcauley at ca.afilias.info Wed Aug 5 15:34:33 2009 From: rmcauley at ca.afilias.info (Robert McAuley) Date: Wed, 05 Aug 2009 11:34:33 -0400 Subject: [horde] install Horde Git Repository In-Reply-To: <20090805134808.11582tqf1kmuea9k@mail.uni-leipzig.de> References: <20090805134808.11582tqf1kmuea9k@mail.uni-leipzig.de> Message-ID: <4A79A689.40604@ca.afilias.info> While I'm having my own problems getting a development version of Horde running, you really have to follow all the instructions. You can't just git clone horde-hatchery and have a working copy of Horde. See this page, 3rd question: "How do I start from scratch..." http://wiki.horde.org/Doc/Dev?referrer=ReleaseManagement# Note that before doing "pear install -f..." you'll need to discover Horde's PEAR repo if you haven't before: pear channel-discover pear.horde.org If you have any problems with that doc, please report back to the mailing list. - Rob Thomas Berger wrote: > Hallo, > > i would like to install the Horde Git Development Repository > (Horde 4), but after calling the command: > > git clone git://dev.horde.org/horde/git/horde-hatchery > > i miss the index.php and the complete config folder... > can someone help me please? > > > best regards > Thomas Berger > > From johnm at ntplx.net Wed Aug 5 18:41:27 2009 From: johnm at ntplx.net (John Merriam) Date: Wed, 05 Aug 2009 14:41:27 -0400 Subject: [horde] Duplicate Turba Icon In Top Menu When 'horde' not in 'apps' In-Reply-To: <4A7888B6.3040209@ntplx.net> References: <4A7888B6.3040209@ntplx.net> Message-ID: <4A79D257.6080907@ntplx.net> Well, this is a really strange one to me. I tried fiddling with a bunch of the simple things including downgrading from PHP 5.2.10 to 5.2.9, none of which made a difference. So I started poking around in the code which is when I really was getting confused. Somehow, when 'horde' is not in the $conf['menu']['apps'] array for IMP, Ingo or Turba an extra element gets added to the array. On my system, 'turba' is getting tacked on to the end of the $conf['menu']['apps'] array if 'horde' is not in the array. It also does not matter what the order of the apps is, it is always 'turba' getting pushed on to the end. It is as if $conf['menu']['apps'] = array('turba','ingo'); is getting magically changed to $conf['menu']['apps'] = array('turba','ingo', 'turba'); Very very strange if you ask me. The file where the menu seems to me to be generated and where I have verified that 'turba' is pushed on to the end of the apps array is horde/lib/Horde/Menu.php I have written a nasty hack to work around this. Below is a patch in case someone else needs to fix the same issue: --- Menu.php 2009-08-05 11:50:19.000000000 -0400 +++ Menu.php.hacked 2009-08-05 14:16:03.000000000 -0400 @@ -261,6 +261,19 @@ global $conf, $registry; if (isset($conf['menu']['apps']) && is_array($conf['menu']['apps'])) { + // A stupid hack to fix duplicate turba icons in top menu + if (!array_search("horde", $conf['menu']['apps'])) { + $noduplicate = $conf['menu']['apps']; + array_pop($noduplicate); + foreach ($noduplicate as $app) { + if ($registry->get('status', $app) != 'inactive' && $registry->hasPermission($app, PERMS_SHOW)) { + $url = $registry->getInitialPage($app); + if (!is_a($url, 'PEAR_Error')) { + $this->add(Horde::url($url), $registry->get('name', $app), $registry->get('icon', $app), ''); + } + } + } + } else { foreach ($conf['menu']['apps'] as $app) { if ($registry->get('status', $app) != 'inactive' && $registry->hasPermission($app, PERMS_SHOW)) { $url = $registry->getInitialPage($app); @@ -269,6 +282,7 @@ } } } + } } } That just pops the last element off the apps array to work around the problem. Yes it is stupid but what I will use for now. A correct fix would be good though. I have no idea how this could be happening. I searched the code for array_push() calls and didn't see anything that looks to me like it would be the culprit. John Merriam wrote: > Hello. I'm installing the latest versions of Horde, IMP, Ingo and > Turba. I have everything set up, configured and ready to go except one > strange issue. I have two Address Book icons/links showing up in the > top menu bar. ... > Any ideas of how to fix this? Thanks. -- John Merriam johnm at ntplx.net From rmcauley at ca.afilias.info Wed Aug 5 19:17:29 2009 From: rmcauley at ca.afilias.info (Robert McAuley) Date: Wed, 05 Aug 2009 15:17:29 -0400 Subject: [horde] Installing Horde from Git/CVS In-Reply-To: <20090804152727.256762ydz2kuohc8@portal.theupstairsroom.com> References: <4A731426.1060405@ca.afilias.info> <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> <4A7870EA.1090302@ca.afilias.info> <20090804152727.256762ydz2kuohc8@portal.theupstairsroom.com> Message-ID: <4A79DAC9.5060401@ca.afilias.info> Michael Rubinsky wrote: > > ah. You need to discover horde's pear server: > > sudo pear channel-discover pear.horde.org > Trying again from scratch, there are still problems with the wiki docs. (installing the PEAR package works after channel-discover) The first horde-fw-symlinks.php run results in: [root at horde-staging horde]# horde-fw-symlinks.php horde-fw-symlinks.php: Failed to auto-detect source and destination directories, The second horde-fw-symlinks.php works. The third still results in: [root at horde-staging horde]# horde-fw-symlinks.php --src ../horde-hatchery/framework horde-fw-symlinks.php: Horde_Cli library is not in the include_path or in the src directory. Maybe the third is a problem of the first not running correctly. It would also be nice to have some pointers on how to checkout and symlink other Horde apps (kronolith, etc) properly in the doc for those of us new to Horde HEAD development. I realize that a lot of this is in flux between Git and CVS - if it's better to simply wait until things have solidified, then that might be wise. - Rob From jan at horde.org Wed Aug 5 20:53:41 2009 From: jan at horde.org (Jan Schneider) Date: Wed, 05 Aug 2009 22:53:41 +0200 Subject: [horde] Duplicate Turba Icon In Top Menu When 'horde' not in 'apps' In-Reply-To: <4A79D257.6080907@ntplx.net> References: <4A7888B6.3040209@ntplx.net> <4A79D257.6080907@ntplx.net> Message-ID: <20090805225341.21126z71vsswsa04@neo.wg.de> Zitat von John Merriam : > Well, this is a really strange one to me. I tried fiddling with a > bunch of the simple things including downgrading from PHP 5.2.10 to > 5.2.9, none of which made a difference. > > So I started poking around in the code which is when I really was > getting confused. Somehow, when 'horde' is not in the > $conf['menu']['apps'] array for IMP, Ingo or Turba an extra element > gets added to the array. On my system, 'turba' is getting tacked on > to the end of the $conf['menu']['apps'] array if 'horde' is not in > the array. > > It also does not matter what the order of the apps is, it is always > 'turba' getting pushed on to the end. > > It is as if $conf['menu']['apps'] = array('turba','ingo'); is > getting magically changed to $conf['menu']['apps'] = > array('turba','ingo', 'turba'); > > Very very strange if you ask me. > > The file where the menu seems to me to be generated and where I have > verified that 'turba' is pushed on to the end of the apps array is > horde/lib/Horde/Menu.php > > I have written a nasty hack to work around this. Below is a patch > in case someone else needs to fix the same issue: > > --- Menu.php 2009-08-05 11:50:19.000000000 -0400 > +++ Menu.php.hacked 2009-08-05 14:16:03.000000000 -0400 > @@ -261,6 +261,19 @@ > global $conf, $registry; > > if (isset($conf['menu']['apps']) && > is_array($conf['menu']['apps'])) { > + // A stupid hack to fix duplicate turba icons in top menu > + if (!array_search("horde", $conf['menu']['apps'])) { > + $noduplicate = $conf['menu']['apps']; > + array_pop($noduplicate); > + foreach ($noduplicate as $app) { > + if ($registry->get('status', $app) != > 'inactive' && $registry->hasPermission($app, PERMS_SHOW)) { > + $url = $registry->getInitialPage($app); > + if (!is_a($url, 'PEAR_Error')) { > + $this->add(Horde::url($url), > $registry->get('name', $app), $registry->get('icon', $app), ''); > + } > + } > + } > + } else { > foreach ($conf['menu']['apps'] as $app) { > if ($registry->get('status', $app) != 'inactive' && > $registry->hasPermission($app, PERMS_SHOW)) { > $url = $registry->getInitialPage($app); > @@ -269,6 +282,7 @@ > } > } > } > + } > } > } > A simple: $conf['menu']['apps'] = array_unique($conf['menu']['apps']); right before the loop should do the same. > That just pops the last element off the apps array to work around > the problem. > > Yes it is stupid but what I will use for now. A correct fix would > be good though. > > I have no idea how this could be happening. I searched the code for > array_push() calls and didn't see anything that looks to me like it > would be the culprit. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: Digitale PGP-Unterschrift URL: From johnm at ntplx.net Wed Aug 5 22:48:59 2009 From: johnm at ntplx.net (John Merriam) Date: Wed, 5 Aug 2009 18:48:59 -0400 (EDT) Subject: [horde] Duplicate Turba Icon In Top Menu When 'horde' not in 'apps' In-Reply-To: <20090805225341.21126z71vsswsa04@neo.wg.de> References: <4A7888B6.3040209@ntplx.net> <4A79D257.6080907@ntplx.net> <20090805225341.21126z71vsswsa04@neo.wg.de> Message-ID: On Wed, 5 Aug 2009, Jan Schneider wrote: > A simple: > $conf['menu']['apps'] = array_unique($conf['menu']['apps']); > right before the loop should do the same. I don't write PHP code, basically ever. I just do some maintenance/light modification of someone else's PHP code occasionaly. Didn't know that function existed. It does make for a much cleaner fix. Thanks The question still remains, why is it necessary? -- John Merriam johnm at ntplx.net From tberger at rz.uni-leipzig.de Thu Aug 6 06:43:29 2009 From: tberger at rz.uni-leipzig.de (Thomas Berger) Date: Thu, 06 Aug 2009 08:43:29 +0200 Subject: [horde] install Horde Git Repository In-Reply-To: <4A79A689.40604@ca.afilias.info> References: <20090805134808.11582tqf1kmuea9k@mail.uni-leipzig.de> <4A79A689.40604@ca.afilias.info> Message-ID: <20090806084329.20893wqwpc0erwk1@mail.uni-leipzig.de> Thank you for this note, but i have a problem.... export CVSROOT=:pserver:cvsread at anoncvs.horde.org:/repository cvs login (password is 'horde') cvs checkout horde framework git clone git://dev.horde.org/horde/git/horde horde-git git clone git://dev.horde.org/horde/git/horde-hatchery works fine, but pear install -f framework/devtools/package.xml ended with following output: mailneu:/srv/www/htdocs/horde # pear install -f framework/devtools/package.xml Attempting to discover channel "framework/devtools"... unknown channel "framework/devtools" in "framework/devtools/package.xml" Unknown channel "pear.horde.org" Parsing of package.xml from file "framework/devtools/package.xml" failed Cannot initialize 'framework/devtools/package.xml', invalid or missing package file Package "framework/devtools/package.xml" is not valid install failed can you help me? best regards Thomas Berger Zitat von Robert McAuley : > While I'm having my own problems getting a development version of > Horde running, you really have to follow all the instructions. You > can't just git clone horde-hatchery and have a working copy of Horde. > > See this page, 3rd question: "How do I start from scratch..." > > http://wiki.horde.org/Doc/Dev?referrer=ReleaseManagement# > > Note that before doing "pear install -f..." you'll need to discover > Horde's PEAR repo if you haven't before: > > pear channel-discover pear.horde.org If you have any problems with > that doc, please report back to the mailing list. > > - Rob > > Thomas Berger wrote: >> Hallo, >> >> i would like to install the Horde Git Development Repository >> (Horde 4), but after calling the command: >> >> git clone git://dev.horde.org/horde/git/horde-hatchery >> >> i miss the index.php and the complete config folder... >> can someone help me please? >> >> >> best regards >> Thomas Berger From jan at horde.org Thu Aug 6 09:07:03 2009 From: jan at horde.org (Jan Schneider) Date: Thu, 06 Aug 2009 11:07:03 +0200 Subject: [horde] why do I get this error in horde.log In-Reply-To: <20090805153230.22172484s0p22186@isacmail.isac.dos.gov.in> References: <20090805153230.22172484s0p22186@isacmail.isac.dos.gov.in> Message-ID: <20090806110703.7327557n55iisgmw@neo.wg.de> Zitat von ANANT S ATHAVALE : > Dear List, > > When I click on Administration->Sessions, though it lists the > sessions, it also generates the following error (many like the one > below) in horde log file. > ---- > Aug 05 2009 15:28:10 HORDE [error] [horde] Unable to read file: > /var/lib/php/session/sess_lcicd3k02ilrdmnj5ccuh27ru6 [pid 20986 on > line 39 of "/home/horde/lib/Horde/SessionHandler/none.php"] > ----- > > What could be the reason for such error? Exactly what it says, the web server can't read those files. The have probably been created by command line script. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: Digitale PGP-Unterschrift URL: From asa at isac.gov.in Thu Aug 6 11:25:49 2009 From: asa at isac.gov.in (ANANT S ATHAVALE) Date: Thu, 06 Aug 2009 16:55:49 +0530 Subject: [horde] why do I get this error in horde.log In-Reply-To: <20090806110703.7327557n55iisgmw@neo.wg.de> References: <20090805153230.22172484s0p22186@isacmail.isac.dos.gov.in> <20090806110703.7327557n55iisgmw@neo.wg.de> Message-ID: <20090806165549.379234zvfcolzs1p@isacmail.isac.dos.gov.in> Ok. I think it may be due to the the scripts alarm.php and reminders.php which I am running as root (through crontab). Should I run them as 'Apache?'? Regards, ANANT. ----- Message from jan at horde.org --------- Date: Thu, 06 Aug 2009 11:07:03 +0200 From: Jan Schneider Subject: Re: [horde] why do I get this error in horde.log To: horde at lists.horde.org > Zitat von ANANT S ATHAVALE : > >> Dear List, >> >> When I click on Administration->Sessions, though it lists the >> sessions, it also generates the following error (many like the one >> below) in horde log file. >> ---- >> Aug 05 2009 15:28:10 HORDE [error] [horde] Unable to read file: >> /var/lib/php/session/sess_lcicd3k02ilrdmnj5ccuh27ru6 [pid 20986 on >> line 39 of "/home/horde/lib/Horde/SessionHandler/none.php"] >> ----- >> >> What could be the reason for such error? > > Exactly what it says, the web server can't read those files. The > have probably been created by command line script. > > Jan. > > -- > Do you need professional PHP or Horde consulting? > http://horde.org/consulting/ > ----- End message from jan at horde.org ----- Regards, Anant Athavale. From roman at stachura.ch Thu Aug 6 12:57:30 2009 From: roman at stachura.ch (roman stachura) Date: Thu, 06 Aug 2009 14:57:30 +0200 Subject: [horde] Installing Horde from Git/CVS In-Reply-To: <4A79DAC9.5060401@ca.afilias.info> References: <4A731426.1060405@ca.afilias.info> <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> <4A7870EA.1090302@ca.afilias.info> <20090804152727.256762ydz2kuohc8@portal.theupstairsroom.com> <4A79DAC9.5060401@ca.afilias.info> Message-ID: <4A7AD33A.6030106@stachura.ch> Robert McAuley schrieb: > > The first horde-fw-symlinks.php run results in: > > [root at horde-staging horde]# > horde-fw-symlinks.php > horde-fw-symlinks.php: Failed to auto-detect source and destination > directories, > > The second horde-fw-symlinks.php works. > > The third still results in: > > [root at horde-staging horde]# horde-fw-symlinks.php --src > ../horde-hatchery/framework > horde-fw-symlinks.php: Horde_Cli library is not in the include_path or > in the src directory. > > Maybe the third is a problem of the first not running correctly. On My Debina Box (5.0 Lenny) I have exactly the same issue. - Roman > > It would also be nice to have some pointers on how to checkout and > symlink other Horde apps (kronolith, etc) properly in the doc for > those of us new to Horde HEAD development. > > I realize that a lot of this is in flux between Git and CVS - if it's > better to simply wait until things have solidified, then that might be > wise. > > - Rob From pj2002 at inbox.lv Thu Aug 6 13:09:28 2009 From: pj2002 at inbox.lv (pj2002 at inbox.lv) Date: Thu, 06 Aug 2009 16:09:28 +0300 Subject: [horde] advanced registration for Horde Message-ID: <1249564168.4a7ad6085b8b3@mail.inbox.lv> Hello everybody. I'm looking for the person who can make advanced registration for horde. Main features I require are: Server info: FreeBSD, EXIM, Dovecot, Mysql5, PHP5  When registering in horde, the data wich is written to EXIM DB when registering through postfixadmin should be written to Exim Db + some additional fields, such as name, sex, country, city...... Name, surname and secret question for password recovery should be additionally written into horde DB also. In horde  we have wiki.horde.org/AuthCompos.. double authorisatrion (imap+sql).  The user should be  username at domen.com, but @domain.com must be added automatically to the username [1] The form should be translatable into other languages by standart hrde method. The added registration must not make troubles for future horde upgrades. If anyone inetrested, please reply with your suggestions to my email. Links: ------ [1] mailto:username at domen.com, but @domain.com must be added automatically to the username??? From rmcauley at ca.afilias.info Thu Aug 6 14:25:38 2009 From: rmcauley at ca.afilias.info (Robert McAuley) Date: Thu, 06 Aug 2009 10:25:38 -0400 Subject: [horde] install Horde Git Repository In-Reply-To: <20090806084329.20893wqwpc0erwk1@mail.uni-leipzig.de> References: <20090805134808.11582tqf1kmuea9k@mail.uni-leipzig.de> <4A79A689.40604@ca.afilias.info> <20090806084329.20893wqwpc0erwk1@mail.uni-leipzig.de> Message-ID: <4A7AE7E2.4040707@ca.afilias.info> Yup, please follow this (ongoing) thread I opened last week on this very issue. :) We are trying to find other problems regarding the Horde development installation that you will likely run across. http://lists.horde.org/archives/horde/Week-of-Mon-20090803/037915.html - Rob Thomas Berger wrote: > Thank you for this note, but i have a problem.... > > export CVSROOT=:pserver:cvsread at anoncvs.horde.org:/repository > cvs login (password is 'horde') > cvs checkout horde framework > git clone git://dev.horde.org/horde/git/horde horde-git > git clone git://dev.horde.org/horde/git/horde-hatchery > > works fine, but > > pear install -f framework/devtools/package.xml > > ended with following output: > etc... From mrubinsk at horde.org Thu Aug 6 14:32:11 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Thu, 06 Aug 2009 10:32:11 -0400 Subject: [horde] install Horde Git Repository In-Reply-To: <20090806084329.20893wqwpc0erwk1@mail.uni-leipzig.de> References: <20090805134808.11582tqf1kmuea9k@mail.uni-leipzig.de> <4A79A689.40604@ca.afilias.info> <20090806084329.20893wqwpc0erwk1@mail.uni-leipzig.de> Message-ID: <20090806103211.15141n62xu0328as@portal.theupstairsroom.com> Quoting Thomas Berger : > Thank you for this note, but i have a problem.... > > export CVSROOT=:pserver:cvsread at anoncvs.horde.org:/repository > cvs login (password is 'horde') > cvs checkout horde framework > git clone git://dev.horde.org/horde/git/horde horde-git > git clone git://dev.horde.org/horde/git/horde-hatchery > > works fine, but > > pear install -f framework/devtools/package.xml > > ended with following output: > > mailneu:/srv/www/htdocs/horde # pear install -f > framework/devtools/package.xml > Attempting to discover channel "framework/devtools"... > unknown channel "framework/devtools" in "framework/devtools/package.xml" > Unknown channel "pear.horde.org" > Parsing of package.xml from file "framework/devtools/package.xml" failed > Cannot initialize 'framework/devtools/package.xml', invalid or > missing package file > Package "framework/devtools/package.xml" is not valid > install failed > > > can you help me? As stated in the email you replied to AND on the wiki page that it points you to, you need to discover the horde pear channel before you perform the pear install: pear channel-discover pear.horde.org > > best regards > Thomas Berger > > > Zitat von Robert McAuley : > >> While I'm having my own problems getting a development version of >> Horde running, you really have to follow all the instructions. You >> can't just git clone horde-hatchery and have a working copy of Horde. >> >> See this page, 3rd question: "How do I start from scratch..." >> >> http://wiki.horde.org/Doc/Dev?referrer=ReleaseManagement# >> >> Note that before doing "pear install -f..." you'll need to discover >> Horde's PEAR repo if you haven't before: >> >> pear channel-discover pear.horde.org If you have any problems with >> that doc, please report back to the mailing list. >> >> - Rob >> >> Thomas Berger wrote: >>> Hallo, >>> >>> i would like to install the Horde Git Development Repository >>> (Horde 4), but after calling the command: >>> >>> git clone git://dev.horde.org/horde/git/horde-hatchery >>> >>> i miss the index.php and the complete config folder... >>> can someone help me please? >>> >>> >>> best regards >>> Thomas Berger > > > -- > Horde mailing list - Join the hunt: http://horde.org/bounties/#horde > Frequently Asked Questions: http://horde.org/faq/ > To unsubscribe, mail: horde-unsubscribe at lists.horde.org > Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From mrubinsk at horde.org Thu Aug 6 14:35:03 2009 From: mrubinsk at horde.org (Michael Rubinsky) Date: Thu, 06 Aug 2009 10:35:03 -0400 Subject: [horde] Installing Horde from Git/CVS In-Reply-To: <4A7AD33A.6030106@stachura.ch> References: <4A731426.1060405@ca.afilias.info> <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> <4A7870EA.1090302@ca.afilias.info> <20090804152727.256762ydz2kuohc8@portal.theupstairsroom.com> <4A79DAC9.5060401@ca.afilias.info> <4A7AD33A.6030106@stachura.ch> Message-ID: <20090806103503.16034nicxanqaqec@portal.theupstairsroom.com> Quoting roman stachura : > Robert McAuley schrieb: >> >> The first horde-fw-symlinks.php run results in: >> >> [root at horde-staging horde]# horde-fw-symlinks.php >> horde-fw-symlinks.php: Failed to auto-detect source and >> destination directories, >> >> The second horde-fw-symlinks.php works. >> >> The third still results in: >> >> [root at horde-staging horde]# horde-fw-symlinks.php --src >> ../horde-hatchery/framework >> horde-fw-symlinks.php: Horde_Cli library is not in the include_path >> or in the src directory. >> >> Maybe the third is a problem of the first not running correctly. > On My Debina Box (5.0 Lenny) I have exactly the same issue. If you get this error, you probably should be explicitly specifying the src and dest directories as in the other examples on the wiki page: horde-fw-symlinks.php --src [Location of horde CVS HEAD]/framework --dest [A PHP include directory] horde-fw-symlinks.php --src [Location of horde-git]/framework --dest [A PHP include directory] horde-fw-symlinks.php --src [Location of horde-hatchery]/framework --dest [A PHP include directory] > - Roman >> >> It would also be nice to have some pointers on how to checkout and >> symlink other Horde apps (kronolith, etc) properly in the doc for >> those of us new to Horde HEAD development. >> >> I realize that a lot of this is in flux between Git and CVS - if >> it's better to simply wait until things have solidified, then that >> might be wise. >> >> - Rob > > -- > Horde mailing list - Join the hunt: http://horde.org/bounties/#horde > Frequently Asked Questions: http://horde.org/faq/ > To unsubscribe, mail: horde-unsubscribe at lists.horde.org > Thanks, mike -- The Horde Project (www.horde.org) mrubinsk at horde.org "Time just hates me. That's why it made me an adult." - Josh Joplin From rmcauley at ca.afilias.info Thu Aug 6 21:26:34 2009 From: rmcauley at ca.afilias.info (Robert McAuley) Date: Thu, 06 Aug 2009 17:26:34 -0400 Subject: [horde] Installing Horde from Git/CVS In-Reply-To: <20090806103503.16034nicxanqaqec@portal.theupstairsroom.com> References: <4A731426.1060405@ca.afilias.info> <20090731120826.83621gsvxjtp34lc@portal.theupstairsroom.com> <4A7870EA.1090302@ca.afilias.info> <20090804152727.256762ydz2kuohc8@portal.theupstairsroom.com> <4A79DAC9.5060401@ca.afilias.info> <4A7AD33A.6030106@stachura.ch> <20090806103503.16034nicxanqaqec@portal.theupstairsroom.com> Message-ID: <4A7B4A8A.6000001@ca.afilias.info> Michael Rubinsky wrote: > > If you get this error, you probably should be explicitly specifying the > src and dest directories as in the other examples on the wiki page: > > horde-fw-symlinks.php --src [Location of horde CVS HEAD]/framework > --dest [A PHP include directory] > horde-fw-symlinks.php --src [Location of horde-git]/framework --dest [A > PHP include directory] > horde-fw-symlinks.php --src [Location of horde-hatchery]/framework > --dest [A PHP include directory] That's a good tip, but the docs still don't work as advertised. The Horde::Cli class isn't anywhere recognizable when you just do a clean install like this. The trick that works is to go into a directory where horde-fw-symlinks can *find* Horde::Cli: [checkout/clone] cd horde mkdir libs cd ../horde-git/framework/Cli/lib horde-fw-symlinks.php --src ../../../../framework/ --dest ../../../../horde/libs/ cd ../../../../horde horde-fw-symlinks.php --src ../horde-hatchery/framework cd ../horde-git/framework/Cli/lib horde-fw-symlinks.php --src ../../../../horde-hatchery/ --dest ../../../../horde/libs/ This is really not the best thing to do. I feel what's missing here on instructions on *where* to install the Horde dev libraries or configure our php.ini settings to have the Horde dir included. - Rob From fer.grub at yahoo.de Sat Aug 8 08:57:02 2009 From: fer.grub at yahoo.de (Ferdinand Gruber) Date: Sat, 08 Aug 2009 10:57:02 +0200 Subject: [horde] Mail_mimeDecode Message-ID: <4A7D3DDE.5050608@yahoo.de> .../horde/test.php says that I have not installed Mail_mimeDecode. *You do not have the Mail_mimeDecode package installed on your system. See the INSTALL file for instructions on how to install the package. THIS IS A REQUIRED MODULE!* pear install Mail_mimeDecode says pear/Mail_mimeDecode is already installed and is the same as the released version 1.5.0 install failed **pear upgrade Mail_mimeDecode says Nothing to upgrade What can I do? The server is: Suse 11.1 PHP: 5.2.9 Horde: 3.3.4 Apache: 2.2.10 -- Ferdinand Gruber From robert at schetterer.org Sat Aug 8 11:04:14 2009 From: robert at schetterer.org (Robert Schetterer) Date: Sat, 08 Aug 2009 13:04:14 +0200 Subject: [horde] subscribed_view always on imp In-Reply-To: <20090803104814.192978zvlg5zp9ow@neo.wg.de> References: <4A74CE5D.3070003@schetterer.org> <20090803104814.192978zvlg5zp9ow@neo.wg.de> Message-ID: <4A7D5BAE.7010107@schetterer.org> Jan Schneider schrieb: > Zitat von Robert Schetterer : > >> Hi, how can i set the subscribed_view >> always on or minimum set on as default ? > > You can't. Don't use subscriptions if you want to see all folders by > default. > > Jan. > hi Jan, just for short the search where is this to configure ? -- Best Regards MfG Robert Schetterer Germany/Munich/Bavaria