Need Helpinstalling "Image Quick"

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
airazor
Posts: 5
Joined: Wed 20. Oct 2004, 10:15
Location: Germany
Contact:

Need Helpinstalling "Image Quick"

Post by airazor »

Hey Everybody,
seems that there is another NEWBY fooling around with phpwcms...!

I need help installing Image Quick on my Strato Server.

Is that possible or am I not allowed to install this on my webspace?

If i´m allowed to, which package for setup should I use and how should I install???

Thanks for helping me....
Pappnase

Post by Pappnase »

hello

installation troubleshooting means problems with installing phpwcms. and as i understand you. you need help to install quick image is that right!?
airazor
Posts: 5
Joined: Wed 20. Oct 2004, 10:15
Location: Germany
Contact:

Your rigth

Post by airazor »

Sorry if this isn´t the rigth section for posting this question...where should I post it better?

Another short Question:

How could I check if and which gd Version is installed on my server.
What is gd can´t find explaining articles...
Pappnase

Post by Pappnase »

hello

call your info.php wich you will find in the root!
cguenther
Posts: 111
Joined: Sun 11. Jan 2004, 12:41
Location: Halle, Germany
Contact:

Post by cguenther »

use the static-version of ImageMagick.
http://typo3.sunsite.dk/software/linux/ ... c-3.tar.gz

unpack that package to a directory you like.
Oreb
Posts: 4
Joined: Wed 20. Oct 2004, 21:02

Re: Your rigth

Post by Oreb »

airazor wrote:How could I check if and which gd Version is installed on my server.
What is gd can´t find explaining articles...
There's a little script that you can run from your server. It's a freebie from http://www.templatesforall.com but it's not listed there any more. Here's the script. Just run it from anywhere on your server.

<?

/*********************************************************
Created by Templates For All (07/26/2004)
http://www.templatesforall.com
*********************************************************/

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>PHP GD check</title>
<style type="text/css">
<!--
body {
text-align: center;
}

td.key {
border-bottom: 1px dashed #cccccc;
padding-left: 5px;
padding-right: 5px;
text-align: left;
}
td.result {
border-bottom: 1px dashed #cccccc;
padding-left: 5px;
padding-right: 5px;
text-align: right;
}
legend {
color: #000099;
font-size: 15pt;
font-variant: small-caps;
font-weight: bold;
font-family: Arial bold, Helvetica, sans-serif;
}
fieldset {
border: 3px double #000099;
padding: 3px 3px 3px 3px;
text-align: left;
}
-->
</style>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" summary="1" width="500">
<tr>
<td>
<fieldset>
<legend align="center">GD info</legend>
<table border="0" cellpadding="0" cellspacing="0" summary="2" width="100%">
<?php

function gd_version() { // Function to determine GD version for GD versions earlier than 2.0.1
if ($version_number === null) {
ob_start();
phpinfo(INFO_MODULES);
$mod_info = ob_get_contents();
ob_end_clean();
if (preg_match("/\bgd\s+version\b[^\d\n\r]+?([\d\.]+)/i",
$mod_info,$v_number)) {
$version_number = $v_number[1];
} else {
$version_number = 0;
}
}
return $version_number;
}

// Output GD Info
if (extension_loaded('gd')) {
if (function_exists("gd_info")){
$array = gd_info();
foreach($array as $key => $value){
echo "<tr>";
if ($value == 1){
$value = "yes";
} elseif ($value == null){
$value = "no";
}

echo "<td class="key"><i>$key:</i></td><td align="right" class="result">$value</td>\n";
echo "</tr>";
}
} else {
echo "<tr><td>";
echo "You have GD version: " .gd_version() . "\n<br />\n";
echo "Sorry your GD version is an old version, please ask your host to upgrade.\n";
echo "</td></tr>";
}
} else {
echo "<tr><td>";
echo "Sorry GD support isnt installed!";
echo "</td></tr>";
}
?>
</table>
</fieldset>
</td>
</tr>
</table>

</body>
</html>
I'm trying. Really!
Post Reply