Web Translate

Label

Friend Connect

About Me

Sharing Can Make Your Live Easier
Lihat profil lengkapku
Jumat, 29 Januari 2010

Textarea and autoresize iFrame

textarea code and autoresize iFrame
Topic : iFrame in Auto Height Resize
Short Note : this code talking about Auto Height Resize using iframe, whether the benefits of this way? depending on how you, because all the triks to be done as long as people do not steal other pages to crime.

Highlight select all click me 
and paste under <head>
Highlight select all click me
and paste under <body>
Short Description Howto Read Code
Call it iframe.htm or anything else that you want.
create
tree.htm Make sure that the iframe.htm and the tree.htm are in the same domain call to http://www.yoursite.com/iframe.htm
Jumat, 08 Januari 2010

Sticky Tooltip script

After test in Drupal

output

Tooltip

Script sample

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<script type="text/javascript" src="stickytooltip.js">

</script>

<link rel="stylesheet" type="text/css" href="stickytooltip.css" />

<p>Some page contents here...</p>

<p><a href="http://en.wikipedia.org/wiki/Thailand" data-tooltip="sticky1">Thailand</a></p>
<p><a href="http://en.wikipedia.org/wiki/British_columbia" data-tooltip="sticky2">British Columbia</a></p>
<p><img src="http://img403.imageshack.us/img403/3403/redleaves.jpg" data-tooltip="sticky3" /></p>

<p>Some page contents here...</p>

<!--HTML for the tooltips-->
<div id="mystickytooltip" class="stickytooltip">
<div style="padding:5px">

<div id="sticky1" class="atip" style="width:200px">
<img src="http://img121.imageshack.us/img121/746/thailand.jpg" /><br />
Thailand boasts some of the most popular and luxurious resorts in Asia.
</div>

<div id="sticky2" class="atip" style="width:262px">
<img src="http://img686.imageshack.us/img686/7383/vancouver.jpg" /><br />BC is the westernmost of Canada's provinces and is famed for its natural beauty.<b><a href="http://en.wikipedia.org/wiki/Vancouver">Vancouver</a></b> is BC's largest city.
</div>

<div id="sticky3" class="atip">
<img src="http://img339.imageshack.us/img339/2488/redleaveslarge.jpg" />
</div>

</div>

<div class="stickystatus"></div>
</div>

Defining your tooltips

All tooltips on the page should be defined inside a single DIV, with each DIV itself wrapped around a DIV with a unique ID attribute. The basic structure is:

<div id="mystickytooltip" class="stickytooltip">
<div style="padding:5px">
<div id="sticky1">
Sticky Tooptip 1 content here...
</div>
<div id="sticky2">
Sticky Tooptip 2 content here...
</div>
<div id="sticky3">
Sticky Tooptip 3 content here...
</div>
</div>
<div class="stickystatus"></div>
</div>

In this case I've defined 3 tooltips. Notice how all 3 are contained inside the DIV with CSS class "stickytooltip", which you should retain (the CSS class that is). Each individual tooltip DIV plus the outermost container should carry a unique but arbitrary ID attribute.

With your tooltip defined, you associate a particular tooltip with an element on the page by inserting the attribute "data-tooltip=tooltipid" into the element, for example:

<a href="http://easy-step-webdesign-solution.blogspot.com/" data-tooltip="sticky1">Dynamic Drive</a>

You set data-tooltip to the ID of the tooltip you want this element to show, in this case, sticky1. You can insert this attribute not just inside links, but any element on the page you wish a tooltip to appear when the mouse rolls over it.

Modifying global settings

There are also some variables inside stickytooltip.js that affect your sticky tooltips in general that you may want to customize. Firstly, near the top of the file:

tooltipoffsets: [20, -30], //additional x and y offset from mouse cursor for tooltips
fadeinspeed: 200, //duration of fade effect in milliseconds
rightclickstick: true, //sticky tooltip when user right clicks over the triggering element (apart from pressing "s" key) ?
stickybordercolors: ["black", "darkred"], //border color of tooltip depending on sticky state
stickynotice1: ["Press \"s\"", "or right click", "to sticky this box"], //customize tooltip status message
stickynotice2: "Click outside this box to hide it", //customize tooltip status message

These variables control things such as the offset of the tooltips from the mouse cursor, and whether each tooltip should be "stickied" when the right mouse button is clicked over the anchor element etc. More importantly, however, is the last line inside stickytooltip.js:

infotooltip.init("*[data-tooltip]", "mystickytooltip")

The 2nd parameter should be set to the ID of the DIV holding all your tooltips, which by default is "mystickytooltip". The 1st parameter is reserved for advanced users only, and accepts a jQuery selector limiting the elements the page that are parsed for potentially carrying a tooltip.

Thank's toyou

Kamis, 07 Januari 2010

Drupal Popup Menu

Sample in drupal

output :

popupmenu

sample script

<p>
<link href="http://localhost/iframetest/popupmenu.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="http://localhost/iframetest/jquery.min.js"></script> <script type="text/javascript" src="http://localhost/iframetest/popupmenu.js">

/***********************************************
* Flex Level Popup Menu- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.3lucky.com/ for this script and 100s more
***********************************************/

</script></p>
<p style="text-align: left;"><a data-popupmenu="popmenu1" href="http://www.3lucky.com">Dynamic Drive</a></p>
<p style="text-align: left;"><a data-popupmenu="popmenu2" href="http://www.3lucky.com">Webmaster Resources</a></p>
<!--HTML for popup Menu 1-->
<ul class="jqpopupmenu" id="popmenu1">
<li><a href="#">Item 1a</a></li>
<li><a href="#">Item 2a</a></li>
<li><a href="#">Item Folder 3a</a>
<ul>
<li><a href="#">Sub Item 3.1a</a></li>
<li><a href="#">Sub Item 3.2a</a></li>
<li><a href="#">Sub Item 3.3a</a></li>
<li><a href="#">Sub Item 3.4a</a></li>
</ul>
</li>
<li><a href="#">Item 4a</a></li>
<li><a href="#">Item Folder 5a</a>
<ul>
<li><a href="#">Sub Item 5.1a</a></li>
<li><a href="#">Item Folder 5.2a</a>
<ul>
<li><a href="#">Sub Item 5.2.1a</a></li>
<li><a href="#">Sub Item 5.2.2a</a></li>
<li><a href="#">Sub Item 5.2.3a</a></li>
<li><a href="#">Sub Item 5.2.4a</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Item 6a</a></li>
</ul>
<!--HTML for popup Menu 2-->
<ul class="jqpopupmenu" id="popmenu2">
<li><a href="http://www.3lucky.com/">Dynamic Drive</a></li>
<li><a href="http://easy-step-webdesign-solution.blogspot.com/">CSS Drive</a></li>
Reference</a></li>
</ul>

Information :

Defining and adding a popup menu to a link is simple enough. Firstly, define the popup menus, which should each just be a regular UL list, nested if you desire multiple levels. For example:

<ul id="popmenu1" class="jqpopupmenu">
<li><a href="#">Item 1a</a></li>
<li><a href="#">Item 2a</a></li>
<li><a href="#">Item Folder 3a</a>
<ul>
<li><a href="#">Sub Item 3.1a</a></li>
<li><a href="#">Sub Item 3.2a</a></li>
<li><a href="#">Sub Item 3.3a</a></li>
<li><a href="#">Sub Item 3.4a</a></li>
</ul>
</li>
<li><a href="#">Item 4a</a></li>
<li><a href="#">Item Folder 5a</a>
<ul>
<li><a href="#">Sub Item 5.1a</a></li>
<li><a href="#">Item Folder 5.2a</a>
<ul>
<li><a href="#">Sub Item 5.2.1a</a></li>
<li><a href="#">Sub Item 5.2.2a</a></li>
<li><a href="#">Sub Item 5.2.3a</a></li>
<li><a href="#">Sub Item 5.2.4a</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Item 6a</a></li>
</ul>

Notice how the UL menu carries a unique ID and CSS class of "jqpopupmenu". This is required. The ID attribute can be arbitrary but unique in value.

With the popup menu defined, to associate it with a link on the page, just insert the attribute "data-popupmenu" inside it pointing to the ID of the desired popup menu:

<a href="http://www.3lucky.com" data-popupmenu="popmenu1">Dynamic Drive</a>

And that's it. Moving the mouse over the link "Dynamic Drive" above will now activate the popup menu with ID "popmenu1".

There are also a few variables inside popupmenu.js that you may wish to edit, which affect things such as the arrow image's full path, animation speed, plus delay before menu appears/ disappears onMouseover:

arrowpath: 'arrow.gif', //full URL or path to arrow image
popupmenuoffsets: [0, 0], //additional x and y offset from mouse cursor for popup menus
animspeed: 200, //reveal animation speed (in milliseconds)
showhidedelay: [150, 150], //delay before menu appears and disappears when mouse rolls over it, in milliseconds

Adding Flex Level Pop Up Menu to Image Maps

You can also associate a pop up menu with hotspots within an image map, so moving the mouse over these hot spots display a pop up menu. Simply define your Image Map as usual, then insert the attribute "data-popupmenu" into the desired AREA elements just as you would inside a regular link. For example:

<map name="piechart">
<area href="http://www.3lucky.com.com" shape="rect" coords="91, 88, 186, 156" data-popupmenu="popmenu1">
<area href="http://easy-step-webdesign-solution.blogspot.com/" shape="rect" coords="137, 42, 223, 68" data-popupmenu="popmenu2">
</map>
<img border="0" src="piechart.jpg" width="237" height="172" usemap="#piechart"></td>

thank's to to you

drupal quick tab module

Installation & Use:
-------------------------------------------------------------------------------

1.  Enable module in module list located at administer > build > modules.
2.  Go to admin/settings/quicktabs to select a style for your tabs
3.  Go to admin/build/quicktabs and click on the "New QT block" local task tab.
4.  Add a title for your block and start entering information for your tabs
5.  Use the Add another tab button to add more tabs.
6.  Use the drag handles on the left to re-arrange tabs.
7.  Once you have defined all the tabs, click 'Next'.
8.  You will be taken to the admin/build/block screen where you should see yor new tabbed block listed.
9.  Configure & enable it as required.

minitab

Drupal Dropdown menu

Simple step how to create doropdown menu

1. Must have block menu

2 create menu http://localhost/cms/drupal614/admin/build/menu and click "add menu"

3. create content and sample link menu name : Master Plan Design see as below :

dropdownsettingblocl_2

 

4. goto block menu      :Http://localhost/cms/drupal614/admin/build/block see my pict and save block

dropdownsettingblocl_1

3. goto http://localhost/cms/drupal614/admin/build/menu and see my sample and save

dropdownsettingblocl_3

 

result

dropdownsettingblocl_4

TEMPLATE GENERATOR

TEMPLATE GENERATOR

| More

Label: INFO

Jika anda tidak puas dengan blog dan website yang sudah dibuat sendiri desain templatenya atau kode-kode template-template bebas buatan orang lain yang beredar di luar sana dan ingin membuat sendiri desain anda dengan mudah tanpa terlalu ahli di bidang kode web, maka template generator ini adalah yang anda perlukan, karena mudah digunakan dengan struktur dasar yang mudah dipahami. Berikut review 10+ Template Generator terbaik tersebut.

1. CSSEZ http://cssez.com

CSSEZ ini adalah generator template online untuk blog wordpress dan movable type. Jika anda ingin menggunakan layanan ini, anda perlu registrasi gratis disini. Beberapa fiturnya yang bagus adalah memilih antara satu sampai empat kolom template, mengatur lebar kolom, padding, margin, border, font dan style link. Anda juga dapat mengupload gambar atau membuat sendiri dengan image maker.

2. Dotemplate

http://www.dotemplate.com

Dotemplate ini menyediakan 12 template XHTML dan CSS compliant dasar gratis yang bisa anda pilih sendiri. Anda bisa memilih salah satu dan kemudian mengkustomisasinya dengan mengubah warna, font, teks, posisi teks dan lain sebagainya pada background, container, footer, menu dan boks. Selain itu anda juga bisa menambahkan efek seperti drop shadow, gradien dan round corner. Layanan ini sangat menarik karena tidak memerlukan pengetahuan html yang terlalu banyak untuk mempergunakannya, selain itu ada pilihan untuk mengupload gambar anda sendiri.

3. Drupal Theme Generator

http://xlecom.com/?q=node/152

Generator ini adalah generator theme berbasis MS Excel untuk situs atau blog drupal yang menggunakan template PHP dan Xtemplate. Layanan ini gratis dan memiliki fitur yang kaya seperti generator theme random color, preview theme langsung, html color assistant, dan integrasi CSS, javascript, PHP dan kode html pada theme dari file eksternal dan lain sebagainya. Selain itu ada 9 theme yang bisa anda dapatkan ketika mendownload generator ini.

4. Eris’ Template Generator

http://www.erisfree.com/d2/apart.php

Generator ini menyediakan 11 skin untuk blog anda dengan tiga pilihan kolom untuk setiap skinnya. Saat ini layanan ini mendukung diaryland, diary-x, movabletype, blogger, wordpress, b2 dan free html site template lainnya. Anda bisa menambahkan tagline, meta tag dan termasuk link ke index, arsip, email, notes, profile, buddylist dan juga 5 entri untuk diaryland, 10 entri untuk movable type, kalender untuk b2, blogroll untuk wordpress, XHTML compliant dan content copyright, webring, chat screen name dan button.

5. Firdamatic

http://www.wannabegirl.org/firdamatic

Generator template online untuk blogger dan movable type ini memiliki pilihan dua dan tiga kolom, anda bisa memasukkan sendiri informasi pada boks relevan pada form online yang tersedian dan klik generate template, selain itu anda juga bisa menambahkan judul situs, url gambar dan memilih huruf dan warnanya.

6. HTML PHP CSS Website Template Generator

http://www.maketemplate.com

Online generator ini mampu membuat template situs PHP, bersamaan dengan file CSS dan HTML. Anda juga bisa mengkustomisasi style sheet, header, sidebar, dan footer dengan menambahkan sendiri font, warna, margin dan alignment pada form online template generator. ANda juga bisa membuat sendiri scriptnya yang bisa anda kopi dan simpan untuk keperluan anda nanti.

7. PsycHo

http://psyc.horm.org

Generator online template open source ini dapat diaplikasikan pada platform blogger, persian blog, dan blogFa. Anda bisa mengatur sendiri judul halaman, warna background body template, judul background, deskripsi, teks, spacing dan memilih hingga 4 pilihan kolom. Anda juga bisa preview template anda dan menyimpan kodenya. Layanan ini mudah digunakan tanpa pengetahuan html yang terlalu banyak.

8. Templatr

http://templatr.cc

Templatr ini menyediakan lebih dari 20 layout dan pilihan formatting untuk berbagai elemen halaman termasuk halaman utama, header, footer, titles, margin, padding, border dan banyak lagi untuk keperluan wordpress blog. Selain itu, layanan ini juga menyediakan upload dimana anda bisa mengupload grafis/gambar . Setelah itu anda bisa mendownload template jika anda telah selesai dan mengaplikasikannya pada blog anda.

9. Weebly

http://www.weebly.com

Generator template yang rapi ini memiliki 15 desain pre-built yang bisa dikustomisasi dengan menambahkan elemen seperti iklan, feed icon, map, contact form, teks dan layout gambar, kolom google dan youtube video dan lain sebagainya. Jika anda sudah selesai anda bisa mempublikasikan situs/blog tersebut pada platform anda.

10. WordPress Theme Generator
http://www.yvoschaap.com/wpthemegen/

Layanan generator online dapat membantu anda untuk membuat sendiri theme wordpress anda dengan mudah tanpa pengetahuan html dan css language. Layanan ini menyediakan pilihan untuk memilih sendiri nama blog, ukuran body, lokasi sidebar dan ukurannya, menambahkan kolom ketiga, layout menu, warna dan skema teks, anda juga bisa menambahkan tag cloud, arsip dan kotak pencarian. Selain itu anda bisa mengupload logo situs anda online dan membuat link-nya dari template. Jika anda telah selesai anda bisa melihat hasil kreasi anda dan mendownloadnya dalam file zip.

CSS Poster and Drupal Template Customization

CSS Poster is a free online tool from chami.com. Just upload a CSS file, and CSS Poster will make a chart based on your CSS file.

Here is a cropped example using Drupal's Bluemarine template's CSS file:

CSS Poster used to display Drupal's Bluemarine Template CSS

A potential use for CSS Poster that immediately comes to mind is using it as a reference when customizing Drupal themes, or any kind of CSS file that was created by someone else.

 

http://tips.webdesign10.com/css-poster

Rabu, 06 Januari 2010

Table Sample Code

<table width="80%" cellspacing="0" cellpadding="0" border="0" align="left">
    <tbody>
        <tr>
            <td>
            <h3>Title goes here</h3>
            <p>
            <table width="150" cellspacing="0" cellpadding="0" border="1" style="float: right;">
                <tbody>
                    <tr>
                        <td align="center" colspan="3"><strong>Table title</strong></td>
                    </tr>
                    <tr>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                    </tr>
                    <tr>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                    </tr>
                    <tr>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                    </tr>
                    <tr>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                    </tr>
                </tbody>
            </table>
            Type the text hee</p>
            </td>
        </tr>
    </tbody>
</table>

 

result

table

Block Code Manual

<p>Change to Your Language</p>
<script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/translatemypage.xml&up_source_language=en&w=160&h=60&title=&border=&output=js"></script>

 

Contact

<p><a onClick="OpenNewWindow(); return
false" href="http://www.3lucky.com/contact">Mail Contact</a> &nbsp; <a onClick="OpenNewWindow(); return
false" href="http://twitter.com/threelucky">Twitter</a>&nbsp;  <a onClick="OpenNewWindow(); return
false" href="http://www.facebook.com/putut.priyanto">Facebook</a>&nbsp;</p><p><a onClick="OpenNewWindow(); return
false" href="http://www.3lucky.com/irc">IRC Chat</a>&nbsp; <a onClick="OpenNewWindow(); return
false" href="http://www.3lucky.com/pjirc">Chat Room</a></p>

marquee

<marquee height="20" direction="down" behavior="alternate"><marquee width="100%" bgcolor="yellow" scrolldelay="300" behavior="alternate" loop="100"> Mozilla Recommended or allow java script</marquee>
<p>&nbsp;</p>
</marquee>

 

Geovisitor counter

<script type="text/javascript" src="http://geoloc12.geovisite.com/private/geocounter.js?compte=799147248782"></script> <noscript>
<a href="http://www.geovisite.com/en/directory/sciences_agriculture.php"  target="_blank"><img src="http://geoloc12.geovisite.com/private/geocounter.php?compte=799147248782" border="0" alt="agriculture"></a><br>
Please do not change this code for a perfect fonctionality of your counter
<a href="http://www.geovisite.com/en/directory/sciences_agriculture.php">agriculture</a>
</noscript>

 

shoutmix

<div><!-- Begin ShoutMix - http://www.shoutmix.com --> <iframe width="160" height="400" frameborder="0" scrolling="auto" title="shareidea" src="http://www4.shoutmix.com/?shareidea">
<a href="http://www4.shoutmix.com/?shareidea">View shoutbox</a>
</iframe> <!-- End ShoutMix --></div>

 

 

Page Rank

<p><a href="http://www.mypagerank.net"><img border="0" alt="" src="http://www.mypagerank.net/services/seostats/seostats.php?s=de510918fce361970998b0985e285a&amp;bg=FFFFFF&amp;textcolor=000000&amp;bordercolor=999999&amp;indicatorcolor=5EAA5E&amp;ugo=1&amp;uho=1&amp;umo=1&amp;amo=1&amp;upr=1&amp;tuv=1&amp;tpv=1&amp;yuv=1&amp;ypv=1&amp;ttuv=1&amp;ttpv=1&amp;uonline=1&amp;f=332278" title="SEO Stats 3lucky.com" /></a> <br />
<a href="http://www.mypagerank.net/seomonitor-44660.html" target="_blank"><img border="0" alt="" src="http://www.mypagerank.net/services/seomonitor/seomonitor.php?aut=44660" title="SEO Monitor 3lucky.com" /></a></p>

 

Real Time Web Analytics

<p><a href="http://getclicky.com/140896" title="Real Time Web Analytics"><img border="0" src="http://static.getclicky.com/media/links/badge.gif" alt="Real Time Web Analytics" /></a> <script src="http://static.getclicky.com/js" type="text/javascript"></script> <script type="text/javascript">clicky.init(140896);</script> <noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/140896ns.gif" /></p></noscript></p>

 

http://id.messenger.yahoo.com/pingbox

yahoo pingbox.. delete word hapus 

<p><hapus object width="230" height="420" id="pingbox769j38nuss800" type="application/x-shockwave-flash" data="http://wgweb.msg.yahoo.com/badge/Pingbox.swf">
<param name="movie" value="http://wgweb.msg.yahoo.com/badge/Pingbox.swf" />
<param name="allowScriptAccess" value="always" />
<param name="flashvars" value="wid=zGLIGYC6UWaT63Mn13wZAcbzga73PQ--" /><hapus/object></p>

 

friend connect

<!-- about Set up the Members gadget Include the Google Friend Connect javascript library. --> <script type="text/javascript" src="http://www.google.com/friendconnect/script/friendconnect.js"></script> <!-- Define the div tag where the gadget will be inserted. -->
<div style="border: 1px solid rgb(204, 204, 204); width: 276px;" id="div-6169384188995683083">&nbsp;</div>
<!-- Render the gadget into a div. --> <script type="text/javascript">
var skin = {};
skin['FONT_FAMILY'] = 'georgia,serif';
skin['BORDER_COLOR'] = '#cccccc';
skin['ENDCAP_BG_COLOR'] = '#e0ecff';
skin['ENDCAP_TEXT_COLOR'] = '#333333';
skin['ENDCAP_LINK_COLOR'] = '#0000cc';
skin['ALTERNATE_BG_COLOR'] = '#ffffff';
skin['CONTENT_BG_COLOR'] = '#ffffff';
skin['CONTENT_LINK_COLOR'] = '#0000cc';
skin['CONTENT_TEXT_COLOR'] = '#333333';
skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc';
skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666';
skin['CONTENT_HEADLINE_COLOR'] = '#333333';
skin['NUMBER_ROWS'] = '4';
google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
{ id: 'div-6169384188995683083',
   site: '12655291970310091377' },
  skin);
</script>

 

bravenet

<script language="JavaScript" src="http://www.bravenet.com/cserv.php?pid=4&amp;tid=5&amp;afilid=494044403">
</script>

 

adsense indonesia

<script src="http://adsensecamp.com/show/?id=m6xSVNe1O3s%3D&cid=xoxibs15%2BiU%3D&chan=1ktj4jHsV0A%3D&type=9&title=3D81EE&text=000000&background=FFFFFF&border=000000&url=2BA94F" type="text/javascript">
</script>

 

statistik

<script type="text/javascript" src="http://feedjit.com/serve/?bc=FFFFFF&amp;tc=333333&amp;brd1=999999&amp;lnk=346BA4&amp;hc=C13A10&amp;ww=160"></script><noscript></noscript>

 

<p><a title="web stats tracker" target="_blank" href="http://www.histats.com"><script  type="text/javascript" language="javascript">
var s_sid = 891955;var st_dominio = 4;
var cimg = 406;var cwi =165;var che =100;
</script></a> <script  type="text/javascript" language="javascript" src="http://s10.histats.com/js9.js"></script> <noscript><a href="http://www.histats.com" target="_blank">
<img  src="http://s4.histats.com/stats/0.gif?891955&1" alt="web stats tracker" border="0"></a>
</noscript></p>

Best Link

Drupal manual :

http://tips.webdesign10.com/drupal/how-make-a-custom-front-page-drupal-316.html

http://agileware.net/content/use-menu-settings-add-menu-items

About how to configuration

http://nadeausoftware.com/articles/2009/06/drupal_and_apache_web_site_security_checklist_part_2

lict donwload module

http://kathyravan.blogspot.com/2009/02/alphabetical-list-of-drupal-modules-by.html

HTML - Hypertext Markup Language

Zur Navigation springen. Zum Inhalt springen.

www.buschka.at

Linksammlung

HTML - Hypertext Markup Language

SELFHTML - Online

Edition W3C - Übersetzungen von W3C Empfehlungen

HTML Seminar (Deutsch) (HTML, CSS)

HTML Tags Übersicht

HTML Tags Kurzzusammenfassung

E-Learningcenter.com - Free Online HTML Course

W3 School for HTML

Tutorialzone (DE) - HTML

Buromat (DE) - HTML und CSS Tipps

Web Browser - Übersicht

Forms (AT) - Formulare in HTML

Form Mailer (Formulardaten per E-Mail versenden)

Word 2 Clean HTML - Word Dokumente sauber in HTML umwandeln

Word HTML Cleaner - Word Dokumente sauber in HTML umwandeln

Lorem Ipsum (COM)

Lorem Ipsum (DE)

Blindtexte (DE)

Blindtexte - New Media Designer (DE)

IAB - Internet Advertising Bureau (NET) - Advertising Standards

IAB - Collection Of Banners In Official Sizes

Multimedia Integration - SWF, FLV und Streaming Video

What is the Different between SWF and FLV?

Super (c) SWF FLV Converter (Freeware)

JW FLV Media Player (Free)

JW FLV Parameter Wizard

JW SWF Embedding

XHTML Problem embed - A List Apart Satay Method

XHTML Problem embed - A List Apart Satay Method - Improved!

XHTML object - embed Problem - LANtastic Method

Strict XHTML Test object - embed

JW Video Compression

JW JavaScript API Examples

JW Video Streaming

xmoov-php - HTTP pseudo-streaming script

CSS - Cascading Style Sheets

CSS - Spezifikationen, Grundlagen, Tutorials

W3.ORG - CSS2 Specification

SELFHTML - CSS

CSS Hilfe - CSS Grundkurs

CSS Seminar (Deutsch) (HTML, CSS)

CSS 4 You (DE) (inkl. Layout ohne Tabellen)

The Styleworks (DE) (inkl. HTML - CSS Entsprechungen)

Position Is Everything

A List Apart (COM)

Buromat (DE) - HTML und CSS Tipps

CSS Workshop (inkl. Workarounds)

Webmaster Resource - CSS Tutorial

CSS Discuss

Webstandards Project

Webkrauts - Webstandards für ein besseres Web

Davesite - Interactive CSS Tutorail for Beginners

CSS Walk-In-Workshop (University of Washington)

Webdesign Tutorials - CSS

MaxDesign - Select Tutorial (Type, (Pseudo-)Klassen, ID, Kaskade, Vererbung)

MaxDesign - Listamatic - veritcal / horizontal Lists Tutorial

MaxDesign - Listamatic2 - nested Lists Tutorial

MaxDesign - List Tutorial mit Images und Rollover

MaxDesign - Float Tutorial

Exforsys - CSS Turorial

Dietmar Rabich JavaScript (inkl. CSS)

Traum Projekte - CSS (inkl. Fehler bei Tabellen)

Eric Meyer on CSS

More Eric Meyer on CSS

CSS - Advanced Selectors

Maxdesign - Selectors Tutorial

Your HTML Source - Advanced CSS Selectors

Webdesign About - Advanced CSS Selectors

Quirksmode - Browser und Advanced CSS Selectors

CSS und Browser

IE7 JavaScript library to make MSIE behave like a standards-compliant browser

Browser Shots - CSS und HTML in verschiedenen Browsern testen

CSS und Browser Support

SELFHTML - Browserweichen

CSS Browser Hacks

E-Workers - Browserweichen

E-Workers - Browserkennungen

CSS Box Model - Acid Test (Browservergleich)

CSS Box Model - Acid Test

Webhits (Web-Barometer) - Browserstatistiken

CSS - Liste der von Browser unterstützten Anweisungen

CSS - Farben und Farbverläufe

Color Schemer Online - zusammenpassende Farben

Colors On The Web - Color Wizard - zusammenpassende Farben

Dynamic Drive - Color Gradient - Farbverläufe

Fraunhofer Institut - Wirkung von Farbkombinationen

Adobe Kuler - Create Color Schemes (Free Registration)

VisiBone Color Contrast Test

Gute Beispiele für Skalierung und floatende Elemente

Tinderhouse.com (Beispiel für WAI konforme Seite)

Kommunikationskultur.at

Buchhaltungsfragen.de

Österreichisches Jüdisches Museum

Kammerer barrierefreie Weblösungen

CSS - Designvorlagen

Open Source Webdesign - Gratis CSS Designvorlagen (Templates)

Intensivstation.ch - Gratis CSS Designvorlagen

Layoutgala (it) - Gratis CSS Designvorlagen

Glish - CSS Layout Techniques (inkl. fertige Layoutgerüste)

CSS-Discuss Wiki (inkl. fertige Layoutgerüste)

MaxDesign (inkl. CSS Menüs und Listen)

CSS Tools

Curvy Corners

Nifty Corners

CSS Frameworks

YAML - Yet Another Multicolumn Layout

YAML-Builder (interaktiv YAML Layouts gestalten)

Barrierefreies Webdesign

Informationen

Wikipedia - Barrierefreies Internet

Wikipedia - Screenreader

Gleichstellung AT (Gesetzeslage Österreich)

Web ohne Barrierren nach Paragraph 11 (Deutschland)

Barrierfreies Webdesign

Webdesign ohne Barrieren (D)

IWP - Barrierefreiheit im Internet

Organisationen und Unternehmen

Bundes-Blindenerziehungsinstitut Wien

Accessible Media - Zugang für alle

WAI (Web Accessibility Initiative) Austria

BIZEPS - Behindertenberatungszentrum

Biene - Preise für barrierefreies Webdesign

Kammerer Barrierefreie Webdesignlösungen

WebAIM - Web Accessibility in Mind

Standards

W3C CSS Validation

W3C Markup Validation (X)HTML

W3C WAI (Web Accessibility Initiative)

W3C WAI Guidelines

W3C WAI Core Techniques

W3C WAI HTML Techniques

W3C CSS Techniques

W3C WAI Aural Style Sheets

W3C WAI Tools

Beispiele und Tools

Einfach für Alle - Barrierefreies Webdesign

BIK - barrierefrei informieren und kommunizieren

Jim Thatcher - Accessibility Consulting(inkl. Skip Navigation)

Barriere Kompass (Deutsch)

WOB 11 - Übersicht Testtools

Colorblind Web Page Filter

Cynthia Says Accessibility Check

Barrierefinder (Deutsch)

Wave Web Accessibility Tool

Accessify.com - Accessibility Tools & Wizards (Barrierefreier Table und Form Builder etc.)

WebXact Watchfire

Vischeck

Rohschnitt - Kontrasttest nach W3C

WAT-C - Web Accessibility Tools (Accessibility Toolbar for Windows IE)

Juicy Studio - Colour Contrast Analyser - Firefox Extension

Tinderhouse.com (Beispiel für WAI konforme Seite)

Tutorial - bessere Formulare

Tutorial - bessere Formulare (Listings)

Sehbehinderung Bayern

Netzhautablösung Selbsthilfe

PAPOO - Barrierefreies CMS (Deutsch)

MODx CMS - Barrierefreies CMS (Englisch)

Drupal

Drupal Grundlagen

Drupal (org)

Drupal Cases - Websites die Drupal verwenden

Drupal - Themes

Drupal2U (COM) - Gratis Drupal Themes

Siteground (COM) - Gratis Drupal Themes

Drupal (org) - Tutorials

Drupal (org) - The Drupal Cookbook For Beginners

Das Drupal-Kochbuch (für Neu-Drupaler)

Drupal-Basic - Einsteiger Handbuch

Drupal Center (D)

Drupal Ace (COM)

Drupal Info (D)

Drupal User Group Hannover - inkl. Einsteigerpaket Drupal

My Drupal (COM) - Tips, How To

Lullabot - Consulting and Training for Drupal

Lullabot - Installing Drupal 6

Drupal Modules (Community für Drupal Module)

Drupal Sites (net)

Cocoate (COM) - Hagen Graf

PureGin - Drupal Community (org)

PureGin Drupal Handbooks as PDF

GotDrupal - Basics: Understanding Drupal's Block System

DrupalSightings.com

Drupal HowTo (Systemausfall.org)

Drupal Videoschulungen

GotDrupal.com

Lullabot - Videos (Store)

BuildAModule.com

Learn by the Drop - Drupal Videos

Drupal Dojo (Videos)

Mastering Drupal

Drupal - Training Videos for Beginners

Drupal - Video Repositories

Drupal Video Casts (Videos and Slides)

Drupal School (Videos)

The Art Lab - Drupal School (Videos)

Drupal Therapy (COM) - Drupal Screencasts

Drupal Dude - Site for Drupal Enthusiasts (Videos)

Group24 - Drupal Profi Tipps und Screencasts (Englisch)

Goolge Video Search - Drupal Videos

Brian Stevenson - Drupal Screencasts

Vergleich Drupal und andere CMS

IBM - Gründe für den Einsatz von Drupal und Vergleich mit anderen CMS

Drupal vs Joomla - Performance

Drupal vs Joomla - Popularity

Drupal vs Joomla - Hosting Costs

Drupal vs Joomla & Co - Code Base Comparison

Drupal und Typo3 - Häufigkeit der Verwendung

Drupal und Joomla - Häufigkeit der Verwendung

Typo3 und Joomla - Häufigkeit der Verwendung

Drupal Webserver Configuartions Compared

Drupal Literatur

Drupal 6 Site Builder Solutions

Drupal 6 Site Blueprints

Using Drupal 6

Drupal 6 for Edudation and E-Learning

Drupal 6 Multimedia

Drupal 6 Search Engine Optimization

Drupal 6 Themes

Front End Drupal

Drupal 6 JavaScript and jQuery

Pro Drupal Development

Pro Drupal Development - Source Codes

Pro Drupal Development - Errata

Learning Drupal 6 Module Development

Learning Drupal 6 Module Development - Errata

Cracking Drupal (Security)

Solr 1.4 Enterprise Search Server

Drupal Input Formate

Lullabot - Drupal Input Formats and Filters

Drupal Modul Better Formats - Input Formats

Drupal Module User Default Filter

Drupal Navigation und Menüs

Drupal Module Dynamic Persistent Menu

Drupal Module Nice Menus

Drupal Module me aliases

Drupal Module Menu Block

Drupal Module Menu Trails

Drupal Module Menu Attributes

Drupal Module Menu Firstchild

GotDrupal - Drupal Menu Navigation Enhanced

Drupal Module Account Menu

Firefox Addon NoDoFollow

Drupal Module Frequently Asked Questions

Drupal Module FAQ Search

Drupal RSS Feeds

Drupal Module RSS Feeds Block

Drupal Modul Feed API

Drupal Modul Feed Element Maper

Drupal CCK

Drupal Modul CCK (Content Construction Kit)

Drupal Handbook - Content Construction Kit (CCK)

Drupal CCK Modules

Lullabot - Creating Custom CCK Fields

TiniPixel.Com - Programmatic CCK content type creation

PoplarWare.Com - Creating a Compound Field Module for CCK in Drupal 6.x

Drupal Modul N/A Checkbox

Drupal Modul CCK Blocks

Drupal Modul Node Terms in a Block

Drupal Modul Automatic Nodetitles (hide Title Field)

Drupal Modul Node in CCK

How Node in CCK Works

Drupal Views - Grundlagen

GotDrupal - How To: Using Drupal Views module

Drupal Handbook - Views Arguments

GotDrupal - How To: Using View's Arguments

GotDrupal - How To: Using View's Relationships

GotDrupal - How To: Use Beauty Tips Module to Enhance Your Drupal Views

Drupal Modul Beauty Tips

Drupal Modul Views

Drupal Modul Views Or

Drupal Modul Views PHP Filter

Drupal Modul Views Custom Field

Drupal Modul Views modify query

Drupal Modul Views Slideshow

Views And Views Slideshow - Screencast

Drupal Modul Draggable Views

Draggable Views - Documentation

Drupal Module Draggable Views Navigator

Drupal Modul Views Attach

Drupal Views - Help Online

Introduction To Views

New Features in Views 2

Creating A Page View From A Taxonomy

Views And Relationships (Five Star Rating)

Views Workshop (Der Hasi) (Deutsch)

Lullabot - Drupal data imports with Migrate and Table Wizard

Drupal Modul Table Wizard

Drupal Modul Migrate

Drupal Modul Insert View

Drupal Modul Views Custom Field

Drupal Modul Views Group By

Drupal Modul Data

Drupal Modul Views UI: Edit Basic Settings

Drupal Modul Views Filter Pack

Drupal Modul Views Formatted Field

Drupal Modul Minimax pager

Drupal Modul Better Exposed Filters

Drupal Modul Views Crosstab

Drupal Modul Views Importer

Drupal Modul Views Natural Sort

Drupal Modul Query-Based Views (Q-Views)

Drupal Views und verwandte Module - Empfehlungen

Drupal Modul Table Wizard

Drupal Modul Views PHP Filter

Drupal Modul Views Or

Drupal Modul Query-Based Views (Q-Views)

Drupal Modul Auto Admin

Drupal Views Theming

Drupal Views 2 Theming

Group 42 - Theming Views 2 – The Basics

Drupal Views API und Developer Tipps

Views 2 module developer API

Drupal Contrib API - views.module

Starting Views 2 Documentation

Logrus.com - Views 2 API Manual

Logrus.com - Views 2 Hooks

Logrus.com - Views 2 Template Files

AgileApproach.com - Drupal: Expose a Custom Field to Views2

Drupal Contrib API - hook_views_data (Expose Custom Field)

Drupal Contrib API - hook_views_api (Register View API information)

Views 2 API hook_views_data with more than one table

CiviCRM Example hook_views_data with more than one table

Views 2 Unofficial Tutorials (Developers)

Views 2 Tips and Tricks (Developers)

Embedding Views in PHP snippets with Views 2

Using Views 2 and Drupal 6 to Create a Related Pages Block

Drupal Taxonomy

Drupal Taxonomy

Drupal Taxonomy Modules

Drupal Modul Taxonomy Export

Drupal Modul Install Profile API

Drupal Modul Taxonomy CSV Import

Drupal Modul Taxonomy Menu

Drupal Modul Content Taxonomy

Drupal Modul Field Taxonomy

Drupal Modul Taxonomy Super Select

Drupal Modul Profile Taxonomy

Drupal Modul Content Taxonomy

Drupal Zugriffsteuerung (Permissions)

Drupal Modul Content Access

Drupal Modul ACL (Access Control List)

Drupal Modul Forum Access

Drupal Modul Image Gallery Access

Drupal Modul Filter Permissions

Firefox Addon CheckFox

Drupal Modul Override Node Options

Drupal Modul Modr8 (managing content in moderation)

Drupal Modul Better Permissions

Drupal Modul Permissions Lock

Drupal Modul User Protect

Drupal Modul Restrict Password Change

Drupal Modul All Permissions

Drupal Modul Check Heavy UI

Drupal Modul Permission Select

Drupal Modul User Permissions

Drupal Modul Node permissions grid

Drupal Modul Site Configuration Permissions

Drupal Modul Permissions API

Drupal Modul Profile Permissions

Drupal Modul Masquerade (Switch Users)

GotDrupal - How To: Manage Drupal Permissions More Easily

Drupal User und User Profile (Zusatzinformationen)

Drupal Handbook - Profile: extending user account information

Drupal Modul Advanced Profile Kit

Drupal Modul Content Profile

Drupal Modul Profile Permissions

Drupal Modul Role Weights

Drupal Modul vCard

Drupal Modul SSL Users

Drupal Modul Custom Contact

Drupal Modul Profile role

Drupal - Events und Kalender

Date 2.0 for Drupal 5 and 6

Drupal Modul Calendar

Date/Calendar - Documentation

Drupal Module zu Calendar

Drupal Modul Event

Drupal Module zu Event

Drupal Modul Event Views

Drupal Modul Signup

Drupal Modul Signup Scheduler

Drupal Modul Signup Status

Drupal Modul Signup Restrict by Role

Drupal Modul RSVP (Répondez s'il vous plaît)

Date + Calendar - Screencast

GotDrupal - How To: Create a Drupal Calendar

Drupal Messaging Framework

Drupal Modul Messaging

Drupal Modul SMS Framework

Drupal Modul XMPP Framework

Drupal Modul Private Message

Drupal Modul Mime Mail

Drupal Modul Twitter

Drupal Modul Prowl Push Notifications

Prowl (Growl client for the iPhone OS)

Wikipedia - Growl Benachrichtigungssystem für Mac OS X

PHP Class for Prowls iPhone Notification Service

Drupal Modul Notifications

Drupal Modul Messaging Send To

Drupal Modul Post Reminder

Drupal Modul Mail To Web

Drupal Modul Team Notifications

Drupal Kontaktformulare

Drupal Modul Contact Forms

Drupal Modul Contact Form On Node

Drupal Modul Webform

Drupal Modul Webform Block

Drupal Modul Webform Private Upload

Drupal und Google Maps

Drupal Modul GMap

Drupal Modul GMapEZ

GMapz - Manual

Drupal Modul Simplest GMap

Google API Key - Signup

Google Maps - Position suchen

Google Map Parameters

Tool für Latitude/Longitude

IPligence - Tools and resources for ip location of addresses

GMap + Location - Screencast

Drupal Images und Galleries

Drupal Modul Gallery Assist

Drupal Modul Gallery Assist Image Cache

Drupal Modul Gallery Assist Lightboxes

Gallery Assist Screencasts

Drupal Module Views Gallery

Photo galleries with CCK and Views Attach

Drupal Modul Image Field

Drupal Modul Image Cache

Imagecache + Imagefield - Screencast

GotDrupal - How To: Using Drupal's ImageCache module

Drupal Modul ImageCache Actions

Drupal Modul Image API

Drupal Modul Imagefield Crop

Drupal Modul Imagecache JavaScript Crop

Imagecache javascript crop - Video Tutorial

ImageCache and ImageCrop - Video Tutorial

Drupal Modul Image FUpload

SWFUpload - JavaScript & Flash Upload Library

Drupal Modul Taxonomy Image

Drupal Modul ImageCache Profiles

Drupal Modul jQuery UI

Drupal Modul File Field

FileField + jQuery Media - Screencast

Drupal Modul File Field Paths

Drupal Modul Transliteration

Transliteration i18n-ascii.txt

Drupal Modul Flag

Drupal Modul Flag - Handbook

Drupal Modul Flag Weights

How to reorder your Flagged content

Drupal Modul Draggable Views

Draggable Views - Documentation

Drupal Modul Views Attach

Drupal Modul Features

Lullabot - Image and Image Exact Sizes vs. Imagefield and ImageCache

Lullabot - FileField and ImageField 3.0 for Drupal 6

Maintainable Image Gallery in 21 Minutes - Video

Lullabot - Photo galleries with Views Attach

Tools für Images und Galleries

jQuery

jQuery LightBox Plugin

LyteBox

LightBox JS

PrettyPhoto - jQuery LightBox Clone

PrettyPhoto lightbox in Drupal

ThickBox

ColorBox

FancyBox

ShadowBox

Drupal - Wiki selbst erstellen

Drupal Modul Wikitools

Modules for building Drupal wikis

Imagexmedia - Corporate Wiki

Drupal Multimedia

GotDrupal - How To: Embedding media using SWF Tools module

Drupal Modul Flowplayer

Flowplayer - Video Player for the Web

Flowplayer - Configuration

SwfObject

Drupal Modul jQuery Media

Drupal Modul SWF Tools

1Pixelout Audio Player

Drupal Modul jQ (register jQuery plugins in a central repository)

Drupal Modul Embedded Media Field

Drupal Modul Blue Droplet Video

Drupal Modul Storage API

Drupal Multilingual - Sprachen (i18n)

Drupal Translations

Drupal German Translation

Drupal Translation (COM) - Mehrsprachige Drupal-Seiten betreiben (Tutorials - D)

Drupal Multilingual - Module und Tools

Modul Internationalization

Modul Localization Client

Modul Language Icons

Modul Translation Template Extractor

Modul Translation Helpers

Modul Translation Overview

Modul Consistent Language Interface

Modul Translation Table

Modul Translation Access

Modul Translation 404

Modul Select Translation

Modul i18n Redirect

Modul Localization Server

Drupal Modul Admin Language

Drupal Modul In-Place Translation

Drupal Modul Translation MenuSync

Modul Drupal-Pot (Translation Templates for Drupal Core)

Multilingual Variables

Menu Translation (Drupal 6)

Translating Menus and primary / secondary links

How to use i18n for menu link (D6)

GNU Gettext

GNU Gettext Manual - Format of PO-Files

GNU Gettext - Plural Forms

Drupal Programs to use for Translation

Lullabot.com - Screencast Installing Drupal Translation

Blogs, Trackback, Pingback allgemein

Wikipedia: Blogs

Wikipedia: Trackback

Software Guide - Was sind Trackbacks

Web Archiv - Was sind Trackbacks

Trackback Development

Trackback Technical Specification

Wikipedia: Pingback

Webmaster Coffee - Pingback

Pingback Spezifikation (D)

Pingback vs Trackback

Linkbacks - Trackback, Pingback, Refback

Wikipedia: Blogping

Jones - Great Big Giant List Of Ping Servers

Dev001.net - Receiving pingbacks using the PHP XML-RPC module

Dev001.net - Sending a pingback using the PHP CURL module

A Splash Of Insanity - PHP Pingback

Pingor - Small Pingback Client in PHP

Drupal Blogs, Trackback, Pingback

Drupal Module Blog - A Blog For Every User

Making user blogs more accessible

Drupal Module BlogAPI - Post From Blog Tools

Mastering Drupal - Pingback Module Screencast

Drupal Module Pingback

Drupal Module Trackback

Drupal Module Multiping

Jones - How To Ping Your Drupal Site

Jones - Drupal Multiping Module Is A Winner

Drupal Suche - Module und API

Drupal Handbook - Search: an internal site search system

Drupal Module zur Suche

Drupal API - search.module

Drupal Modul Porterstemmer

Drupal German Stemmer

Drupal Modul Core Searches (Core Search deaktivieren + Patch)

Drupal Modul Suppress Search (Core Search deaktivieren, kein Patch notwendig)

Drupal Modul Adjusti Search

Drupal Module SPARQL

Drupal Modul Faceted Search

Faceted Search vs Apache Solr

Drupal Modul Field Indexer

Drupal Modul CCK Facets

Drupal Modul Ranged Search for Faceted Search

Drupal - SPARQL for Developers

Drupal Modul Sioc

Exhibit - simile-widgets.org

Drupal Modul Exhibit

Getting Started with Exhibit using Drupal and Views

GotDrupal - How To: Add focused Drupal search to your site

Drupal Suche - Calais

Drupal Modul Calais

Drupal Modul RDF (Resource Description Framework)

ARC - RDF Classes for PHP

OpenCalais.com

OpenCalais - How Does Calais Work

OpenCalais - Viewer

SemanticProxy.com (OpenCalais)

Lullabot - Introduction to Calais

Calais Demo Screencast

Using Intelligent Web Services for Semantic Drupal Sites

Drupal Modul FeedAPI

Drupal Modul Calais Marmoset

Drupal Modul More Like This

Drupal Modul Topic Hubs

Easy RDF and SPARQL for LAMP systems

Drupal Suche - Apache Solr

Apache Solr - Wiki

Apache.org Solr

Solr PHP-Client

Apache Tomcat

SUN - Java Servlet Technology

SUN - JavaServer Pages Technology

Drupal Modul Apache Solr

Drupal Modul Apache Solr Statistics

Drupal Modul Apache Solr autocomplete

Drupal Modul Apache Solr Statistics

Drupal Modul Apache Solr RDF Support

Drupal Tutorial - Apache Solr Search Integration

Drupal Modul Exhibit

Smile.mit.edu - Exhibit

Smile.mit.edu - Beispiel Faceted Search

How To: Drupal Search using Acquia's Solr Service

Faceted Search vs Apache Solr

Drupal Semantic Web & Faceted Search

About Semantic Search - Web 3.0 for Drupal

Drupal Semantic Web Group

Drupal, the semantic web and search

Drupal Modul vCard

PEAR Package vCard Build

RDFa, Drupal and a Practical Semantic Web

RDFa in Drupal - examples and use cases

rdfa.info - RDFa in Drupal - Examples and Use Cases

Youtube - RDFa in Drupal - Examples and Use Cases

Dries Buytaert - RDFa and Drupal

Dries Buytaert - Drupal, the semantic web and search

Drupal Multi Site Installation

Übersicht Multisite Installation

Anleitung für Multi-Sites und Subdomains

Installing virtual Hosts for Drupal Sites and Subsites

Setup of /sites Directory for Multi-Site

Multi-Site without Subdomain - only Subdirectories

Dupal Multi-site with single Codebase, different Content Databases, shared User Database, shared Sign-on

Access all multisites with www. only (.htaccess)

Multisite und Rewrite (ohne .htaccess - in settings.php)

A more secure Drupal [multisite] Install (inkl. Symlinks)

Modul robots.txt für verschiedene rotbots.txt Dateien bei Multi-Site-Installation

Multi-Site Cron

Drupal Module Admintools - Managing Multiple Drupal Installations

Modul robots.txt für verschiedene rotbots.txt Dateien bei Multi-Site-Installation

GotDrupal - How To: Multisites vs. Multiple Sites

GotDrupal - Overview: Drupal CVS/SVN Setup

Drupal Modul Simpletest

Simpletest - Unit Testing for PHP

Drupal Modul SimpleTest

Modul SimpleTest - Setup and Configuration

Getting Started with Simpletest

Simpletest Tutorial

Drupal Simpletest API Functions

Drupal Simpletest Assertions

Doxygen - Simpletest D6 Documentation

Lullabot - A Drupal Module Developer's Guide to SimpleTest

PHP CURL Libraty

Drupal und Sicherheit

Drupal Modul Restrict Content

A more secure Drupal [multisite] Install (inkl. Symlinks)

Drupal Modul Captcha

Drupal Modul ReCaptcha

Drupal Modul ReCaptcha - Dokumentation

ReCaptcha Webservice

ReCaptcha PHP Library

Drupal Modul Login Security

Drupal Modul Persistent Login

Drupal Modul Password Policy

Drupal Modul Salt

Drupal Modul Phpass (Secure Password Hashes)

Drupal Modul PHPIDS

Drupal Modul http:BL (requires Protect Honey Pot Account)

Protect Honey Pot

Drupal Writing Secure Code

Drupal Modul Coder

Drupal Modul Security Scanner

Grendel Scan (Open-Source Web Aapplication Security Testing Tool

Drupal Modul Mollom

Drupal Handbook - Mollom

Mollom.com

Mollom.com - How Mollom works

GotDrupal - Module Review: Mollom

Drupal und SEO (Search Engine Optimization)

GotDrupal - How To: Drupal SEO using Nodewords for Meta tags

Drupal SEO Grundlagen (DevBee)

Basic Drupal SEO: On-site Optimization

How Duplicate Content Hurts Drupal Sites

SEO for Drupal

Drupal SEO in under 5 Minutes

Groups.Drupal SEO

SEO Screencast Teil 1

SEO Screencast Teil 2

SEO Screencast Teil 3

SEO Screencast Teil 4

SEO Screencast Teil 5 (XML Sitemap)

Drupal Modul XMLSitemap

Sitemaps.org

Sitemaps Format XML Datei

Google Webmasters Tools

Google Webmasters Tools - Sitemap Generator

A List Apart - Perfect 404 Page

robotstxt.org

Tipps zur robots.txt (Webdesign10)

Improved robots.txt for Drupal (Webdesign10)

Tipps von Drupal.org zu robots.txt

robots.txt Pattern matching (Wildcards)

Pebosi (NET) - Übersicht SEO Module für Drupal

Top SEO Modules

Module: Token (API) Voraussetzung u.a. für PathAuto

Module: PathAuto

PathAuto Tutorial

PathAuto Patterns that can be Dangerous

GotDrupal - Module Review: Pathauto

Drupal Modul Transliteration

Transliteration i18n-ascii.txt

Module: Global Redirect

Module: Path Redirect

Global Redirect Tutorial

Module: MetaTags (NodeWords)

MetaTags Tutorial

Module: RobotsTxt

Module: XML Sitemap

Module: SiteMenu

Module: Page Title

Seitentitel in Drupal optimieren (Page Title)

Module: Service Links (Social Bookmarks)

Module: Search 404

Module: URL List

Module: ALinks

Module: Related Links

Module: Similar Entries

Drupal Modul SEO Checklist

Google Webmasters - Sitemaps

Drupal - Performance

Server tuning considerations

Drupal Performance Tuning and Optimization for large web sites

Drupal Modul Boost

Boost 6.x: Static page caching for your website

Drupal Module - Neuigkeiten

drupal.org - New Modules

drupal.org - Modules RSS Feed

DrupalModules.com - New Drupal Modules

Drupal Groups - FAQs

Drupal Modul Context

Drupal Modul Context

Context - Video Tutorial

Drupal Modul Features

Drupal Modul Features

Features - Video Tutorial

Drupal Modul Deploy(ment)

Drupal Modul Deploy(ment)

Deployment - Video Tutorial

Drupal Groups - Packaging & Deployment

Deploy Documentation

Drupal Modul Services

Drupal Modul Services

Services Handbook

Drupal Groups - Services

Drupal Modul Rules

Drupal Modul Rules

GotDrupal - How To: Drupal Workflows & Automation (Rules)

Rules - Integrating Modules

Rules - Rule Based Action Execution (Drupal 6)

Rules - Tutorials

Drupal Groups - Rules

More.Zites.net - Rules - New Opportunity for Site Builders

Drupal User Group Hannover - Drupal Camp Modul Rules

Videos des Drupal Camp - Themen: Rules und Simpletest

Drupal Module Workflow, Actions, Triggers

Drupal Modul Workflow

Drupal Modul Modr8 (managing content in moderation)

Using the new Actions and Triggers functions in Drupal 6

Cocoate.com - Aktionen und Trigger

Drupal Handbook - Trigger: Assign actions to system events

Scribbledesigns - HowTo: Configuring Triggers and Actions in Drupal 6

Drupal Modul Triggerunlock

Drupal - Writing Triggers

Drupal - Writing Actions

Scotthadfield - Creating Custom Triggers in Drupal

Zzolo.org - A Quick Code Example of How to Create a Trigger

Drupal Module - Empfehlungen

Drupal Modul Administration Menu

Drupal Modul Admin Role

Drupal Modul Admin Language

Drupal Modul Teleport

Drupal Modul Devel

Drupal Modul Token

Drupal Modul PURL (Persistent URL)

Drupal Modul Diff

Drupal Modul Override Node Options

Drupal Module Real Name

Drupal Modul Permissions API

Drupal diverse Module

Drupal Modul License (associate license terms with nodes)

Drupal Modul Automatic Nodetitles (hide Title Field)

Drupal E-Commerce - Ubercart

Drupal Modul Ubercart

Ubercart.org

Ubercart.org - What is Ubercart

Ubercart.org - Documentation

Ubercart - Why use Drupal for E-Commerce?

Ubercart - Forum

Ubercart - Contributions (Module)

Ubercart - Live Sites

Ubercart - Livetest

Drupal Modul Recommender

Drupal Modul Ubercart Products Recommender

Drupal Modul Fivestar Recommender

Drupal Modul Ubercart CSV/Excel Export

Drupal Module Ubercart Product Quote

Drupal Module Ubercart Image Product

Ubercart Forum - Product Import

Drupal Modul Currency Exchange

Drupal Modul Money CCK Field

Drupal Modul CCK Currency

Ubercart European VAT (Value Added Tax - USt) Compatibility

Ubercart VAT/GST (Goods and Services Tax - MWSt): Overview

Drupal E-Learning

Drupal Modul Classroom

Drupal und Google Analytics

Google Analytics

Drupal Modul Google Analytics

Brian Stevenson - Drupal Google Analytics - Installing & Configuring

Brian Stevenson - Drupal Google Analytics - Configuring User Segmentation

Brian Stevenson - Drupal Google Analytics - Advanced Tracking

Brian Stevenson - Drupal Google Analytics - Advanced JavaScript Tweaks

Drupal und Google AdSense

Google AdSense

Drupal Modul AdSense

Drupal Modul AdSense Injector

Drupal E-Commerce - Kaufmännische Grundlagen

Yahoo Finance - Currency Converter

Yahoo Finance - EUR to USD

Börse Live (AT) - Währungen - Devisenkursblatt

Bankhaus Schelhammer und Schattera - Live Crossrates

European Central Bank - EUR to USD Exchange Rates

Forex Trading - Live Crossrates

Wikipedia - Kategorie Umsatzsteuer

Wikipedia - Innergemeinschaftliche Lieferung

Wikipedia - Innergemeinschaftlicher Erwerb

Wikipedia - Herkunftslandprinzip

Wikipedia - Bestimmungslandprinzip

Wikipedia - Lieferschwelle (Versandhandelsregelung)

Austria GV - Mediengesetz

Internet 4 Jurists - Mediengesetz

Internet 4 Jurists - Impressumpflicht

Internet 4 Jurists - E-Commerce Übersicht

Internet 4 Jurists - E-Commerce-Gesetz

Internet 4 Jurists - Konsumentenschutz

Internet 4 Jurists - Fernabsatzgesetz

Drupal und LDAP

Modul LDAP Integration

Modul LDAP Provisioning

Drupal LDAP: Integration with enterprise authentication systems

Drupal LDAP HowTo (Systemausfall.org)

Drupal PHP IDEs und XDebug

Eclipse PHP IDE (inkl. XDebug)

Komodo Edit IDE

XDebug.org

FireFox Addon - XDebug Helper

Developing for Drupal - Configuring Eclipse

Developing for Drupal - Xdebug debugger

XDebug - Documentation

Installing XDebug from Source (Video)

CDebug and Target Management for Eclipse (Video)

How To Setup a Free PHP Debugger using Eclipse PDT + XDebug

Debugging Drupal with XDebug and Eclipse

Using PDT + xDebug (for debugging Drupal projects)

Debugging Drupal or any PHP Application with XDebug and Eclipse PDT

Developers-Guide.net - Eclipse mit PDT + XAMPP mit Xdebug

Drupal Theming Grundlagen

Drupal Themes

Drupal 6 Theming Guide

Drupal - Anatomy of a Theme

Drupal Default Baseline Variables

Drupal Core Templates

Drupal Core Templates - PFD Cheat Sheet

Drupal PHPTemplate Theme Engine (inkl. Available Variables)

Drupal - Overriding Themable Output

Overriding Theme Templates in Drupal 6

Setting up variables for use in a template (preprocess functions)

Drupal - template.php - Overriding Other Theme Functions

Drupal API - Default Theme Implementations

Theme Garden

All Drupal Themes

Rapsli Drupal Themes

Mastering Drupal (Online Videos)

Felix Krusch Drupal Themes

Making settings available to the administration page

Advanced theme settings

Integrating color module

YAML für Drupal Template

Drupal Module Node Page Template

Drupal Modul PNG Fix (PNG Transparencx IE6)

jquery.pngFix.js PNG-Transparency for Windows IE 5.5 & 6

GotDrupal - How To: Drupal Theme Makeover

GotDrupal - How To: Unique Pages by Content Type (inkl. eigene Suggestions)

Drupal Theming Starter Kits

Adaptive Themes

Adaptive Themes - Genesis Tutorials

Adaptive Themes - Drupal Starter Theme Comparison

Drupal Theme Zen

Drupal Modul Zenophile

Drupal Modul Zenophile Extras

Drupal Modul Sub Theme Generator

Drupal Theme Genesis

Drupal Theme ATCK (Advanced Theme Construction Kit)

Drupal Theme Basic

Drupal Theme Beginning

Drupal Theme Blueprint

Drupal Theme Clean

Drupal Theme Flexible

Drupal Theme Foundation

Drupal Theme Framework

Drupal Theme Tendu

Artisteer.com - Web design automation product

Drupal Theming Code Snippets

Customising the user profile layout

Handling single-line profile fields

Drupal Panels & Co

Drupal Modul Panels

Panels 2 - Documentation

Panels 3 - Documentation

Creating a new front page with Views and Panels 3

Creating a custom layout in your theme for Panels 3

GotDrupal - How To: Drupal Panels

Blip.tv - Drupal: Panels 2 Screencast

Oregonstate.edu - Video Tutorial - Create a page using panels

Drupal Modul Composite Layout

Composite Layout - Documentation

Drupal - CVS (Concurrent Versions System) und SVN (Subversion)

Drupal Version Numbering

List of core branches and tags

Contributed Modules Status

CVS.Drupal.org

Drupal and CVS

Checking out Core from the Main Repository

Checking out from the Contributions Repository

Using CVS to Maintain a Drupal Site

Drupal Modul CVS Deploy

Drupal CVS Reference Guide for Module Maintainers

GotDrupal - Overview: Drupal CVS/SVN Setup

GotDrupal - Developer Know How: SVN Vendor Branching

GotDrupal - Quick Tip: SVN Filtering

Drupal CVS Quickref Sheet

Drupal CVS Cheat Sheet

cvsdrupal Script - Checkout and Maintain a Local CVS Repository

SVN - Subversion

Version Control with Subversion (SnvBook.Red-Bean)

Drupal and Subversion

How to install and config Drupal 6 via CVS and SVN

Drupal - Patches

Drupal - Applying patches

Drupal - Applying a patch manually

Drupal - Reversing Patches

Applying Patches to Drupal Core (Video)

Drupal - Drush (Command Line Shell and Unix Scripting Interface for Drupal)

Modul Drush

Drush Screencast 1 - Installing And Getting Started

Drush Screencast 2 - Using the drush dl and info commands

How to use Drush Locally with MAMP

Drush - Modules Using Drush

Drush - Readme

Modul Features

Modul Drush System Manager

Modul Recommender

Modul Browsing History Recommender

Modul Ubercart Products Recommender

Drupal Tipps und Tricks

MySQL BigDump - Import Huge SQL Dumps

Drupal - Import MySLQ Dump with BigDump

Drupal Troubleshooting

Troubleshooting FAQ

Blank pages and missing content

The White Screen Of Death (completely blank page)

Blank Modules Page - Memory Limit

Drupal Developer Tools

Drupal Modul Devel

Hidden Drupal development functions (dpr, dvr, dpm, dvm)

Firefox Addon - Drupal for Firebug

Drupal Modul DrupalForFirebug

Firefox Addon - Firebug

Firefox Addon - Drupal for Firebug

GotDrupal - How To: Drupal debugging with Devel

BackPackit - Debugging Drupal (Devel, Firebug)

Drupal Modul Coder

Doxygen Source Code Documentation Generator

Drupal Modul API

Drupal Modul Schema

Drupal Module Development (API)

GotDrupal - Video Series: Building Drupal Modules - Getting Started

Creating Drupal 6.x modules

Creating modules - a tutorial: Drupal 6.x

Writing .info files (Drupal 6.x)

Writing .install files (Drupal 6.x)

Drupal API Reference

Drupal API - Hooks

Drupal API - Themable Functions

Drupal API - Hooks

Core hooks cheat sheets

Drupal Schema API

Drupal hook_schema und Modulupdates

Drupal Modul Deadwood (Convert Modules 5.x to 6.x)

Boombatower.com (Convert Modules)

Drupal Form API

Drupal Forms API - Quickstart

Drupal Forms API - Quickreference

Drupal Forms Generation API - Overview

Drupal Unit Testing

Selenium IDE (Testing)

Firefox Addon Selenium IDE (Testing)

FireFox Addon - XDebug Helper

Drupal Modul Simpletest

Drupal Code Snippets

Drupal Code Snippets

Drupal Beginner's Guide To Using Snippets

Drupal Theme Code Snippets

Drupal PHP Code Snippets

Drupal PHP Code Tags

Drupal Writing Secure Code

Expression Engine (pMachine)

Expression Engine

Expression Engine - Deutsche Userseite

Expression Engine - Tutorials

Expression Engine Tutorial (by Leo and Meg)

Expression Engine Tutorial Help (5pieces.com)

YAML für Expression Engine

YAML (Yet Another Multicolumn Layout) für Expression Engine

Joomla

Joomla (org)

Joomla Home (D)

Joomla Grundlagen (D)

Wiki Books - Joomla (D)

Joomla Forum (D)

Joomla Templates (D)

Joomla Wiki Books (D)

Joomla Extension für Dreamweaver

Joomla Developer Network

Joomla Developer Network - Development Wiki (Anleitungen Extensions etc.)

Joomla API Reference (Framework Reverence)

Joseph L. LeBlanc - Joomla Tutorials

Joomla Portal Schweiz

Remository - Mambo-Joomla Components

Joomla Resource (Download Components, Templates and more)

Joomla Equipment (Professional Equipment for Joomla)

Joomla At Work (Components and Services)

YAML für Joomla

YAML für Joomla Template

JYAML - YAML Joomla Template Framework

TYPO3

Typo3 (org)

Typo3 (com)

Typo3 (net) (Deutsches Portal)

Typo3 User Group Austria

Suchmaschinenoptimierung

WebMasterCoffee (COM) - Analyse von Homepages (Techniken, Editor, Fehler, Keywords)

TouchGraph (COM) - Verlinkung von Homepages feststellen

Google Webmasters Central (E)

Google Webmaster Zentrale (DE)

Google Webmaster Zentrale - Blog (DE)

WebmasterWorld.com

WebmasterWorld.com - SEM (Search Engine Marketing) Topics

Suchmaschinentricks (DE)

SEO Freak (DE)

Google AdWords - Keyword Tool

Ranking Check - Keywords und Suchbegriffe analysieren

Lower Your Bid Price - Top 100 Keywords

Keyword Datenbank (DE)

Overture - Keywordsuche

Metager - Keywordsuche mit Assoziationen

LinkVendor.de - Professionelle SEO Tools (gratis)

SEO Company - Free SEO Tools

SEO Company - Keyword Tool

SEO Tools - Keyword Density

SEO Keyword Density Tool

Google Support - Erstellen und Einreichen von Sitemaps

Google Support - Sitemap Protokoll

Sitemapdoc.com - Sitemap automatisch erstellen lassen (HTML, XML, Google Sitemap)

LinkVendor.de - Linkpopularität

LinkVendor.de - Domainpopularität

WebArchive.org - alte Versionen von Homepages finden

SPIXX Suchmaschinen Preisindex für Klicks auf Werbeschaltungen

Suchmaschinenmagazin

SearchEngineWatch.com

Robotstxt.org - The Web Robots Page

Robots.txt Generator

Sistrix Suchmaschineoptimierung und Consulting

Abakus Internet Marketing / Forum

PR Page Ranking Tipps

Herold - Tipps zur Webseitenoptimierung / Keywordrecherche

KSO - Das Suchmaschinentutorial

Semantic Web

Grundlagen

Wikipedia - Semantisches Web

DigitalBazaar.com - Semantic Web Intro

W3Schools.com - XML Tutorial

W3C - XML (Extensible Markup Language)

Wikipedia Graphentheorie

Initiativen

DBpedia.org

dbpedia.org - SPARQL

Freebase.com

Metaweb.com

Triplify.org

Triplify.org - Documentation

Triplify.org - Configuration

PURLs (Persistent Uniform Resource Locators)

Linked Data (org)

Linked Data Grafik (klickbar)

OpenCalais.com

Tools

Exhibit - simile-widgets.org

Yahoo - Search Monkey

SearchMonkey: Developer Overview

SearchMonkey: Site Owner Overview

Explore Semantic Web Data with VisiNav

Microformate

Microformate (microformats.org)

microformats.org - Elemental Microformat

microformats.org - Compound Microformat

Microformats.org - hCard Specification

microformats.org - hCard Creator

microformats.org - hCalendar Creator

geekhood.net - hCard Validator

microformats.org - cReview Creator

microformats.org - Product microformat explorations

imc.org - PDI (Personal Data Interchange)

imc.org - PDI vCard

gmpg.org - Global Multimedia Protocols Group

gmpg.org - XFN Creator

Firefox Addon Operator (Leverage Microformats)

Firefox Addon Tails Export (Showing and Exporting Microformats)

Dublin Core

DublinCore.org

DublinCore.org - Metadata Element Set

Expressing Dublin Core metadata using the Resource Description Framework (RDF)

Expressing Qualified Dublin Core in RDF / XML

FOAF - Friend Of A Friend

FOAF - Friend Of A Friend

FOAF - Documentation

FOAF-a-Matic (Generator)

RDF - Resource Description Framework

Wikipedia - RDF (Resource Description Framework)

RDF:about (rdfabout.com)

RDF:about - Quick Intro to RDF

RDF:about - RDF in Depth

Talis.com - An Introduction to RDF

DigitalBazaar.com - RDF Basics

W3C - RDF

W3Schools.com - W3C RDF and OWL Activities

W3Schools.com - RDF Tutorial

Wikipedia - N-Triples

Wikipedia - Turtle Syntax

W3C - RDF Primer — Turtle version

Wikipedia - RDF/XML

W3C - RDF/XML Syntax Specification

W3C - RDF Schema

W3C - RDF Validator

RDF:about - RDF Validator

RDFa - Resource Description Framework in Attributes

Wikipedia - RDFa

W3C - RDFa Primer

Wikipedia - CURIE (Compact URI)

W3C - CURIE Syntax

W3C - Representing vCard Objects in RDF/XML

Youtube - RDFa Basics Video

Firefox Addon Fuzzbot (detect embedded semantic Information)

Firefox Addon - Fuzz (Semantic Web Processor)

Youtube Fuzzbot RDFa Video Vocabulary Demo

RDFa Wiki

RDFa Recipes

Embedding RDFa in HTML 4 Documents

SPARQL - Query Language for RDF

Wikipedia SPARQL

W3C - SPARQL Query Language for RDF

W3C - SPARQL Query - Operators

W3C - SPARQL Query Results XML Format

SPARQL - FAQ

dbpedia.org - SPARQL

dbpedia.com - SNORQL (Frontend für SPARQL Anfragen)

OWL - Web Ontology Language

Wikipedia - Web Ontology Language (OWL)

W3C - OWL Guide

W3C - OWL Guide - Example wine.rdf

SIOC - Semantically-Interlinked Online Communities

Wikipedia: SIOC (Semantically-Interlinked Online Communities)

Sioc-Project.org

SIOC - OWL in RDF/XML Syntax

Faceted Search

Wikipedia: Faceted Search

Frameworks

Paget - Linked Data Publishing Framework

Paget - Basic Concepts

Paget - Getting Started

ARC - Easy RDF and SPARQL for LAMP systems

Literatur

Faceted Search

Semantic Web - Matthias Geisler

Semantic Web for Dummies

Programming the Semantic Web

Geo URL - Geokodierung, Georeferenzierung

Wikipedia Geokodierung

MeineErsteHomepage.com - GeoURL Anleitung

GeoURL.org

GeoURL.info

IPligence - Tools and resources for ip location of addresses

Firefox Geo Extension

GIMP

Gimp.org

Gimp.net

Tutorials

Gimp Handbuch online

GIMP Users (D)

GIMP Forum (D)

Wikipedia: RGB Farbmodell

Wikipedia: HSV Farbmodell

Wikipedia: CMYK Farbmodell

Wikipedia: Komplementärfarbe

Wilber's GIMP Wiki

Tools, Filter, Plugins

GIMP Plug-In Registry

Liquid Rescale GIMP Plugin

EXIF Tool by Phil Harvey

Dafont.com (Schriftarten - Free for personal Use)

PHP

PHP Manual Online

PHP Manual Funktionsreferenz nach Funktionsgruppen

PHP Manual Funktionsreferenz alphabetisch

PHP Manual php.ini Einstellungen

PHP Manual Extension Kategorisierung

PHP Manual Reservierte Wörter

PHP Manual Vordefinierte Variable

PHP Manual Vordefinierte Core-Konstanten

PHP Manual Magische Konstanten

Einrichten einer Testumgebung (Apache, PHP, MySQL)

PHP für Einsteiger (ASN Graz)

Killer PHP - Videoschulungen für Einsteiger (englisch)

PHP Schulung (ASN Graz)

Learning PHP (ASN Graz)

Buromat (DE) - PHP Tipps

Schattenbaum.Net (PHP Kurs Selbstudium)

SelfPHP (ASN Graz)

PHP Forum Deutschland

PHP Classes

PHP Archiv

PHP-Welt

PHP free

PHP Skriptarchiv

PHP FAQs der Newsgroup de.comp.lang.php.com

PHP Häufig benötigte Codeschnipsel de.comp.lang.php.com

PHP Häufig benötigte Standardskripte de.comp.lang.php.com

QuakeNet PHP Tutorial (ASN Graz)

PHP Einführung

PHP Deutschland

PHP Center Deutschland

PHP Resource Deutschland

PHP - The Website

PHP Everywhere

PHP Freaks

The PHP Resource Index

PHPGuru.org

PHP Magazine

PHP 5 Data Object (PDO) Abstraction Layer and Oracle

DevShed.Com (ASP, PHP usw.) (inkl. Foren)

Zend.com - Tutorials PHP, MySQL, XML etc.

Builder.Com - PHP Course

PHP Builder - Articles and Code Library

PX - The PHP Code Exchange

PHP Libraries - Freshmeat.net

PHP Libraries - The Horde Project

PHP Libraries - The Horde Project FTP Site (inkl. Pear Library)

PHP Designers

PHP Shop Organization

PHP Wizard Net

Programmieren mit PHP: Lerdorf, Tatroe (Beispiele Buch)

PEAR Library

PEAR Library

PEAR Library - Manual (Englisch)

PEAR Pakete Installation (Go-Pear)

PEAR Center Deutschland

PHP - XML-RPC

Wikipedia - XML-RPC

PHP Manual - XML-RPC

XML-RPC Homepage

Sourceforge - XML-RPC for PHP

Pear - XML_RPC

Spezielle PHP Funktionen

PHP DOM Functions

PHP XML Functions

PHP JSON Functions

PHP und Sicherheit

Owasp.org - Open Web Application Security Project

PHPSec.org- PHP Security Consortium

PHP Security Scanner

Chrorizo Security Scanner

ModSecurity.org - open source web application firewall (WAF) Apache module

PHP.net - Security (Deutsch)

I Love Jack Daniels - Writing Secure PHP

PHP Hardened Project

PHP Hardened Project - Suhosin

Web Application Security

Top 7 PHP Security Blunders (Kunstfehler)

PEAR Package HTML_Safe

PHP IDEs

Eclipse - IDE (allgemein)

Eclipse - PDT - PHP Development Tools

MySQL JDBC Driver für Eclipse

PHP Debugger für Eclipse

PHP Eclipse (DE)

PHPBar (DE) - Eclipse Grundlagen

Admin Wissen - Eclipse Workshop

CH Becker (DE) - Eclipse How To

PHP versus .NET

PHP vs .NET - Top 10 Myths

PHP vs .NET - Top 6 Reasons to Use .NET

Reguläre Ausdrücke (Regular Expressions)

Wikipedia Reguläre Ausdrücke

Regular Expression Cheat Sheet

Regular Expression Library

Programmierung - Reguläre Ausdrücke

PHP Manual: Reguläre Ausdrücke Funktionen (Perl-kompatibel)

SELFHTML: CGI/Perl / Perl-Sprachelemente / Reguläre Ausdrücke

Regular Expressions Info

Learning To Use Regular Expressions

Regular Expressions - How To

Steve Ramsay's Guide to Regular Expressions

A Tao of Regular Expressions

Regular Expressions - Tutorial

Reguläre Ausdücke - Uni Hamburg

Regular Expression Cheat Sheets

Regular Expression Cheat Sheet - I Love Jack Daniel's

Perl Regular Expression Quick Reference

Regular Expression Cheat Sheet (.NET)

RSS

RSS in Wikipedia

RSS Verzeichnis

RSS Scout

Dr. Web - Content Syndication mit RSS

Dr. Web - RSS: XML Datei selbst gebaut

RSS Ecosystem

RSS Writer

Feed Validator for Atom and RSS

Apache

Apache Installation (Windows, Linux) (inkl. httpd.conf)

Apache Setup (Windows)

.htaccess FAQ

.htaccess Zugangskontrolle

.htaccess (Dr. Web)

Apache Dokumentation (Deutschland)

Ask Apache (COM)

Apache (Deutschland)

Apache Friends (Deutschland)

Apache Week

ModSecurity.org - open source web application firewall (WAF) Apache module

Wikipedia - Punycode (Umlaute für VHosts)

Punycode Converter Tool

Apache und mod_rewrite

http://www.modrewrite.de/

http://httpd.apache.org/docs/mod/mod_rewrite.html

.htaccess Editor Online

Comprehensive Guide to .htaccess

http://www.sitepoint.com/article/guide-url-rewriting

http://www.devshed.com/c/a/Apache/Search-Engine-Friendly-URLs-with-mod-rewrite/

http://www.yourhtmlsource.com/sitemanagement/urlrewriting.html

http://robert-ionescu.de/giga-faq/faq/internet/homepage/mod-rewrite.html

Apache und SSL

Ask Apache (COM) - https/SSL Tricks

Ask Apache (COM) - SSL in htaccess Examples

Apache Solr

Apache Solr - Wiki

Apache.org Solr

Solr PHP-Client

Apache Tomcat

SUN - Java Servlet Technology

SUN - JavaServer Pages Technology

Apache Projects

Apache Forrest - Open Source Publishing Framework

Apache Cocoon

Spring Framework

LDAP - Lightweight Directory Access Protocol

LDAP Grundlagen

LDAP Wikipedia

Linupedia - LDAP

Open LDAP (ORG)

LDAP Browser

Verzeichnisdienst (DE) - LDAP Produkte

JXplorer LDAP Browser (Herstellerseite)

SourceForge - JXplorer LDAP Browser

Apache und LDAP

Apache Module mod_authnz_ldap

Apache 2.2 gegen LDAP authentifizieren

Mit Apache 2.2 an einem Windows ADC authentifizieren

PHP und LDAP

PHP Manual - Lightweight Directory Access Protocol

WikiBooks - PHP und LDAP

Heise - Zugriff auf LDAP-Daten mit PHP

PHP Loginscript für (LDAP) Activedirectory Benutzer

Using PHP with LDAP (Part 1)

Using PHP with LDAP (Part 2)

SQL

SQL Tutorial (Schulserver Hessen)

SQL Tutorial (Deutsch)

SQLCourse.com

SQL Live Kurs

SQL Tutorial (W3Schools)

SQL Zoo (inkl. "Eigenheiten" der verschiedenen Datenbanken)

SQL interaktiv lernen

SQL interaktiv lernen - Abfragetool

MySQL

MySQL 5.1 Reference Manual

MySQL 5.1 Referenzhandbuch

MySQL Systemvariable und Konfiguration

MySQL Error Codes

MySQL.COM

MySQL Developer Zone

MySQL Downloads

MySQL Dokumentation (Englisch)

MySQL.DE

MySQL Basics (Tutorial)

MySQL Datenbankhandbuch

MySQL Tutorial (Webmonkey)

MySQL - Programmierung (DevShed)

Datenbank, MySQL und PHP (ASN Graz)

MySQL and PHP: Functions

MySQL and PHP: Code Examples

PHP und MySQL: Kevin Yank (Beispiele Buch)

MySQL Dumper (DE) - Datenbanken per Cronjob automatisch sichern

MySQL Dumper (DE) - Video Tutorials

MySQL BigDump - Import Huge SQL Dumps

PostgreSQL

PostgreSQL.org

PostgreSQL.org - Download

Enterprise DB (com) - PostgreSQL Linux Download

Enterprise DB (com) - PostgreSQL Installation Guide

Wikipedia: PostgreSQL

Postgres.de

Planet PostgreSQL (org))

SQL Info (de) - PostgreSQL

Youtubte - PostgreSQL installation

Postgres Video Tutorials

Show Me Do (com) - Postgresql Videos, Tutorials and Screencasts

PHP PostgreSQL Functions

XML

W3C XML

XML Dokumentation

XML - Extensible Markup Language

XML FAQs

Oasis Open - XML

XML.COM O'Reilley

Webdeveloper's Guide to XML

SelfXML Forum

Builder.Com - XML Course

Microsoft - XML and MS-Office

XML - Literatur und Links

XML and Databases

PHP XML Functions

Open XML Editor

JSON - JavaScript Object Notation

JSON.org

json.js

JSON in JavaScript

PHP Funktionen für JSON

JavaScript und DOM

SELFHTML - JavaScript und DOM

JavaScript - Eventhandler, Eventlistener etc.

W3C DOM

JavaScript Event Compatibility Tables

JavaScript Source

JavaScript Einführung von Pastor Pixel

Java24.Net

Free Online Web Tools and Free Code Generators

X-Tools for Webdesign

DHTML Now - Die Quelle für JavaScript und DHTML

Scripts.org - Datenbank mit JavaScript-Bespielen

GeoCities JavaScript

Dietmar Rabich JavaScript (inkl. CSS)

Stefan Koch JavaScript

Bellnet - Links zu JavaScript Seiten

PHP DOM Functions

AJAX und AJAX Frameworks

AJAX

AJAX Wikipedia

AJAX Lessons

A List Apart - Getting Started With AJAX

AJAX Scripting

BorkWeb - Ajax: Templating and the Separation of Layout and Logic

AJAX World Magazine

AJAX Tutorials Dr. Web

AJAX Quellensammlung Dr. Web

AJAX Community Deutschland

AJAX Mozilla Developer Center

AJAX Getting Started (Deutsch)

Learn AJAXin 20 Minutes

xAjax Library - Applications with PHP

AJAX schnell + kompakt - Christian Wenz - entwickler.press Buch-Update

AJAX Literatur

Praxiswissen AJAX

AJAX - Grundlagen, Frameworks und Praxislösungen

AJAX und PHP - Interaktive Webanwendungen für Web 2.0

AJAX Frameworks

Prototype

Particle Tree - Quick Guide To Prototype

Prototype API Documentation

Developer Notes für Prototype

Overview of the Prototype Javascript Library

Sitepoint - Painless JavaScript Using Prototype

Prototype JS Documentation (inkl. Beispielanwendungen)

Prototype Cheat Cheets

Prototype in Scriptaculous Wiki

Script.Aculo.Us

Script.Aculu.Us - Demos

Behaviour - Better smarter JavaScript

Sarissa - Cross Browser XML Framework

Sarissa - Download (Sourceforge.net)

DOJO- Open Source DHTML toolkit written in JavaScript (incl. Widget Rich Text Editor)

DOJO - Manual

Turbo AJAX (DbAdmin, Widgets, Studio etc.)

Turbo AJAX DbAdmin

SAJAX - AJAX Toolkit for PHP

MOOTOOLS - A modular object-oriented JS Framework

MOO.FX - JS Effects Library for Prototype or MOOTOOLS

Lightbox - Script to overlay images on the current page

Zimbra

Zimbra - Kabuki Ajax Toolkit (AjaxTK) Download

Tiny Ajax - php5 library to add AJAX-functionality

AJAX Agent - framework for building Ajax or Rich Internet Applications

Rico - JavaScript for Rich Internet Applications

Google Earth API

Google Maps API

Google Maps API Version 2 Documentation

Mapki - Knowledge Base (Code Snippets)

Mapki - Get Longitude & Altitude

Virtual Earth Poly Map - Code Examples

Schockwellenreiter - Google Maps Tutorial

Uni Erlangen - Anleitung zum Erstellen von Google Karten

Ubuntu

Ubuntu - Linux for human beings

Kubuntu (Ubuntu + KDE)

Ubuntu Users Deutschland

Ubuntu Forum Deutschland

Ubuntu Blog Deutschland

Ubuntu Gruppe Österreich

Ubuntu Guide (Deutsch)

About Linux - Video Tutorials Ubuntu (Deutsch)

Open SUSE

Open SUSE (Deutsch)

Linupedia (ORG) - Open Suse Support Wiki

Open SUSE Dokumentation

Google Linux

Open Suse Software Search

RPM Find Net - RPM Pakete finden

RPM Seek Com - RPM Pakete finden

RPM PBone Net - RPM Pakete finden

PackMan Repositories

PackMan Repositories - Wie installiere ich Softwarepakete

PackMan Repositories - Mirrors

Open Suse Additional YAST Packages

LiveCD - Rescue System mit gParted

SystemRescueCD mit gParted

Linux - Allgemein

Linux Haven - How To

SELFLinux (Deutschland)

Linux Anwender Handbuch (Deutschland)

GNU/Linux Handbuch (Deutschland)

Linux Fibel (Deutschland)

Open School Server (Deutschland)

Linux Uni Tübingen (Deutschland)

Linux Dokumentationen (Deutschland)

Linux User FAQ (Deutschland)

Linux für Webworker

Linux Web (DE)

Linux Praxis

Linux in Österreich

Linux (Deutschland)

Linux Magazin (Deutschland)

Pro Linux (Deutschland)

Linux User (Deutschland)

Linux für alle (Deutschland)

Linux Beginner (Deutsch)

Linuxliste - Entsprechungen von Windows-Software gegenüber Linux

Root Forum - Technische Fragen zu dedizierten Servern

Linux, Windows (Server) - Datenaustausch

Wine Wikipedia

WineHq

WineHq Wiki

Lullabot - Command Line Basics: Moving around

Lullabot - Command Line Basics: Copy, Move, Delete

Linux - Literatur (online)

Literaturübersicht (OpenSuse.Org)

GPL kommentiert und erklärt

Linux - dustributionsunabhängiges Handbuch

Linux - Wegweiser zur Installation & Konfiguration

Linux - Wegweiser für Netzwerker

Sicherheit im Internet, 2. Auflage

Mit Open Source-Tools Spam & Viren bekämpfen

Samba, 2. Auflage

Das Linuxbu.ch online

Linux-Firewalls - Ein praktischer Einstieg, 2. Auflage

Linux Distributionen

Suse Linux (Deutschland)

Redhat Linux

Redhat Linux (Deutschland)

Debian Linux (Deutschland)

Gentoo Linux (Linux selbst zusammensetzen)

Mandrake Linux (Deutschland)

Slackware Linux

Easy Linux (Deutschland)

Devil Linux (Firewalls)

DSL - Damn Small Linux

The Official Damn Small Linux Book

Open Office

Open Office (Org)

Open Office (Org, D)

Open Office - Dokumentation und Handbücher

Open Office Wiki

Übersicht

Übersicht Calc

Übersicht Impress

Übersicht Base

Übersicht Draw

Übersicht Math

Open Office Writer

Übersicht Writer

Writer Anleitungen

Writer Kapitelnumerierungen

Writer Schnelles Inhaltsverzeichnis

Buromat (DE) - Writer Tipps

E-Learning

Videoschulungen - Screencasts

Too Brain (COM) - Deutsch

Open Web School (DE)

Common Craft (COM) - Expert Knowledge in Plain English

ScreenCast (AT)

Lern2Use (DE)

Open Screencast (DE)

Screencast Service (DE)

Screencast (COM) - Tech Smith

Screencast Tools

JingProject - Capturing Software (Free)

CamStudio - Open Source Streaming Video Software

Screencast-O-Matic (Free Online Java Tool)

Debugmode Wink - Freeware

TechSmith - Camtasia, SnagIt (Commercial)

Camtasia 5 Schulungsvideos

Camtasia 4 Schulungsvideos

E-Learning Plattformen

E-Learning 2.0 (DE)

Lernplattform des Bildungsnetzwerkes Burgenland

Linkmatrix.de - Open Education Lernprogramme

Virtuelle Schule (AT)

TeachPapers (DE)

Moodle

Moodle (org)

edu Moodle (at)

e-LISA Moodle Einführung

SCORM - Sharable Content Object Reference Model

SCORM - Wikipedia

What is SCORM

SCORM Tools allgemein

Moodle - SCORM/AICC Modul

Advanced Distributed Learning

Reload - Reusable eLearning Object Authoring and Delivery

Reload - SCORM Player

eXe - eLearning XHTML Editor (SCORM Packages)

Web 2.0

Grundlagen Web 2.0

Wikipedia: Web 2.0

Anleitung für Web 2.0

ZDNet Video - What is Web 2.0?

ZDNet Video - Web 2.0 @ Work

ZDNet Video - Sales 2.0

Wikipedia: Mashup Internet

ZDNet Video - What is a Mashup?

ZDNet Video - Enterprise Mashups

Mashup Music Video

YouTube: Mashup

Videos und Multimedia

You Tube (COM)

Google Video (DE)

Google Video (COM)

Digg (COM)

OOSAH (COM)

Fotos

Flickr (COM)

Picasa( COM)

Picasa (DE)

Foto Log (COM)

Zooomr(COM)

Foto Community (DE)

Seven Load (COM)

View Fotocommunity (Stern) (DE)

Tabblo (COM)

Fotola (COM)

Webshots (COM)

Social Networks

Flock (COM) - Browser für Social Network Kontakte

Facebook (COM)

Studivz (NET)

Twitter (COM)

XING (COM)

Zooomr (COM)

Kaioo (COM)

My Space (COM)

My Space (DE)

One View (DE)

Drop (IO) - File Sharing (100 MB Webspace)

Social Boookmarks

Del.Icio.Us

Del.Icio.Us - Tutorial (D)

Digg (COM)

Mister Wong (DE)

Net Selektor (DE)

Social Bookmark Script (DE)

Social Bookmark (EU) - Script

Coolix (COM) - Social Bookmark Tool

Tools und Anwendungen

Mash Maker (COM) - Inhalte von Websites verbinden (Intel)

Trigg It (COM) - Werbungen auf eigener Website verwalten

Sprout (COM) - Flash Websiten erstellen

Gaia (COM) - Flash Framework

Highlighter (COM) - Dokumente im Team bearbeiten

Trip It (COM) - Reisen im Internet planen

Tungle (COM) - Outlook Add-On Termine koordinieren

Springnote (COM) - Kalender und Notizen

Tungle (COM) - Outlook Add-On Termine koordinieren

Google Docs (COM) - Office Anwendungen online

Mind Meister (Online Mind Map Tool)

Weblogs

Blog Anbieter

Blogger (COM)

Live Journal (COM)

Serendipity Weblog System

Serendipity (Dr. Web)

Blogservice 1on.de (kostenlos)

Blogstart (D)

Wikis

Wikipedia

Stupidedia

Kamelopedia

Web 2.0 im Unterricht

Schule 2.0 (DE)

Slideshare (NET)

BonToura (DE) - Webseiten Fragengenerator mit Antwortmöglichkeiten

Webdesign Tools

DrWeb.De - Tipps und Tricks

KommDesign - Design-, Ergonomie und Navigationsempfehlungen

Named Colors - 1

Named Colors - 2

Named Colors - 3

Named Colors - 4

Color Match (zusammenpassende Farben)

GUIStuff

Button Generator

Web Page Design for Designers

E-Commerce and Web Design

Zampanos Animated Gifs

Animation Library

3D Ressource (Nahtlos Kacheln Photoshop)

Web-Symbole

Icon-Bazaar

Gif-Gallery Deutschland

Clipart.Com

MS Clipart-Gallery

Clipart.Com

Nirvana Media

Symbols.com

GifsWorld.de

Webmonkey

CoolHomepages.com

EDV-Literatur - Verlage

Packt Publishing (PDF Books)

Galileo Computing

Addison-Wesley

dpunkt.verlag

entwickler.press

Hanser Verlag

O'Reilley

mitp-Verlag

EDV-Unterricht

ASN Informatikserver Graz

ITYCO - Copyrightfreie EDV-Lehrmittel

Klick Dich Schlau

Lehrer Online - Unterrichtsmaterialien, Tutorials, Tools etc.

Office Online Schule (Deutschland)

Herbers Excel Server (Deutschland)

Access Home (Deutschland)

Free Access (Deutschland)

The Access Web

IBM Mentor Place - Projektbetreuung

Projektarbeiten - Richtig zitieren

The Secret Guide to Computers

IT Wissen (Grundlagen HW, Netzwerke etc.)

Projektmanagement

Projektplanung Grundlagen

Projektmanagement Handbuch - Online

Projektmanagement - Wikipedia

Netzplantechnik - Wikipedia

Projektplanung Software

Open Workbench - Open Source Project Scheduling for Windows

OpenProj - Free Open Source Alternative to MS Project for Windows

Gantt Project - A free Gantt chart based project scheduling and management tool

Gantt Charts

Gantt Chart - Wikipedia

Open Office Projektmanagement mit Gantt Charts (Calc)

Microsoft Excel - Gantt Template (inkl. Video)

Software Projektmanagement

Applied Software Project Management

Applied Software Project Managemen - Software Project Plan

Applied Software Project Managemen - Project Schedule

Mindmap Software

Free Mind

Mind Meister (Online Mind Map Tool)

Netzwerktechnik

IP Calculator

Netzwerk Total - Das Netzwerkportal

Netzmafia

Netzwerk total (DE)

Schaumburger Computer Club

Elektronik Kompendium Deutschland

Microsoft TechNet - Netzwerke

IT Wissen (Grundlagen HW, Netzwerke etc.)

Tutorials

Tutorials.de

DrWeb.De - Tipps und Tricks

ASN Informatikserver Graz

Lehrer Online - Unterrichtsmaterialien, Tutorials, Tools etc.

Traum Projekt (Tutorials Dreamweaver, Photoshop, Fireworks, PHP etc.)

E-Learningcenter.com - Free Online Courses (HTML)

SELFHTML - Online

Informit (DE)

Education Online (MS-Office, Dreamweaver, Photoshop, Flash...)

Tutorialzone (DE)

ForWebmaster (DE)

School for (D)HTML, CSS, Scripting, ASP, Flash,...

Flash Übungen und Anleitungen Step by Step: E-Teaching Austria

Bernd Zimmermanns Internet- und WWW-Kurs

ZDNet Learning CDs

Webmaster Welt

Webdeveloper.Com

Webreference.Com

Flash School Deutschland

Webdesign Tutorials (Dreamweaver, Fireworks, Photoshop, CSS etc.)

Firefox

Firefox (Mozilla Homepage)

Erweiterungen

Add-Ons

Computer Lexika

Netlexikon

EDV-Lexikon Martin Vogel

Networds

Computer Glossar

Online Computer-Zeitschriften

PC Magazine (Englisch)

PC Welt

Chip

ZDNet

Internet Professionell

PC Professionell

PC Magazin (Deutsch)

Google Übersicht Online Computer-Zeitschriften

Wörterbücher

Wörterbüch Info (inkl. Sprachausgabe!)

LEO Deutsch - Englisch

Dict.cc Deutsch - Englisch

Beolingus TU Chemnitz Deutsch - Englisch

Free Dic - Deutsch - Englisch

Provider

Hetzner (Deutschland)

NANET (Österreich)

Diverses

Dr. Web - Cheat Sheets

Sound Snap (com) - Gratis Sounds

Viren Hoaxes (Falschmeldungen) - TU Berlin

Link Scanner (Websites auf Viren & Co prüfen)

SysInternals (COM) - Microsoft Troubleshooting

Prozesse in Windows NT/2000/XP

EMail Address Verification

ProgrammersHeaven.Com

Free.net - Download Portal

HotScripts.Com

Tu-Dogs

Internet Speed Test

Spick mich - Lehrerbeurteilungen

Layout based on YAML