Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GsaConfigException (0.09 sec)

  1. src/main/java/org/codelibs/fess/exception/GsaConfigException.java

         */
        public GsaConfigException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new GSA configuration exception with the specified detail message.
         *
         * @param message the detail message describing the configuration error
         */
        public GsaConfigException(final String message) {
            super(message);
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.exception.GsaConfigException;
    import org.codelibs.fess.opensearch.config.exentity.FileConfig;
    import org.codelibs.fess.opensearch.config.exentity.LabelType;
    import org.codelibs.fess.opensearch.config.exentity.WebConfig;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  3. MIGRATION.md

      ```
    
    #### Issue: GSA XML import creates no configurations
    
    **Solution**:
    - Verify XML structure matches GSA export format
    - Check Fess logs: `logs/fess.log`
    - Look for `GsaConfigException` errors
    - Ensure collections have valid URL patterns
    
    #### Issue: Imported documents not appearing in search
    
    **Solution**:
    1. Check if documents were indexed:
       - Admin > System > Search
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top