Archive for the ‘Uncategorized’ Category.

Opencart oder OCIE, Versions-Verschleierung

Hallo

falls jemand VOR der Installtion von OCIE 1.2.5 wissen will, zu was das kompatibel sein soll oder auf welcher OpenCart Version das basiert:
OCIE v.1.2.5
Based on OpenCart v.1.4.9.x

Continue reading ‘Opencart oder OCIE, Versions-Verschleierung’ »

Develop an OpenCart vqmod to alter the confirm eMail

Hello

[updated 21. dec 2011, see code change]

I had the need to alter the OpenCart (1.5.1.3) order confirmation eMail to include some legal text (german Impressum (company contact) and Wiederrufsbelehrung, Stichwort Abmahnung) and to remove the display of the IP.

To be able to watch and debug my code additions, I had to setup a development system for the OpenCart shop instance:

Continue reading ‘Develop an OpenCart vqmod to alter the confirm eMail’ »

WordPress CodeprojectFeeder Plugin updated

Hi

I just updated my CodeProjectFeeder WordPress plugin.

I did the code change requested by WebBiscuit at the Technical Blog mirror at CodeProject

have fun

josef

Howto dump all texts of a web site

Recently I wanted to get all texts from a web site to prepare a translation. Although I found the one or other tip, here is the easy solution with a linux system.
Simply use lynx:

lynx -crawl -traversal http://website.de

(just replace website.de with the URL you want to get the texts from).

To get all html pages (no images etc) you can use wget:
wget -r -k -L -A htm,html http://website.de

With lynx you will get all texts as dat files and can start reading/translating offline.