Embedded Jopr Warning in JBossESB 4.6
The Unable to complete base jmx server discovery - cause (enable DEBUG to see stack trace): java.lang.UnsupportedOperationException: No native library available - Cannot get the process table information without native support warning occurs because Embedded Jopr 1.1 ships without the SIGAR library, as noted here.
I will ask around if/how it can be installed manually.
Bug in Apache HTTP Server 2.2 on Windows
It causes the (20024)The given path is misformatted or contained invalid characters error when using MediaWiki’s short URLs.
https://issues.apache.org/bugzilla/show_bug.cgi?id=41441 (vote for it!)
How to Change the Logo in MediaWiki 1.15.1
You may want to either clone an existing skin or create a new one, just so not to lose your logo upon upgrades.
http://www.mediawiki.org/wiki/Manual:$wgDefaultSkin
MediaWiki Extension for LDAP Authentication
For Active Directory, you might want to add this to <Install Dir>/LocalSettings.php:
require_once "extensions/LdapAuthentication.php"; $wgAuth = new LdapAuthenticationPlugin(); $wgLDAPDomainNames = array( "fernandoribeiro.eti.br" ); $wgLDAPEncryptionType = array( "fernandoribeiro.eti.br" => "clear" ); $wgLDAPSearchStrings = array( "fernandoribeiro.eti.br" => "USER-NAME@fernandoribeiro.eti.br" ); $wgLDAPServerNames = array( "fernandoribeiro.eti.br" => "ds.fernandoribeiro.eti.br" );
How to Redirect to the MediaWiki Main Page in Apache HTTP Server 2.2
<?php
$host = $_SERVER["HTTP_HOST"];
header("Location: http://$host/wiki");
?>
Fixing Quartz
I’ve volunteered to help the Quartz community to fix their artifacts in Maven Central.
http://jira.codehaus.org/browse/MAVENUPLOAD-2676 (vote for it!)
http://jira.codehaus.org/browse/MAVENUPLOAD-2677 (vote for it!)
How to Turn Off SQL Output in Hibernate 3.3
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> ... <session-factory name="java:hibernate/SessionFactory"> ... <property name="show_sql">false</property> ... </session-factory> ... </hibernate-configuration>
http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html