Hey, Would you like to work at Home ?? Just click here No need to pay, just register free and activate your account and get data Entry Work at your Home.

Thursday, September 13, 2007

Content management System - Part - 1

Catviz CMS Version 0.4
 
A PHP/MySQL based content manager. Its primary aim is to provide a rich platform for the development of interactive websites. Full Object-Oriented approach. Full API documentation. Very flexible templating system.  
Code:
 PHP 4.0
 
EZUpdate  [Demo]
 
EZUpdate is a simple content management system for small to medium sized web sites. It allows users to update their own web sites through a password protected web interface. Easy to install and use. Content is stored in a MySQL database.
Code: PHP 4.0
 
mayoco Version 2006.0424
 
For administration and setting up of dynamic content webpages. The main focus was put on the development of a system that offers an easy administration process. Features: Multilingual, WYSIWYG editor, skinnable, user management, and more.  

Code: PHP 4.0
 
SEO-CMS
 
SEO-CMS (Search Engine Optmized Content Management System) helps a site with PHP in easily being crawled by a search engine also provides help for- easy link management, theme based, tracks crawlers, stats tracks refers, keywords, overture & adwords.  

Code: PHP 4.0
 
Contentor  [Demo]
 
Features: displays all pages in a single, easily changed template, content on pages can be edited from any web browser - no special software required, page addresses are search-engine friendly URLs, and avoids the overhead of add-on modules.
Code:
 PHP 4.0
 
Xaraya CMS Version 1.1.2
 
Xaraya is an extensible, Open Source web application framework written in PHP and licensed under the GNU General Public License. Xaraya delivers the requisite infrastructure and tools to create custom web applications.  

Code:
 PHP 4.0
 
Webpad Version 3.0
 
Webpad is a web-based text editor which gives you access to files from any broswer and allows content management. Features: Settings Interface, Plugins, File Management, search, and PHP support.  

Code:
 PHP 4.0
 
ESY Web Builder Version 1.0
 
Allows non-technical people to create and manage web content using just a web browser and an Internet connection. Features: Multilingual Administration, Page management, WYSIWYG Interface, Users management, and based on PHP and SQL.  

Code:
 PHP 4.0
 
visualEdit Version 1.0
 
From file creation, modification, and deletion, interface and controls allows a seamless learning curve for yourself or your clients. visualEdit includes a version history system, template options, and numerous file options. Needs PHP.  

Code:
 PHP 4.0
 
Comikaze Comic Manager Version 1.0.6
 
Comikaze Comic Manager is a highly customizable, easy-to-use content management system. Features admin panel, auto updating, search, multi-user, rss feeds, and more.

Uses PHP 4.3.  
Code:
 PHP 4.0
 
QuickLink Version 1.7.11
 
Organizes information documents in a folder/document tree similar to Windows Explorer and integrates an easy to use WYSIWYG document editor. Features: Move document to a different folder, search, and multi-user login. Works with PHP.  

Code:
 PHP 3.0
 
Phoundry Version 1.0
 
Phoundry is a user-friendly and comprehensive CMS. Allows you to edit your content and publish it via your website, Intranet, PDA sites, web logs, I-mode, RSS feeds, XML, WML and PDF files. Supports PHP.  

Code: PHP 3.0
 
Start Articles  [Demo] Version 5.0
 
Manage a large collection of articles, jokes, tutorials and get features like automatic RSS generation, All the standard features like WYSIWYG Editors, Image uploads, more than 25 configurable options, PHP support, and Comprehensive Admin Area.  

Code: PHP 4.0
 
CMS Core  [Demo] Version 1.0
 
CMScore is a PHP/MYSQL powered content management and news updating system. It allows you to add posts and also has highest rated articles and most read articles. It also features an easy-to-ues admin panel. 

Code: PHP 4.0
 
AIOCP Version 1.3.007
 
AIOCP is a professional all in one solution to completely manage a website through a userfriendly web-interface. AIOCP can be also used as a platform for building powerful internet solutions, ranging from e-commerce, portals, websites and intranets 

Code: PHP 4.0
 
UIPublish Version 0.7.1
 
A minimalist PHP-based system for managing dynamic content on a website. Suitable for publishing articles, announcements, events, etc. Provides an administration interface for content managers and front-end pages can be customized. Uses MySQL

Code: PHP 4.0
 
phpWebEd  [Demo] Version 2.1
 
phpWebEd is a simple Content Management System for PHP enabled websites. With phpWebEd you can edit predefined parts of your webpages, optional: axWebEd WYSIWYG add on, user management, and permission controls.

Code: PHP 4.0
 
Contenido Version 4.6
 
Contenido features: In-site Editing, WYSIWYG-Editor, To-Do Lists, File management, Time controlled articles, Statistic functionality, Newsletter functionality, Synchronisation of multilingual, and Extensive user management. Works with MySQL and PHP.

Code: PHP 4.0
 
Brushtails  [Demo] Version 2.0
 
Brushtail is an intranet content management system web applpication developed with PHP and MySQLfor public libraries, but also could be used for other applications. It features guest user accounts, user management, administration contol panel and more.

Code: PHP 4.0
 
http://www.codango.com/php/dir/webapps/contentm/?pg=6&tab=refined&order=desc
 
 

Saturday, September 1, 2007

Mailing list

Create and maintain your mailing lists with this easy to use web-based mailing list software.


Keep in contact with your customers with mailing list software.



Mailing List is a Web-based, full-featured mailing list and newsletter system. Users can subscribe and unsubscribe themselves. Email confirmation is used for new subscriptions. The list of subscribers to a list can be imported and exported.



Download

Project management System in PHP - MySQL

project management
A simple and easy to use project management system.

Easily create and edit project details with web-based project management software. Customize your project categories and the project status options to you needs. Setup admin and regular users for multipe group project needs. Project management was kept very simple to make easy and quick to use. Auto database setup file makes setting up your project management system a snap.


Screens :-




Login :-



Project List:-



Project Detail:-



User List:-



Category List:-



Edit User :-


Edit Category:-




Edit Status :-



Status List :-



Logout :-




Download

getExtension, get to generate Thumbnails and other size of images

It is used to convert any image to specific size of image which maintains it's aspect ratio so it will not distort the image and maintain it's resolution.

you save this page with getImage.php
and use it like

getImage.php?file=images/img.jpg&width=100&height=100

so you can able to create thumbnail for the image with height and width of 100,100 respectively.

Using this way, you can also create images with different sizes to use in your web page.


===========================================================================


function getExtension($str)


{

$rVal="";
$pos=strrpos($str,".");
// echo "<br />str=".$str.",Pos=".$pos.",Len=".strlen($str)."<br />";
if($pos!==false)
{
$rVal=substr($str,($pos+1));
}
return $rVal;

}



$inputFilename=$_REQUEST['file'];
$imagedata = getimagesize($inputFilename);
$ext=getExtension($inputFilename);
$new_w=$_REQUEST['width'];
$new_h=$_REQUEST['height'];

//print_r($_REQUEST);

switch($ext)
{
case "bmp":
$image=imagecreatefromwbmp($inputFilename);
break;
case "jpg" || "jpeg" :
$image = ImageCreateFromJpeg($inputFilename);
break;
case "png":
$image = imagecreatefrompng($inputFilename);
break;
case "gif":
$image = imagecreatefromgif($inputFilename);
break;
default:
$image=NULL;
}
if($image)
{
//get the image size of the picture and load it into an array
$old_x=imageSX($image);
$old_y=imageSY($image);
if ($old_x > $old_y)
{
$thumb_w=$new_w;
$thumb_h=$old_y*($new_h/$old_x);
}
if ($old_x < $old_y)
{
$thumb_w=$old_x*($new_w/$old_y);
$thumb_h=$new_h;
}
if ($old_x == $old_y)
{
$thumb_w=$new_w;
$thumb_h=$new_h;
}

$im2=ImageCreateTrueColor($thumb_w,$thumb_h);

imagecopyresized($im2,$image,0,0,0,0,$thumb_w,$thumb_h,imagesx($image),imagesy($image)); //

switch($ext)
{
case "bmp":
image2wbmp($im2);
break;
case "jpg" || "jpeg" :
imagejpeg($im2);
break;
case "png":
imagepng($im2);
break;
case "gif":
imagegif($im2);
break;
default:
$image=NULL;
}
}


===========================================================================
Your Ad Here