[ SPEL ] Wat zit er onder CTRL+V?

Praat mee over van alles en nog wat!
Forumregels
Dit forum is voor alle zinnige gesprekken buiten phpBB om. Discussies en gesprekken over interessante onderwerpen.

Een nieuw onderwerp moet..:
  • uiteraard voldoen aan de algemene voorwaarden
  • niet passen in de gewone supportfora
  • interessante zijn voor het overgrote deel van onze gebruikers
  • een neutrale of positieve ondertoon hebben
  • anders zijn dan bestaande onderwerpen
Jay17
Berichten: 56
Lid geworden op: 22 mar 2005, 18:51
Contacteer:

Bericht door Jay17 » 16 jan 2007, 10:55

Artikel 138.
1. Hij die in de woning of het besloten lokaal of erf, bij een ander in gebruik, wederrechtelijk binnendringt of, wederrechtelijk aldaar vertoevende, zich niet op de vordering van of vanwege de rechthebbende aanstonds verwijdert, wordt gestraft met gevangenisstraf van ten hoogste zes maanden of geldboete van de derde categorie.

BetaDevil
Berichten: 2810
Lid geworden op: 28 mei 2006, 15:27

Bericht door BetaDevil » 16 jan 2007, 17:06

Code: Selecteer alles

sub usage {
    my $cmds = join "|", sort keys %dbmc::;
    die <<SYNTAX;
Usage: dbmmanage [enc] dbname command [username [pw [group[,group] [comment]]]]

    where enc is  -d for crypt encryption (default except on Win32, Netware)
                  -m for MD5 encryption (default on Win32, Netware)
                  -s for SHA1 encryption
                  -p for plaintext

    command is one of: $cmds

    pw of . for update command retains the old password
    pw of - (or blank) for update command prompts for the password

    groups or comment of . (or blank) for update command retains old values
    groups or comment of - for update command clears the existing value
    groups or comment of - for add and adduser commands is the empty value
SYNTAX
}

Gebruikersavatar
Denskie War
Berichten: 479
Lid geworden op: 22 aug 2006, 17:08
Locatie: Hulsberg
Contacteer:

Bericht door Denskie War » 16 jan 2007, 17:40

Image replacement script - Forum Icons.

Explanation

This script, when placed within a Forum Description field, will replace the following Icons, with images of your own.

whosonline.gif : 'Who is Online'

folder_new.gif : 'New Posts'

folder.gif : 'No New Posts'

folder_lock.gif : 'Forum is Locked'


The script must be modified to suit the Style template in use, as the Icon image names, and directory structure, do not always remain the same.

imageorig01 . . 04: These four variables are where you must list the full URL of the original Icon images.

imagerplc01 . . 04: These four variables list the full URL of your replacement images.

Ensure that you have 'matched' each group of four. eg, 01 to 01, 02 to 02, etc. Otherwise your Icons will not represent what you intend them to, such as your 'Who's Online' image, marking a locked folder !

Note: Your replacement images must be the same size as the original Icons. Otherwise they will be resized in situ, and possibly distorted.

:idea: You can find the full URL of an image, by right mouse clicking the image, then selecting 'Properties'. You'll be able to Copy & Paste the URL, direct from the pop-up Properties window.


Script

This example using 'subSilverPlus'. Edit it in a text editor, such as Notepad, then copy & paste it into any Forum Description. You must put YOUR forum URL in the code, in place of the sample forum in the script below.

Code: Selecteer alles

<script>
function iconswap()
   {   
   var index = 0; 

   var imageorig01 = "http://thebulgalads.forumup.org/templates/subSilverPlus/images/common/whosonline.gif"; 
   var imageorig02 = "http://thebulgalads.forumup.org/templates/subSilverPlus/images/common/folder_new_big.gif"; 
   var imageorig03 = "http://thebulgalads.forumup.org/templates/subSilverPlus/images/common/folder_big.gif"; 
   var imageorig04 = "http://thebulgalads.forumup.org/templates/subSilverPlus/images/common/folder_locked_big.gif"; 

   var imagerplc01 = "http://img152.imageshack.us/img152/4238/toolsbuttonwh5.gif"; 
   var imagerplc02 = "http://img152.imageshack.us/img152/4238/toolsbuttonwh5.gif"; 
   var imagerplc03 = "http://img152.imageshack.us/img152/4238/toolsbuttonwh5.gif"; 
   var imagerplc04 = "http://img152.imageshack.us/img152/4238/toolsbuttonwh5.gif"; 

   for(index=0; index<document.images.length; index++) 
     { 
     if(document.images[index].src == imageorig01) document.images[index].src = imagerplc01;
     if(document.images[index].src == imageorig02) document.images[index].src = imagerplc02;
     if(document.images[index].src == imageorig03) document.images[index].src = imagerplc03;
     if(document.images[index].src == imageorig04) document.images[index].src = imagerplc04;
     }
   }
</script>
<body></body>
Advanced I

If you wish to swap more images, it is a simple matter to duplicate the lines of script, that represent the original, and the replacement images. Then insert the additional URL's.

You must also ensure that you increment the image count, above 04 and onwards. eg,

var imageorig05 = ..
var imageorig06 = ..

Most importantly, you must duplicate the following line. The process is as you performed above. Remember to increment the image counters - there are two here.

Code: Selecteer alles

if(document.images[index].src == imageorig04) document.images[index].src = imagerplc04;
Place the amended script into any Forum Description field.


Advanced II

If you wish to replace the Forum Icons throughout your Forum, the following instructions apply.

Add any additional images, as per the instructions in the section above.

Remove the code from between the <script> tags. Do not include them. Paste this code into a text file, and save it with a .js extension. eg, iconswap.js .

Upload this .js file to a File Host that allows for text files.


Using the remainder of the script, with your hosted file URL, we have the following,

Code: Selecteer alles

<script></script>
<body></body>
This code is placed in the Site Description field, on the Configuration page of your Admin Panel. You will need to place it as a single line.

Please note: There will be some Style templates on which this script will not operate correctly.

:!: Written by Kana3. Special thanks to Raulken for the original version of this code.
Afbeelding

Gebruikersavatar
Xanland
Berichten: 828
Lid geworden op: 23 jan 2005, 17:02
Locatie: Apeldoorn, The Netherlands
Contacteer:

Bericht door Xanland » 16 jan 2007, 19:59

Start > Alle Programma's > Apache
Mvg, Xanland.
phpBBmods
---
Muziekforum
---

Nymphy
Berichten: 1504
Lid geworden op: 28 mar 2003, 18:00
Locatie: Grevenbicht

Bericht door Nymphy » 16 jan 2007, 20:00


Daan
Berichten: 1060
Lid geworden op: 22 jun 2006, 19:59
Locatie: Nijmegen

Bericht door Daan » 16 jan 2007, 20:00


Gebruikersavatar
Paul
Beheerder
Beheerder
Berichten: 20301
Lid geworden op: 23 okt 2003, 11:38
Locatie: Utrecht
Contacteer:

Bericht door Paul » 16 jan 2007, 20:05

$row['release_url'] = generate_board_url() .

nickdhnick
Berichten: 632
Lid geworden op: 10 apr 2006, 16:38
Locatie: Apeldoorn
Contacteer:

Bericht door nickdhnick » 16 jan 2007, 21:00

Code: Selecteer alles

Stappen voor het configureren van DNS

Je kunt de installatie voltooien door de onderstaande wijzigingen aan te brengen in je DNS. Dit kun je doen bij het register waar je domein is geregistreerd, of bij je DNS-provider.

    * Stap 1 (vereist): Wijzig een Mail Exchange (MX)-record of voeg een MX-record toe voor je domein zodat het de volgende waarden bevat:
          o Host: realitygamers.nl
          o Mail Exchange (MX)-server: 32705581.pamx1.hotmail.com
          o TTL (time-to-live)-instelling: 3600 of 1 uur
          o Prioriteit: 10 (of Hoge prioriteit)
    * Stap 2 (vereist): Verwijder alle overige Mail Exchange (MX)-records die niet zijn ingesteld op de bovenstaande waarde.
    *
    * Stap 3 (aanbevolen): Voeg een SenderID (een TXT-record (Tekstrecord)) voor je domein toe, met de volgende waarden:
          o Host: realitygamers.nl
          o Waarde: v=spf1 include:hotmail.com ~all
          o TTL: 3600 of 1 uur (indien vereist)
oee leuk

Gebruikersavatar
Wout -- w00t
Berichten: 815
Lid geworden op: 07 jan 2005, 12:57
Locatie: Eindhoven, NL

Bericht door Wout -- w00t » 16 jan 2007, 22:06

Code: Selecteer alles

INTRO
G:------------------------------------------------------------
D:------------------------------------------------------------
A:------------------------------------------------------------
D:-0---0----0-0-0-0-0-0-0-0-0-0-0-0-0-0-5-7-0-3-5-0-3-3-23230-

G:-------------------------------------
D:-------------------------------------
A:-------------------------------------
D:-3-3-3-3-3-3-3-3-3-3-5-5-5-5-5-7-8-7-
PRE VERSE
G:-----------------------
D:-----------------------
A:-----------------------
D:-0---------3---------7-

VERSE
G:-------------------------------------
D:-------------------------------------
A:-------------------------------------
D:-0-0-000---------0-0-000---3-33-5-55-

PRECHORUS
G:--------------------
D:--------------------
A:--------------------
D:-0--0--0--0-0-0-0-0-

CHORUS
G:-------------------------------------------------------------
D:-------------------------------------------------------------
A:-------------------------------------------------------------
D:-3-0-7-0-000-3-0-7-000-3-3-3-3-3-3-3-3-3-3-5-5-5-5-5-5-7-8-7-

G:-------------------------------------
D:-------------------------------------
A:-------------------------------------
D:-3-3-3-3-3-3-3-3-3-3-3-5-5-5-5-7-8-7-

FIRST PART SOLO
G:--------------------------------------
D:--------------------------------------
A:--------------------------------------
D:-0-0-000---------0-0-000---3-33--5-55-

MAIN PART SOLO
G:------------------------------------------------------------------
D:------------------------------------------------------------------
A:------------------------------------------------------------------
D:-0000000000000-5555555555555-0000000000000-7777777-10101010101010-

END OF SOLO
G:--------------------------------
D:--------------------------------
A:--------------------------------
D:-0-0-0-0-(x4)-00000000000000000-

END
G:--------
D:--------
A:--------
D:-0-0-000
Geeft geen support aan fora´s zonder copyright

Gebruikersavatar
Fridge
Berichten: 1028
Lid geworden op: 25 sep 2006, 19:22
Locatie: Rotterdam
Contacteer:

Bericht door Fridge » 16 jan 2007, 22:45

Adobe Photoshop CS2 v9.0

Salomon
Berichten: 3878
Lid geworden op: 14 feb 2006, 16:15

Bericht door Salomon » 17 jan 2007, 07:56

127.0.0.1

Gebruikersavatar
Jan
Berichten: 1987
Lid geworden op: 30 mei 2006, 20:30
Locatie: De kelder van Dhr. J. Fritzl
Contacteer:

Bericht door Jan » 17 jan 2007, 13:25

Federale verkiezingen op 10 juni
Vriendelijke groet,
Jan
Gratis Forum - Gratis Blog - Blokart

Salomon
Berichten: 3878
Lid geworden op: 14 feb 2006, 16:15

Bericht door Salomon » 17 jan 2007, 14:50

elseif (file_exists($bestandsnaam) == false) {
echo 'Het bestand ' . $bestandsnaam . 'bestaat niet. Wilt u misschien <a href="bron.php?e bron van

Jay17
Berichten: 56
Lid geworden op: 22 mar 2005, 18:51
Contacteer:

Bericht door Jay17 » 17 jan 2007, 20:57


Gebruikersavatar
mr.Stone
Berichten: 508
Lid geworden op: 21 okt 2006, 13:08
Contacteer:

Bericht door mr.Stone » 17 jan 2007, 21:46

|

haha :P

Creabijtjezzz
Berichten: 55
Lid geworden op: 09 dec 2005, 10:25
Locatie: Leiden
Contacteer:

Bericht door Creabijtjezzz » 26 jan 2007, 12:48

Zijn er onderwerpen die samen gevoegd kunnen worden?
zijn er onderwerpen die we moeten hebben en er nu niet zijn?
of zijn er onderwerpen die weg mogen!?
hebben jullie adviezen? over hoe het beter kan?
laat het even weten en we kijken ernaar!

Gebruikersavatar
Xanland
Berichten: 828
Lid geworden op: 23 jan 2005, 17:02
Locatie: Apeldoorn, The Netherlands
Contacteer:

Bericht door Xanland » 26 jan 2007, 20:41

kuisheidsgordel

(weet niet of het hier mag staan)
Mvg, Xanland.
phpBBmods
---
Muziekforum
---

svenn
Berichten: 5001
Lid geworden op: 14 jul 2004, 13:00
Locatie: Kortrijk
Contacteer:

Bericht door svenn » 26 jan 2007, 20:58

als ge er zijt : http://bluefive.pair.com/pixresizer.htm download dat installeer het, dan klik je bovenaan op work with multiple ... daar kun je ervoor zorgen dat je 3,1 MB fotos iets van 19 kb worden net zoals de mijn als je dat wilt doet en ze dan doorsturen in een zipje zet ik ze ook online... als je dat wilt

Epox
Berichten: 549
Lid geworden op: 15 feb 2004, 19:26
Locatie: Eindhoven
Contacteer:

Bericht door Epox » 27 jan 2007, 19:46

include('menu.php');

Gebruikersavatar
mr.Stone
Berichten: 508
Lid geworden op: 21 okt 2006, 13:08
Contacteer:

Bericht door mr.Stone » 27 jan 2007, 20:26

The_White_Eagle schreef:misschien om ze te vergelijken en uiteindelijk terug te keren naar phpbb3 :D

Gesloten