• iThemes Dashboard won’t load, throws the error below. Is iThemes tested on IIS? Are there any setup tricks to get it to work? The other tabs seem to be working.

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.

    https://wordpress.org/plugins/better-wp-security/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m getting the same error.

    /**
    * Returns the server type of the plugin user.
    * Attempts to figure out what http server the visiting user is running.
    * @since 4.0.0
    *
    * @return string|bool server type the user is using of false if undetectable.
    */
    public static function get_server() {
    
    //Allows to override server authentication for testing or other reasons.
    	if ( defined( 'ITSEC_SERVER_OVERRIDE' ) ) {
    		return ITSEC_SERVER_OVERRIDE;
    	}
    
    	$server_raw = strtolower( filter_var( $_SERVER['SERVER_SOFTWARE'], FILTER_SANITIZE_STRING ) );
    
    	//figure out what server they're using
    	if ( false !== strpos( $server_raw, 'apache' ) ) {
    		return 'apache';
    	} elseif ( false !== strpos( $server_raw, 'nginx' ) ) {
    		return 'nginx';
    	} elseif ( false !== strpos( $server_raw, 'litespeed' ) ) {
    		return 'litespeed';
    	} else { //unsupported server
    		return false;
    	}
    }

    dwinden

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Server error on IIS8’ is closed to new replies.