Gnome 3 Panels
changing panels also has not changed since 11.10. See https://blog.coffeebeans.at/?p=16
changing panels also has not changed since 11.10. See https://blog.coffeebeans.at/?p=16
nothing has changed for this since 11.10. So just see https://blog.coffeebeans.at/?p=47
Ubuntu 12.04 Gnome 2 Style Read More »
Creating a standalone EJB-client application works like the following. If you use maven, just include the following dependency: <dependency> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-ejb-client-bom</artifactId> <type>pom</type> <version>7.1.1.Final</version> </dependency> Then you need a file jboss-ejb-client.properties in your classpath. Here an example: remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false remote.connections=default remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=true remote.connection.default.host=localhost remote.connection.default.port=4447 remote.connection.default.username=username remote.connection.default.password=password If you haven’t changed default configuration the username+passwort are added with the
EJB Standalone Client JBoss AS7.1.1 Read More »
I already described my full rom upgrade to 4.0.3 in a former post https://blog.coffeebeans.at/?p=208. This time I chose not to loose my apps+configuration and downloaded an official 4.0.3 to 4.0.4 patch from google as the OTA-update failed without an error message and the hourly message that there is an update available was a bit annoying.
Manual Android 4.0.3 to 4.0.4 Update Read More »
If you rename or move the folder containing your magento installation or want to change the domain you won’t reach it anymore because the base_url is saved in the database and used for redirects. So connect to your database and change the URLs saved there: The URLs are saved under core_config_data and can be retrieved
Change base URL in magento Read More »
Update 11.7.2013: New version for JBoss 7.2.0.Alpha1 / EAP 6.1.0.Alpha1 can be found here: http://blog.coffeebeans.at/?p=606 ———————– JBoss 7 and ActiveMQ finally work together. Download the latest snapshot of activemq.rar. Unzip the file and name the resulting folder activemq.rar. Place the folder in you deployments folder of jboss. Place the files ra.xml and ironjacamar.xml into the
ActiveMQ Configuration under JBoss AS7 Read More »
I just started a backup script to maintain a simple configurable, daily backup script for linux that holds 1 month history of backuped data and has host dependant configuration to update the script in a central repository. I published it under github: https://github.com/mbogner/backup_script Features: logging of all output configuration file in /etc/backup.conf to override default
Simple Bash Backup Script Read More »
here is a list of often needed openssl commands to work with ssl keys: Create new private key + CSR: openssl req -new -newkey rsa:2048 -nodes -keyout common_name.key -out common_name.csr Create CSR from existing private key: openssl req -new -key common_name.key -out common_name.csr Check CSR: openssl req -text -noout -verify -in common_name.csr Check private key:
This problem should be fixable by changing app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option/Collection.php line 117. Just insert “main_table.” (without “) before option_id. The line shoul look like the following after that: return $this->addFieldToFilter(‘main_table.option_id’, array(‘in’ => $optionId));
Magento – Column ‘option_id’ in where clause is ambiguous. Read More »
I use git to share my projects with my workstation and my notebook. So I often start a project locally on one of them and want to continue on the other. Because I’ve already installed a central gitosis server this is no problem. Here is how to move the local project to gitosis after having
move local git project to gitosis Read More »