WordPress permalinks not working? Enable Apache’s mod_rewrite in Ubuntu.

By default in Ubuntu 10.04 Desktop, Apache2 will not have mod_rewrite enabled. This can cause your local installation of WordPress to fail on every page except the home page!If your WordPress configuration has permalinks turned on then the .htaccess file will be using mod_rewrite directives to display your site's pages.The solution ...sudo -i a2enmod rewrite /etc/init.d/apache2 ...
JDE101 SQLs How does a query to a database look like?

We will look at how certain JDE objects call business data tables. This will help us understand the constructed SQL.JDE objects will send requests to the business data DB via -Fetch Singles / Nexts from event rule code Data Selection over a Business ViewThis can be from Application Forms or UBE ObjectsThe business data DB ...
Why does CD not work in MSDOS?

I have come across this issue a few times when jumping from computer to computer. When trying to change drives, it simply did not work. After randomly googling I had finally found the solution.Issue When typing the below command in MSDOS... H:/>cd C: ...it results in... H:/>Resolution Type... H:\>C: ...it will result in... C:\>[ ...this switches drive, but you can also type... H:\>cd /d ...
JDE101 UBE, A report, batch application, what are you talking about?

What is the difference between a UBE, Report, and Batch Application? This is a grey area where people with different experiences may have different point of views.A visual explanation...A verbose explanation...UBE - Universal Batch Engine This term is mostly used to describe the running UBE.EXE process that is ...
Oracle SQL Developer – MySQL – Query execution was interrupted Vendor Code 1317

I came across this issue when i successfully connected to my dreamhost database. It randomly errors upon "complex" quieries.OTN Discussion Form Thread - this link gave me the cause of the issue but the solution wasn't clear cut.My issue was that a minor version of the MySQL JDBC was not compatible with MySQL 5.1.56MySQL ...
How do I access my dreamhost database remotely?

Do you have an SQL client that you just can't live without? This article will show you how to connect to your dreamhost MYSQL database from Oracle SQL Developer. First TryWe first need to give our SQL client all the info it needs. This can be found on your dreamhost database admin page. Note, the ...
JDE101 Tools that will make JDE development a breeze! Amazing!

Need an easy way to clear cache and logs? Need to throw in values into Report Interconnects and Form Interconnects? Need to debug an issue that makes you restart JDE many times? Here are the tools! The List JDE restart and log clearing script Here is a script i made in VB Script...Do i need this? If ...
Replacing a Faulty LP171WX2 17inch Screen from a DELL Inspiron 9300

Problem DescriptionI had bought a DELL Inspiron in the year 2005. In 2007, the LCD screen had vertical lines of varying colours. Dell had then offered to replace the screen for free and they had accepted this to be a known issue to their customers. Then, in late 2008, the same problem occurred! Essentially, it ...
Replacing a cracked LCD screen from my Panasonic DMC-TZ15 Camera

One day i was holding my DMC-TZ15 camera when suddenly it slipped through my hands and dropped onto a metal rail. The result was a cracked LCD screen. I was very lucky that the camera was off as this reduced the chances of breaking the lens package. The picture to the right shows a cracked ...
Designing an 8 function 4 bit ALU

1. Circuit Function 1.1. Brief This 8 function 4 bit ALU was created by combining four 1 bit ALUs, each with the following components and functionality-XORX = A XOR BANDX = A AND BORX = A OR BFull Adder with Subtraction – Doubles as an Adder ...