Skip to main content
November 2-22, 2003

Install debian 3 woody diserver melalui cd tapi onboard Ethernet card di mainboard Intel 875wp server tidak didukung oleh debian woody 3 tersebut, karena keterbatasan waktu team memutuskan mencoba pindah linux distro.
Pada tgl November 20, 2003. Linux distro yang pertama dicoba adalah redhat 9 dengan pertimbangan lebih banyak hardware yang didukung dan fasilitas administrasi redhat yang lebih simple dan adanya file rpms di midgard yang memudahkan instalasi midgard tanpa mengcompile dari source code tarball.
Sebelum menginstall midgard rpms, team mengintall midgard dari source code tarball midgard dan apache, php, serta mysql juga dari source tarball. Instalasi berjalan dengan baik tanpa error namun midgard tidak bekerja sebagaimana mestinya dan setelah dibandingkan dengan httpd.conf dan midgard-data.conf dari tws tidak ada perbedaan yang signifikan. Kesalahan diperkirakan terjadi mix upnya bagaimana seharusnya proses configure dan make install source dari berbagai sumber yang berbeda dan mungkin karena referensi install database midgard yang di < http://www.ngogeeks.com/node/view/255 > memakai user www-data sedang apache memakai user apache.
Karena menemui jalan buntu tidak ditemukannya penyebap kenapa midgard tidak dapat bekerja lalu diputuskan menginstall midgard dari rpms. Midgard v 1.5 di download di < www.midgard-project.org/download/Red Hat 9/ > sedangkan apache 1.3. 27, php 4.3.2 dan library pendukung lain di download dari < http://noddle.net/midgard/rhl9/RPMS/ > karena pertimbangan requirement midgard maka tools standard web development yang di install dari cd redhat 9 hanya mysql server. Selain midgard, Aegir admin juga diinstall pada hari yang sama,aegir dapat di download di < www.aegir-cms.org/download/ >
Distro Redhat 9 akhirnya dipakai untuk mengembangkan web cms berbasis midgard walaupun ini adalah versi terakhir dari redhat namun ada pengganti yang yaitu project fedora yang juga berbasis gnu/linux < www.fedor.us > . Lebih lengkap mengenai migrasi redhat ke fedora dapat dilihat di < http://www.redhat.com/solutions/migration/rhl/ > walau komunitas yang lebih besar di debian namun karena waktu yang terbatas redhat 9 tetap dipakai.
Tanggal 22 November midgard dan aegir sudah dapat berjalan dan team memulai mengeksplore midgard dan aegir.

Comments

Popular posts from this blog

CapitalizeWords.java

I need to make my string sentence to be capitalize on each first character of word, So far haven't find such function that I can use. So made this simple class, incase someone need it. It's GPL so free to use it and modify it. import java.util.Scanner; import java.util.ArrayList; import java.util.Iterator; import java.lang.StringBuilder; /** * * @author avenpace * I'm using singleton here so, hope you know what that means ;) * license under the GPL so free to use, modify and hack whatever you want * lemme know if this programme benefit you if you had the time */ public class CapitalizeWords { private static CapitalizeWords capinstance; private CapitalizeWords() { } /** * The method will capitalizing every first character on each word on the String sentence * This method take two parameter, * @param source source sentence string that you want to capitalize on the first character if each word. * @param allword this argument...

Yet another online shop launch

For housewife who use to work, daily activities are dull and boring. So I've been persuade my wife to run online shop to add variation on her daily routine. Finally we decided to start selling clothing goods and knick knacks, some are airbrush paint t shirt, woman snake leather handbag are there also Since I've been working with python, I came out to use satchmo for our online shop framework After doing customizing here and there and build some payment modules, we lauch WarungRupa.com  on early January 2012 We have some ideas which are still in our thoughts and we keen to work on it Hope WarungRupa.com  can have many visitors and buyers Next to do are SEO and promotions ^_^

django realtime currency rate

Its been a really long time since I post something here For some dumb reason, I forgot my blogger login/password :hammer: Anyway, since I'm now heavily work with django stuff Here are some django related projects that hopefully can benefit anyone who need it * django-currency_rate, simple django app that can give you realtime currency rate base on http://themoneyconverter.com . Owh its even can calculate the rate with templatetag :) https://github.com/avenpace/django-exchange_rate