| Re: FRESH Xoops 2.0.9.2 Install --- MODULES NOT WORKING ? |
| by DuongQua on 2005/4/21 4:54:57 le="color: #000000"><?php if ( !isset($_SERVER['REQUEST_URI']) || !$_SERVER[ 'REQUEST_URI' ] ) { // Not defined by IIS - isset returns 1 even when blank // Under some configs, IIS makes SCRIPT_NAME point to php.exe :-( if ( !( $_SERVER[ 'REQUEST_URI' ] = @$_SERVER['PHP_SELF'] ) ) { $_SERVER[ 'REQUEST_URI' ] = $_SERVER['SCRIPT_NAME']; } if ( isset( $_SERVER[ 'QUERY_STRING' ] ) ) { $_SERVER[ 'REQUEST_URI' ] .= '?' . $_SERVER[ 'QUERY_STRING' ]; } } Thank you in advance! |
| Re: FRESH Xoops 2.0.9.2 Install --- MODULES NOT WORKING ? |
| by Mithrandir on 2005/2/13 20:08:54 To play it safe, maybe this is better: le="color: #000000"><?php if ( !isset($_SERVER['REQUEST_URI'] || !$_SERVER[ 'REQUEST_URI' ] ) { // Not defined by IIS - isset returns 1 even when blank // Under some configs, IIS makes SCRIPT_NAME point to php.exe :-( if ( !( $_SERVER[ 'REQUEST_URI' ] = @$_SERVER['PHP_SELF'] ) ) { $_SERVER[ 'REQUEST_URI' ] = $_SERVER['SCRIPT_NAME']; } if ( isset( $_SERVER[ 'QUERY_STRING' ] ) ) { $_SERVER[ 'REQUEST_URI' ] .= '?' . $_SERVER[ 'QUERY_STRING' ]; } } To the original poster: Check if the directive in php.ini "register_long_arrays" is set to "on" |
| Re: FRESH Xoops 2.0.9.2 Install --- MODULES NOT WORKING ? |
| by donnoman on 2005/2/13 18:05:28 xoops-2.0.9.2 && php-4.3.10 After new install on Win 2k IIS 5 when you click on anything in the system admin menu you get: Quote:
find in include/common.php: le="color: #000000"><?php if ( !isset( $_SERVER[ 'REQUEST_URI' ] ) ) { // Not defined by IIS // Under some configs, IIS makes SCRIPT_NAME point to php.exe :-( if ( !( $_SERVER[ 'REQUEST_URI' ] = @$_SERVER['PHP_SELF'] ) ) { $_SERVER[ 'REQUEST_URI' ] = $_SERVER['SCRIPT_NAME']; } if ( isset( $_SERVER[ 'QUERY_STRING' ] ) ) { $_SERVER[ 'REQUEST_URI' ] .= '?' . $_SERVER[ 'QUERY_STRING' ]; } } Even though the 'REQUEST_URI' appears to be nul, isset is returning 1. From phpinfo(); Quote:
change to: le="color: #000000"><?php if ( !$_SERVER[ 'REQUEST_URI' ] ) { // Not defined by IIS - isset returns 1 even when blank // Under some configs, IIS makes SCRIPT_NAME point to php.exe :-( if ( !( $_SERVER[ 'REQUEST_URI' ] = @$_SERVER['PHP_SELF'] ) ) { $_SERVER[ 'REQUEST_URI' ] = $_SERVER['SCRIPT_NAME']; } if ( isset( $_SERVER[ 'QUERY_STRING' ] ) ) { $_SERVER[ 'REQUEST_URI' ] .= '?' . $_SERVER[ 'QUERY_STRING' ]; } }
|
| Re: FRESH Xoops 2.0.9.2 Install --- MODULES NOT WORKING ? |
| by kvento on 2005/1/6 0:42:55 I also get the same error "module not installed" I can't even see the core modules in administration. I was able to upgrade my original XOOPS on a Linux machine. However, not able to install a fresh version of 2.09.2 on Windows Server. BTW I'm using PHP 4.3.9 This is my development server so I can test any changes that might be appropriate. Kam |
| Re: FRESH Xoops 2.0.9.2 Install --- MODULES NOT WORKING ? |
| by ericswebber on 2004/12/31 4:51:02 Again very much appreciate your responses, nice to speak with founder !! Based on your suggestions below, Now I am using: PHP Version 4.3.10 ISAPI MySQL 4.0.23-nt via TCP/IP IIS 5, on win2k and I reinstalled XOOPS 2.0.9.2, all green lights, then logged in, and when I click on ANY of the System Admin functions I get: Selected module does not exist! Does this ring a bell ? best regards, ericswebber@yahoo.com Quote:
|