[ SPEL ] Wat zit er onder CTRL+V?
Forumregels
Dit forum is voor alle zinnige gesprekken buiten phpBB om. Discussies en gesprekken over interessante onderwerpen.
Een nieuw onderwerp moet..:
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
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.
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.
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
}
- Denskie War
- Berichten: 479
- Lid geworden op: 22 aug 2006, 17:08
- Locatie: Hulsberg
- Contacteer:
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.
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.
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.
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,
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.
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.

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>
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;
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>
Please note: There will be some Style templates on which this script will not operate correctly.

-
- Berichten: 632
- Lid geworden op: 10 apr 2006, 16:38
- Locatie: Apeldoorn
- Contacteer:
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)
- Wout -- w00t
- Berichten: 815
- Lid geworden op: 07 jan 2005, 12:57
- Locatie: Eindhoven, NL
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
-
- Berichten: 55
- Lid geworden op: 09 dec 2005, 10:25
- Locatie: Leiden
- Contacteer:
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