40k   logo   40k
site links site links
Home page Forums Gallery Articles Articles Forums Blogs Chat Rules Support Us

Go Back   40K Terra - Warhammer 40k Forums > The Hive City > The Adeptus Workshop

Reply
 
LinkBack Thread Tools Display Modes
Old 12-16-2006   #1 (permalink)
The Omnissiah
 
Cagarner's Avatar
 
Join Date: Nov 2006
Location: UK
Posts: 1,442
Rep Power: 3 Cagarner has a spectacular aura aboutCagarner has a spectacular aura about
Thanks: 46
Thanked 50 Times in 22 Posts
Send a message via AIM to Cagarner Send a message via MSN to Cagarner Send a message via Skype™ to Cagarner
Smile My Signiture

Ok, i have had a number of PMs and stuff about people who are confused about my Signiture, so i have made this post to explain.

Firstly, the signiture is one that randomly shows 1 of 10 images i have made, as shown below:

1
2
3
4
5
6
7
8
9
10

If anyone else wants to do this, You have to have a folder on a webserver, and then put this file into the folder, along with any images you have.

FYI the code is also below:

Code:
<?php

/*

        INSTRUCTIONS
    1. Modify the $folder setting in the configuration section below.
    2. Add image types if needed (most users can ignore that part).
    3. Upload this file (rotate.php) to your webserver.  I recommend
       uploading it to the same folder as your images.
    4. Link to the file as you would any normal image file, like this:

            <img src="http://example.com/rotate.php">

    5. You can also specify the image to display like this:

            <img src="http://example.com/rotate.php?img=gorilla.jpg">
        
        This would specify that an image named "gorilla.jpg" located
        in the image-rotation folder should be displayed.
    
    That's it, you're done.

*/




/* ------------------------- CONFIGURATION -----------------------


    Set $folder to the full path to the location of your images.
    For example: $folder = '/user/me/example.com/images/';
    If the rotate.php file will be in the same folder as your
    images then you should leave it set to $folder = '.';

*/


    $folder = '.';


/*    

    Most users can safely ignore this part.  If you're a programmer,
    keep reading, if not, you're done.  Go get some coffee.

    If you'd like to enable additional image types other than
    gif, jpg, and png, add a duplicate line to the section below
    for the new image type.
    
    Add the new file-type, single-quoted, inside brackets.
    
    Add the mime-type to be sent to the browser, also single-quoted,
    after the equal sign.
    
    For example:
    
    PDF Files:

        $extList['pdf'] = 'application/pdf';
    
    CSS Files:

        $extList['css'] = 'text/css';

    You can even serve up random HTML files:

        $extList['html'] = 'text/html';
        $extList['htm'] = 'text/html';

    Just be sure your mime-type definition is correct!

*/

    $extList = array();
    $extList['gif'] = 'image/gif';
    $extList['jpg'] = 'image/jpeg';
    $extList['jpeg'] = 'image/jpeg';
    $extList['png'] = 'image/png';
    

// You don't need to edit anything after this point.


// --------------------- END CONFIGURATION -----------------------

$img = null;

if (substr($folder,-1) != '/') {
    $folder = $folder.'/';
}

if (isset($_GET['img'])) {
    $imageInfo = pathinfo($_GET['img']);
    if (
        isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
        file_exists( $folder.$imageInfo['basename'] )
    ) {
        $img = $folder.$imageInfo['basename'];
    }
} else {
    $fileList = array();
    $handle = opendir($folder);
    while ( false !== ( $file = readdir($handle) ) ) {
        $file_info = pathinfo($file);
        if (
            isset( $extList[ strtolower( $file_info['extension'] ) ] )
        ) {
            $fileList[] = $file;
        }
    }
    closedir($handle);

    if (count($fileList) > 0) {
        $imageNumber = time() % count($fileList);
        $img = $folder.$fileList[$imageNumber];
    }
}

if ($img!=null) {
    $imageInfo = pathinfo($img);
    $contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
    header ($contentType);
    readfile($img);
} else {
    if ( function_exists('imagecreate') ) {
        header ("Content-type: image/png");
        $im = @imagecreate (100, 100)
            or die ("Cannot initialize new GD image stream");
        $background_color = imagecolorallocate ($im, 255, 255, 255);
        $text_color = imagecolorallocate ($im, 0,0,0);
        imagestring ($im, 2, 5, 5,  "IMAGE ERROR", $text_color);
        imagepng ($im);
        imagedestroy($im);
    }
}

?>
Have fun!
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


Last edited by Cagarner; 12-16-2006 at 06:10 AM.
Cagarner is offline   Reply With Quote
Sponsored Links
Old 12-16-2006   #2 (permalink)
Banned
 
Join Date: Nov 2006
Posts: 0
Rep Power: 0 DeAd_cOmMaNdO is an unknown quantity at this point
Thanks: 88
Thanked 62 Times in 69 Posts
Blog Entries: 5
Send a message via MSN to DeAd_cOmMaNdO
Default

ah confusing.... my brain hurts! i think ill pass on that one, but thanks for taking the time to 'explain' it us mere mortals
DeAd_cOmMaNdO is offline   Reply With Quote
Old 12-16-2006   #3 (permalink)
The Ruler of Earth
 
Killermoose's Avatar
Honor Guard
 
Join Date: Nov 2006
Location: Good old England!
Posts: 1,075
Rep Power: 2 Killermoose is on a distinguished road
Thanks: 19
Thanked 5 Times in 5 Posts
Default

Once my brain has started working again I think I'll give it a try. Though I don't know when my brain will start functioning again (its the weekend, give me a break! )
__________________
By trying we can easily learn to endure adversity -- another man's, I mean. - Mark Twain


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Killermoose is offline   Reply With Quote
Old 12-16-2006   #4 (permalink)
Confused and Enraged
 
Stubber's Avatar
 
Join Date: Nov 2006
Location: South-east Ireland
Posts: 965
Rep Power: 2 Stubber will become famous soon enough
Thanks: 13
Thanked 14 Times in 13 Posts
Default

I'm begining to think you're either a computer programmer or are just seriously, freakishly gifted with computers.

I've tried terragen. I can't even get the camera to look down vertically at the terrain.
__________________
The thing that inspires men to kill is Hatred.
-Sun Tzu



To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


Vote On The Battlefield:

For any concerned I'll be online much more often once exams end friday 23rd.
Stubber is offline   Reply With Quote
Old 12-16-2006   #5 (permalink)
The Omnissiah
 
Cagarner's Avatar
 
Join Date: Nov 2006
Location: UK
Posts: 1,442
Rep Power: 3 Cagarner has a spectacular aura aboutCagarner has a spectacular aura about
Thanks: 46
Thanked 50 Times in 22 Posts
Send a message via AIM to Cagarner Send a message via MSN to Cagarner Send a message via Skype™ to Cagarner
Default

Well, im not a computer programmer, im only 17 years old.

For the terragen problem, here is how to fix it:
  1. On the "Landscape View/Sculpt" Panel, where you alter the camera angle, you need to left click, then right click on the same point on the map. The 3 lines that represent the camera view should disapear.
  2. Go onto the "Rendering Control" Panel and look on the right hand side. There should be loads of text boxes with numbers in.
  3. Click on the tick box next to "Fixed Height Above Surface".
  4. Then alter the value in the text box next to it. I think 7000.m is a good number to start at.
  5. Simply alter the altitude until it looks good.
Hope that helps.

PM for any other help.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Cagarner is offline   Reply With Quote
Old 12-19-2006   #6 (permalink)
Sergeant
 
Heroka Vendile's Avatar
 
Join Date: Nov 2006
Location: Inquisitorial Fortress, near Glasgow
Posts: 655
Rep Power: 2 Heroka Vendile is on a distinguished road
Thanks: 49
Thanked 49 Times in 29 Posts
Send a message via MSN to Heroka Vendile
Default

quick question, where/what is the source of the image used in sig number 4?
__________________
My Projects:

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


My Reviews:

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


Other:

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Heroka Vendile is offline   Reply With Quote
Old 12-19-2006   #7 (permalink)
The Omnissiah
 
Cagarner's Avatar
 
Join Date: Nov 2006
Location: UK
Posts: 1,442
Rep Power: 3 Cagarner has a spectacular aura aboutCagarner has a spectacular aura about
Thanks: 46
Thanked 50 Times in 22 Posts
Send a message via AIM to Cagarner Send a message via MSN to Cagarner Send a message via Skype™ to Cagarner
Default

Here is a link to it: Here

Are you going to make a signiture out of it????
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Cagarner is offline   Reply With Quote
Old 12-24-2006   #8 (permalink)
Sergeant
 
Heroka Vendile's Avatar
 
Join Date: Nov 2006
Location: Inquisitorial Fortress, near Glasgow
Posts: 655
Rep Power: 2 Heroka Vendile is on a distinguished road
Thanks: 49
Thanked 49 Times in 29 Posts
Send a message via MSN to Heroka Vendile
Default

no, its just i didn't recognise it, and that would be why, i'm not a player of the 40K CCG
__________________
My Projects:

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


My Reviews:

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


Other:

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Heroka Vendile is offline   Reply With Quote
Old 01-10-2007   #9 (permalink)
Trooper
 
boundy's Avatar
 
Join Date: Nov 2006
Location: The Golden Throne atop Holy Terra sat on my inquistorial ass in a metal suit :)
Posts: 136
Rep Power: 2 boundy is on a distinguished road
Thanks: 0
Thanked 0 Times in 0 Posts
Default

may i ask what you mean by webserver... I've just woken up and i'm a bit drowzy dp you mean a website? what is a webserver sorry for being a noob lol
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
boundy is offline   Reply With Quote
Old 01-10-2007   #10 (permalink)
The Omnissiah
 
Cagarner's Avatar
 
Join Date: Nov 2006
Location: UK
Posts: 1,442
Rep Power: 3 Cagarner has a spectacular aura aboutCagarner has a spectacular aura about
Thanks: 46
Thanked 50 Times in 22 Posts
Send a message via AIM to Cagarner Send a message via MSN to Cagarner Send a message via Skype™ to Cagarner
Default

It is a large computer that holds a website(s). I dont own my own one, but I rent a certain space on one for my website.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Cagarner is offline   Reply With Quote
Old 01-12-2007   #11 (permalink)
Trooper
 
boundy's Avatar
 
Join Date: Nov 2006
Location: The Golden Throne atop Holy Terra sat on my inquistorial ass in a metal suit :)
Posts: 136
Rep Power: 2 boundy is on a distinguished road
Thanks: 0
Thanked 0 Times in 0 Posts
Default

oh i see now much appreciated for claryfying that
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
boundy is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -7. The time now is 01:15 PM.


Warvault Webring
Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
40KTerra.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114