Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > PHP
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

PHP PHP for some can be one of the hardest website programming codes, so do you need help on your PHP script, if it is php4, php5 or lower this is the place for you for any PHP help.

Google
Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 3:30 PM   #1
jim
 
jim's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default cgi scripts, GD libraries, perl, php, SSH, HELP

Perhaps someone can explain this to me?
Is 1&1 contradicting its website?
What exactly is GD library support.
TIA
jim


My web designers said they would need 'GD library support for PHP'. This is
in relation to resizing uploaded pictures.

My webhosts(1&1) replied -
"Please see the following site for more information on the perl scripts and
modules that are available on the server :
http://portal.blueadmiral.com/perl__modules.htm
You are not able to upload and install your own perl modules on the
servers."

On the 1&1 website the details on my package says:

"Free CGI programming
With your own local CGI-bin directory (PHP3, PHP4, Perl, Python), you can
upload and run custom CGI scripts written by yourself or use those found on
many sites across the Web. "




 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Advertisements
Old 07-01-2007, 3:30 PM   #2
Jeffrey Silverman
 
Jeffrey Silverman's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default cgi scripts, GD libraries, perl, php, SSH, HELP

On Mon, 07 Jul 2003 20:33:34 +0000, jim wrote:

> Perhaps someone can explain this to me? Is 1&1 contradicting its website?
> What exactly is GD library support.
> TIA
> jim
>
>
> My web designers said they would need 'GD library support for PHP'. This
> is in relation to resizing uploaded pictures.
>
> My webhosts(1&1) replied -
> "Please see the following site for more information on the perl scripts
> and modules that are available on the server :
> http://portal.blueadmiral.com/perl__modules.htm You are not able to upload
> and install your own perl modules on the servers."
>
> On the 1&1 website the details on my package says:
>
> "Free CGI programming
> With your own local CGI-bin directory (PHP3, PHP4, Perl, Python), you can
> upload and run custom CGI scripts written by yourself or use those found
> on many sites across the Web. "


The page you pointed to does not answer your question becasue it describes
the avilable *Perl* modules! Your designers need to know if there is an
available PHP "module" called "GD". The GD library is an image
manipulation code library.

Simple searching of the above URL and I found the following info about PHP
on your host:
http://portal.blueadmiral.com/check-php.php

And yes, it looks like there is GD support enabled, so you should be good
to go.
--
Jeffrey D. Silverman | jeffrey AT jhu DOT edu
Johns Hopkins University | Baltimore, MD
Website | http://www.wse.jhu.edu/newtnotes/

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 3:30 PM   #3
Kurt Milligan
 
Kurt Milligan's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default cgi scripts, GD libraries, perl, php, SSH, HELP

jim wrote:
> Perhaps someone can explain this to me?
> Is 1&1 contradicting its website?
> What exactly is GD library support.
> TIA
> jim
>


There are many extra libraries (that add functionality) that can be
added to PHP when it is compiled (built). One of those is the GD
library, which deals with image manipulation.

If you need to perform image manipulation with your PHP scripts, you
have a few options;

1) ask your web hosts if they will compile a version of PHP with GD
support. they may not want to do this, but they may give you the option to:

2) compile your own version of PHP with GD support. You would typically
call the files that you need to use this particular version with a
different extension (say .phpwrap instead of .php), and then put a
..htaccess file in that directory to tell apache (assuming you are using
apache) to use that particular version for those files, or

3) install a third-party image-manipulation program such as ImageMagick
(www.imagemagick.org i believe), and tell your web developers to have
their PHP scripts use that, which is easy enough.

Generally, I like option 3 anyway, as the GD libraries don't support
some image formats anymore anyway, if i remember correctly...

hth
Kurt Milligan

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 3:31 PM   #4
jim
 
jim's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default cgi scripts, GD libraries, perl, php, SSH, HELP


"Kurt Milligan" <junk@atNOSPAMmilliganshome.net> wrote
> > Perhaps someone can explain this to me?
> > Is 1&1 contradicting its website?
> > What exactly is GD library support.
> > TIA
> > jim
> >

>
> There are many extra libraries (that add functionality) that can be
> added to PHP when it is compiled (built). One of those is the GD
> library, which deals with image manipulation.
>
> If you need to perform image manipulation with your PHP scripts, you
> have a few options;
>
> 1) ask your web hosts if they will compile a version of PHP with GD
> support. they may not want to do this, but they may give you the option

to:
>
> 2) compile your own version of PHP with GD support. You would typically
> call the files that you need to use this particular version with a
> different extension (say .phpwrap instead of .php), and then put a
> .htaccess file in that directory to tell apache (assuming you are using
> apache) to use that particular version for those files, or
>
> 3) install a third-party image-manipulation program such as ImageMagick
> (www.imagemagick.org i believe), and tell your web developers to have
> their PHP scripts use that, which is easy enough.
>
> Generally, I like option 3 anyway, as the GD libraries don't support
> some image formats anymore anyway, if i remember correctly...
>

I get the impression that nothing non-standard is allowed.

I could still do with an explanation of:
"Free CGI programming
With your own local CGI-bin directory (PHP3, PHP4, Perl, Python), you can
upload and run custom CGI scripts written by yourself or use those found on
many sites across the Web. "

What sort of things can you do with cgi scripts? (don't say "anything")
Jim


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 3:31 PM   #5
Jeffrey Silverman
 
Jeffrey Silverman's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default cgi scripts, GD libraries, perl, php, SSH, HELP

On Mon, 07 Jul 2003 21:24:04 +0000, jim wrote:

<snip!>
> Ok, So you get perl scripts and perl programs. And you also get server
> side PHP scripts ? And I can put my own PHP (or Perl) scripts onto the
> server?


Yes, you can, it looks like.

>
> Is 'GD library support for PHP' a script or a program? (I don't suppose I
> care as long as it is loaded)


It is neither, actually. It means "support for image manipulation
functions within your version of PHP".

PHP can be compiled (and so can Perl, actually) with or without support for this or
that or the other feature. In your case, your developers needed support
for the GD library of image manipulation functions. (Although actually, as
far as *image* *quality* is concerned, the NetPBM utilities are superior
to GD. NetPBM is something separate from PHP)

later...

--
Jeffrey D. Silverman | jeffrey AT jhu DOT edu
Johns Hopkins University | Baltimore, MD
Website | http://www.wse.jhu.edu/newtnotes/

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 3:31 PM   #6
Jeffrey Silverman
 
Jeffrey Silverman's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default cgi scripts, GD libraries, perl, php, SSH, HELP

On Mon, 07 Jul 2003 20:57:57 +0000, jim wrote:

<snip!>
> What sort of things can you do with cgi scripts? (don't say "anything")
> Jim


Almost anything

--
Jeffrey D. Silverman | jeffrey AT jhu DOT edu
Johns Hopkins University | Baltimore, MD
Website | http://www.wse.jhu.edu/newtnotes/

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Featured Websites
Free Space
Free Space
Free Space Free Space
Reply
Tags: , , , , , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
What GUI libraries will you recommend? PC HUA Software Programming 0 06-12-2007 11:32 PM
(Free) C++ Libraries for Graphical Objects (control elements)? PC HUA Software Programming 0 06-12-2007 11:30 PM
Any free Graphic C-Libraries for Sprite Programming? PC HUA Software Programming 2 06-12-2007 11:28 PM
Intel 865 Perl and temperatures Rick Motherboards 0 06-11-2007 1:06 PM
Near Free Web Hosting but Full-Featured (PHP, MySQL, Perl, SSH, etc..) Dameon Cheap Web Hosting Package 4 05-31-2007 2:28 PM


Featured Websites




All times are GMT +1. The time now is 12:06 PM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

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