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....
Need Helpinstalling "Image Quick"
-
Pappnase
Your rigth
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...
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...
use the static-version of ImageMagick.
http://typo3.sunsite.dk/software/linux/ ... c-3.tar.gz
unpack that package to a directory you like.
http://typo3.sunsite.dk/software/linux/ ... c-3.tar.gz
unpack that package to a directory you like.
Re: Your rigth
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.airazor wrote:How could I check if and which gd Version is installed on my server.
What is gd can´t find explaining articles...
<?
/*********************************************************
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!