|
Forums ⇒ General ⇒ This Site :: Archives ⇒ My Live Server Specifications :: Archived
My Live Server Specifications :: ArchivedPost your comments about this site or bugs found on this website in here. Please post errors, bugs or other problems found in your installation in the appropriate forum.
Go to page Previous 1, 2
| Topic Archived |
View previous topic :: View next topic |
| Author |
Message |
WebSiteGuru 1000+ Posts Club


Offline Joined: Jun 09, 2005 Posts: 2318
|
Posted: Fri Sep 14, 2007 3:52 pm Post subject: Re: My Live Server Specifications |
|
| Jeruvy wrote: |
From the forum rules and regulations.....
Server spec images shall not exceed 250px width, 20px height and 3kb in size.
This one is 4.2kb |
It must had just been updated recently, cause if I remembered it right it was 6kb when we first started.
Oh! Well No biggy, We'll just have to re-do the images to meet the specification then.
_________________ Lead Theme Designer - WebSiteGuru Designs
WebSiteGuru's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux 2.6.9 / Apache 2.2.6 / MySQL 5.0.27 / PHP 5 / DF Version 9.2.1
|
|
| Back to top |
|
 |
Jeruvy Security Team


Offline Joined: Apr 23, 2004 Posts: 1432 Location: Canada
|
Posted: Fri Sep 14, 2007 3:56 pm Post subject: Re: My Live Server Specifications |
|
There I cannot help you. I have no control over changes to policy for this site, and honestly I don't follow things like this typically unless they affect me directly. But if you ask I'll be glad to check.
Which brings me to a point...things do change
Really
_________________ J.
j e r u v y a t y a h o o d o t c o m
Need help? Look here: www.dragonflycms.org/W...d=112.html
Need to chat? Look for me on irc.freenode.net
Jeruvy's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Ubuntu7.10/Debian3.1 - 2.2.3/1.3.37 - 5.0.38/4.0.27 - 5.2.1/4.4.7 - CVS/9.1.2}
|
|
| Back to top |
|
 |
WebSiteGuru 1000+ Posts Club


Offline Joined: Jun 09, 2005 Posts: 2318
|
Posted: Fri Sep 14, 2007 5:28 pm Post subject: Re: My Live Server Specifications |
|
Oh! That is understandable.  Nothing stay the same, it's always changes.
_________________ Lead Theme Designer - WebSiteGuru Designs
WebSiteGuru's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux 2.6.9 / Apache 2.2.6 / MySQL 5.0.27 / PHP 5 / DF Version 9.2.1
|
|
| Back to top |
|
 |
CatchImran 500+ Posts Club


Offline Joined: Mar 06, 2006 Posts: 635 Location: India
|
Posted: Sat Sep 15, 2007 2:34 pm Post subject: Re: Server Info Block issues |
|
Moreover it seems I am having kind of the same problems with the Live Server Specs feature. You can have a look at the problem here
www.radopod.com/serverspecs.php
_________________

Visit www.RadoPOD.com Today!
CatchImran's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/2.0.54 (Unix)/5.0.51/5.2.6/DragonflyCMS 9.2.1
|
|
| Back to top |
|
 |
CatchImran 500+ Posts Club


Offline Joined: Mar 06, 2006 Posts: 635 Location: India
|
Posted: Sat Sep 15, 2007 2:35 pm Post subject: Re: Server Info Block issues |
|
Here is the complete code for the same
| Code:: |
<?
/*
Dynamic Server Specs
Based of Status Sig by DJMaze and t31os
Author: WebSiteGuru of WebSiteGuru Designs (http://dragonfly.wsgdesigns.com)
Server Specs graphic by: DJDevon3 of Treasure Coast Designs (http://www.treasurecoastdesigns.com)
Speacual thanks to BigErn75 of Dragonfly Addons (http://www.dfaddons.com) for providing Server Info blocks for reference in getting Dynamic Server Specs done.
*/
global $userinfo, $prefix, $db, $module_title, $SESS;
define('XMLFEED', 1);
include('includes/cmsinit.inc');
$serverver = explode('-', `uname -r`);
$version = explode('/', apache_get_version());
$apachever = explode(' ', $version[1]);
//$apachever = '';
$phpver = explode('-', phpversion());
$mysqlver = explode('-', mysql_get_server_info());
$release = 'Stable'; // You can put in the release type (IE: STABLE, or CVS), otherwise leave BLANK)
$dfver = CPG_NUKE;
$image = "specs.png";
$im = imagecreatefrompng($image);
$fontcolor = ImageColorAllocate($im, 0, 0, 0);
ImageString($im, 2, 13, 10, "$sitename", $fontcolor); //Site Name
ImageString($im, 1, 180, 19, "$serverver[0]", $fontcolor); //Linux Version
ImageString($im, 1, 237, 19, "$apachever[0]", $fontcolor); //Apache Version
ImageString($im, 1, 280, 19, "$mysqlver[0]", $fontcolor); //MySQL Version
ImageString($im, 1, 325, 19, "$phpver[0]", $fontcolor); //PHP Version
ImageString($im, 1, 380, 10, "$release", $fontcolor); //Release Type (IE: STABLE, OR CVS)
ImageString($im, 1, 380, 19, "$dfver", $fontcolor); // Dragonfly Version.
header('Pragma: public');
header('Pragma: no-cache');
header("Content-Type: image/png");
Imagepng($im,'',100);
ImageDestroy($im); |
_________________

Visit www.RadoPOD.com Today!
CatchImran's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/2.0.54 (Unix)/5.0.51/5.2.6/DragonflyCMS 9.2.1
|
|
| Back to top |
|
 |
CatchImran 500+ Posts Club


Offline Joined: Mar 06, 2006 Posts: 635 Location: India
|
Posted: Sat Sep 15, 2007 3:43 pm Post subject: Re: My Live Server Specifications |
|
EDITED: Realised after posting that my earlier posts had been moved here. Thanks a lot mods for moving the posts here.
_________________

Visit www.RadoPOD.com Today!
CatchImran's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/2.0.54 (Unix)/5.0.51/5.2.6/DragonflyCMS 9.2.1
|
|
| Back to top |
|
 |
WebSiteGuru 1000+ Posts Club


Offline Joined: Jun 09, 2005 Posts: 2318
|
Posted: Sun Sep 16, 2007 6:48 pm Post subject: Re: My Live Server Specifications |
|
Your server is not authorizing the Apache version requests. Here is the fixed.
| Code:: |
<?
/*
Dynamic Server Specs
Based of Status Sig by DJMaze and t31os
Author: WebSiteGuru of WebSiteGuru Designs (http://dragonfly.wsgdesigns.com)
Server Specs graphic by: DJDevon3 of Treasure Coast Designs (http://www.treasurecoastdesigns.com)
Speacual thanks to BigErn75 of Dragonfly Addons (http://www.dfaddons.com) for providing Server Info blocks for reference in getting Dynamic Server Specs done.
*/
global $userinfo, $prefix, $db, $module_title, $SESS;
define('XMLFEED', 1);
include('includes/cmsinit.inc');
$serverver = explode('-', `uname -r`);
$version = explode('/', apache_get_version());
//$apachever = explode(' ', $version[1]);
$apachever = 'Put You Apache Version Manually here!';
$phpver = explode('-', phpversion());
$mysqlver = explode('-', mysql_get_server_info());
$release = 'Stable'; // You can put in the release type (IE: STABLE, or CVS), otherwise leave BLANK)
$dfver = CPG_NUKE;
$image = "specs.png";
$im = imagecreatefrompng($image);
$fontcolor = ImageColorAllocate($im, 0, 0, 0);
ImageString($im, 2, 13, 10, "$sitename", $fontcolor); //Site Name
ImageString($im, 1, 180, 19, "$serverver[0]", $fontcolor); //Linux Version
ImageString($im, 1, 237, 19, "$apachever[0]", $fontcolor); //Apache Version
ImageString($im, 1, 280, 19, "$mysqlver[0]", $fontcolor); //MySQL Version
ImageString($im, 1, 325, 19, "$phpver[0]", $fontcolor); //PHP Version
ImageString($im, 1, 380, 10, "$release", $fontcolor); //Release Type (IE: STABLE, OR CVS)
ImageString($im, 1, 380, 19, "$dfver", $fontcolor); // Dragonfly Version.
header('Pragma: public');
header('Pragma: no-cache');
header("Content-Type: image/png");
Imagepng($im,'',100);
ImageDestroy($im); |
_________________ Lead Theme Designer - WebSiteGuru Designs
WebSiteGuru's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux 2.6.9 / Apache 2.2.6 / MySQL 5.0.27 / PHP 5 / DF Version 9.2.1
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Sun Sep 16, 2007 11:54 pm Post subject: Re: My Live Server Specifications |
|
This is a version that should work with IIS/Apache and other web server, MySQL/PgSQL, Linux/Win.
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
Phoenix • Many Posts •


Offline Joined: Apr 19, 2004 Posts: 8799 Location: Netizen
|
Posted: Tue Sep 18, 2007 1:55 am Post subject: Re: My Live Server Specifications |
|
Server Specs currently has no controls over it, so it is dangerous to allow html, hence it has effectively been disabled.
When bbcode is allowed as an alternative, people still need to ensure they provide images that are within the requirements specified within the Rules & Regulations, not like the grossly oversize ones previously displayed, and they also need to be readable which is not the case in most that I still see displayed - remember, we ask for them to assist in problem solving, so they must be easily viewable.
_________________ • DonationsPro for DragonflyCMS, SMF, MyBB, vBulletin •
Phoenix's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
CatchImran 500+ Posts Club


Offline Joined: Mar 06, 2006 Posts: 635 Location: India
|
Posted: Fri Sep 21, 2007 7:04 am Post subject: Re: My Live Server Specifications |
|
Hey Nano I like your Image! Clean and simple. Easy to read for all! Can I get the image file please?!
_________________

Visit www.RadoPOD.com Today!
CatchImran's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/2.0.54 (Unix)/5.0.51/5.2.6/DragonflyCMS 9.2.1
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Fri Sep 21, 2007 7:22 am Post subject: Re: My Live Server Specifications |
|
Not ready yet and it require ming extension loaded in php.
Ming its not yet stable in few servers.
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
|
|
|