Thursday, October 27, 2011

Drupal:CMS in PHP for Creating Websites

Drupal is a free and open-source content management system (CMS) and content management framework (CMF) written in PHP and distributed under the GNU General Public License which means anyone is free to download it and share it with others.

The standard release of Drupal, known as Drupal core, contains basic features common to content management systems. These include user account registration and maintenance, menu management, RSS-feeds, page layout customization, and system administration. The Drupal core installation can be used as a brochureware website, a single- or multi-user blog, an Internet forum, or a community website providing for user-generated content.

Although Drupal offers a sophisticated programming interface for developers, no programming skills are required for basic website installation and administration.

Drupal runs on any computing platform that supports both a web server capable of running PHP (including Apache, IIS, lighttpd, and nginx) and a database (such as MySQL, MariaDB, PostgreSQL, SQLite, MongoDB or Microsoft SQL Server) to store content and settings. Drupal 6 requires PHP 4.4.0+ while Drupal 7 requires PHP 5.2 or higher.

You can download Drupal 7.9 using the following link:
http://drupal.org/project/drupal

Wednesday, July 20, 2011

Simple FTP using Batch File

For FTP, I have used two batch files.
File1- example.bat

Create example.bat file with the following contents:

open <ip address>
<ftpUserName>
<ftpPassword>
bin
lcd "<path of local folder where the file is present>"
cd /
prompt off
put filename.extension
quit

File2- Sendexample.bat

Create Sendexample.bat file with the following contents:

ftp -s:example.bat

Thats It...Enjoy

Also if you need to ftp multiple files use "mput" option instead of "put".

Sunday, July 3, 2011

Capture IP Address using Asp.Net

The code given below gives you the IP address of the User Accessing the site.

1) HttpContext.Current.Request.UserHostAddress;

OR

2) HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

To get the IP Address of the machine and not the proxy use the following code:

1) HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

Tuesday, June 7, 2011

Zip files using batch file

You can zip files using batch file.
Example :
zip -r -9 -S -u C:\abc.zip C:\*.csv

Another way if you have winzip installed is,
Example :
WINZIP32 -min -a -ex C:\abc.zip C:\*.csv

Saturday, April 23, 2011

DotNetNuke Web CMS

DotNetNuke is an open source platform for building web sites based on Microsoft .NET technology.It is written in VB.NET.
The DotNetNuke web content management system is extensible and customizable through the use of skins, modules, data providers, language packs and templates.
It is distributed under both a Community Edition BSD-style license and commercial proprietary licenses as the Professional and Enterprise Editions.
To Download DotNetNuke Resources you can use this link.: Click Here
As it is a CMS, it makes the job of developing websites easy. One of the sites that I worked upon using Nuke is http://www.harmonicenvironments.com/
From the site, you can get an idea of how nuke can be used to develop sites.

Sunday, April 17, 2011

Joomla - Easy Way To Develop Websites

Hi friends, I have been using Joomla since long, and worked with different CMS. I found Joomla to be one of the best CMS in PHP for developing websites.
Joomla! is actually a free and open source content management system (CMS) for publishing content on the World Wide Web and intranets.
Joomla! is written in PHP, uses object-oriented programming (OOP) techniques and software design patterns, stores data in a MySQL database, and includes features such as page caching, RSS feeds, printable versions of pages, news flashes, blogs, polls, search, and support for language internationalization.

You can download the latest version of Joomla (i.e 1.6) for free.Click Here.

You can learn developing sites in Joomla by yourselves by sitting at home. You just need to be creative and computer savvy. You can google for tutorials related to Joomla development. I assure you its not difficult. Any help related to the topic you can leave out the comment and I will surely reply for the same asap.


 

Saturday, April 2, 2011

Internet Explorer 9 features

Internet Explorer 9 features a simplified interface to put the focus on websites. The address bar and search bar have been combined into the One Box. Tabs stack along the very top. Sites load incredibly fast in Internet Explorer 9, and can also be pinned to your taskbar for one-click access. Tracking Protection in Internet Explorer 9 provides an added level of control and choice about the information that third-party websites can potentially use to track your browsing activity.

        Chakra, the new JavaScript engine, compiles the JavaScript into highly efficient machine code in the background, while interpreting the JavaScript in the foreground. Internet Explorer 9 provides built-in developer tools which aid developers in rapid prototyping, testing, and debugging webpages by making changes to code from within the browser itself which can then be previewed. Hardware-accelerated text, video, and graphics mean your websites perform like the applications that are installed on your Windows-
based computer.

Note : You need to have Windows Vista or Windows 7 to run IE 9.

Download Link : Download IE 9