Wiki not working in phpgroupware 0.9.16.012
"Somnath_Pal" <[email protected]>
| Newsgroups | gmane.comp.web.phpgroupware.general |
|---|---|
| Message-ID | <[email protected]> |
Hi list, I am running phpgroupware on redhat enterprise linux 4 update 3. All my configuration is done & i am able to login to phpgroupware & see the applications. However the "wiki" seems to be not working. Although it shows as "Enabled" but it does not appear in the navigation bar & it is not throwing any errors also. Let me if this is a known problem & where I need to look at to get a fix. I am attaching my /etc/php.ini & header.inc.php files. Details of O/S, Webserver, PHP, Database & phpgroupware given below O/S - Redhat Enterprise Linux 4 Update 3 on i386 platform Webserver - httpd-2.0.52-22.ent Database - Mysql (mysql-4.1.12-3.RHEL4.1) PHP - php-4.3.9-3.9 PhpGroupware - phpGroupWare 0.9.16.012 Let me know if you need further information. Thanks & Regards, Somnath. DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain material that is CONFIDENTIAL AND PRIVATE COMPANY INFORMATION. Any review or reliance by others or copying or distribution or forwarding of any or all of the contents in this message is STRICTLY PROHIBITED. If you are not the intended recipient, please contact the sender by email and delete all copies; your cooperation in this regard is appreciated. _______________________________________________ phpGroupWare-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/phpgroupware-users
header.inc.php
(application/octet-stream, 5.6 KB)
<?php
ini_set('zend.ze1_compatibility_mode', true);
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* This file written by Dan Kuykendall <[email protected]> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id: header.inc.php.template,v 1.35.2.5.2.3 2007/04/26 02:13:42 skwashd Exp $ */
/**************************************************************************\
* !!!!!!! EDIT THESE LINES !!!!!!!! *
* This setting allows you to easily move the include directory and the *
* base of the phpGroupWare install. Simple edit the following 2 lines with *
* the absolute path to fit your site, and you should be up and running. *
\**************************************************************************/
define('PHPGW_SERVER_ROOT','/var/www/html/phpgroupware');
define('PHPGW_INCLUDE_ROOT','/var/www/html/phpgroupware');
$GLOBALS['phpgw_info']['server']['header_admin_password'] = 'redhat';
/* phpGroupWare domain-specific db settings */
$GLOBALS['phpgw_domain']['default'] = array (
'db_host' => 'localhost',
'db_name' => 'phpgroupware',
'db_user' => 'phpgw',
'db_pass' => 'my-db-passwd',
// Look at the README file
'db_type' => 'mysql',
// This will limit who is allowed to make configuration modifications
'config_passwd' => 'redhat'
);
/*
** If you want to have your domains in a select box, change to True
** If not, users will have to login as user@domain
** Note: This is only for virtual domain support, default domain users can login only using
** there loginid.
*/
$GLOBALS['phpgw_info']['server']['show_domain_selectbox'] = False;
/*
** As an alternative to the domain select box, set this option to True
** to use the domain name from the browser provided hostname ($_SERVER['HTTP_HOST'])
*/
$GLOBALS['phpgw_info']['server']['domain_from_host'] = False;
$GLOBALS['phpgw_info']['server']['db_persistent'] = False;
/*
** phpGroupWare can handle session management using the database, but if
** you are using PHP4 you can usually get better performance by having phpGroupWare
** use the session support built into PHP4. PHP3 users will have to use the database.
** Your choices are 'db' or 'php4'
*/
$GLOBALS['phpgw_info']['server']['sessions_type'] = 'db';
/* Select which login template set you want, most people will use default */
$GLOBALS['phpgw_info']['login_template_set'] = 'default';
/* This is used to control mcrypt's use */
$GLOBALS['phpgw_info']['server']['mcrypt_enabled'] = False;
/* Set this to 'old' for versions < 2.4, otherwise the exact mcrypt version you use. */
$GLOBALS['phpgw_info']['server']['versions']['mcrypt'] = '';
/*
** This is a random string used as the initialization vector for mcrypt
** feel free to change it when setting up phpgroupware on a clean database,
** but you must not change it after that point!
** It should be around 30 bytes in length.
*/
$GLOBALS['phpgw_info']['server']['mcrypt_iv'] = 'WizXufWDxnqemlKHmUS2BxMNUVsF5t';
/* If you want phpGroupWare to be cached by proxy servers, uncomment the following */
/* This is NOT recommended, but phpGroupWare should still work fine. */
if(!isset($GLOBALS['phpgw_info']['flags']['nocachecontrol']) || !$GLOBALS['phpgw_info']['flags']['nocachecontrol'] == True)
{
header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1
header('Pragma: no-cache'); // HTTP/1.0
}
/* debugging settings */
define('DEBUG_APP', False);
define('DEBUG_API', False);
define('DEBUG_DATATYPES', True);
define('DEBUG_LEVEL', 3);
define('DEBUG_OUTPUT', 2); /* 1 = screen, 2 = DB (not supported with PHP3). For both use 3. */
define('DEBUG_TIMER', False);
function perfgetmicrotime()
{
list($usec, $sec) = explode(' ',microtime());
return ((float)$usec + (float)$sec);
}
if (DEBUG_TIMER)
{
$GLOBALS['debug_timer_start'] = perfgetmicrotime();
}
/**************************************************************************\
* Do not edit these lines *
\**************************************************************************/
define('PHPGW_API_INC',PHPGW_INCLUDE_ROOT.'/phpgwapi/inc');
include(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php');
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] = $setup_info['phpgwapi']['version'];
$GLOBALS['phpgw_info']['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
unset($setup_info);
$GLOBALS['phpgw_info']['server']['versions']['header'] = '1.24';
/* This is a fix for NT */
if(!isset($GLOBALS['phpgw_info']['flags']['noapi']) || $GLOBALS['phpgw_info']['flags']['noapi'] != True)
{
include(PHPGW_API_INC . '/functions.inc.php');
include(PHPGW_API_INC . '/xml_functions.inc.php');
include(PHPGW_API_INC . '/soap_functions.inc.php');
}
/*
Leave off the final php closing tag, some editors will add
a \n or space after which will mess up cookies later on
*/
php.ini
(application/octet-stream, 38.1 KB) - not displayed