this video shows how to make your own webserver to share files or host websites for anyone on the net to access for free, in under 7 minutes using Apache, which is free software.
i hope this w'll help you.
make your own web server
Tuesday, May 26, 2009
Monday, May 25, 2009
how to clear borwser's cache
hi, today i want to tell u how to clear browser's cache using PHP.
somtimes, we have to clear browser's cache to display our changes correctly like after uploading new photo. this code w'll help you.
you can also use of header.
from,
kiran vadariya
somtimes, we have to clear browser's cache to display our changes correctly like after uploading new photo. this code w'll help you.
you can also use of header.
header("cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past from,
kiran vadariya
Symfony
A framework streamlines application development by automating many of the patterns employed for a given purpose. A framework also adds structure to the code, prompting the developer to write better, more readable, and more maintainable code. Ultimately, a framework makes programming easier, since it packages complex operations into simple statements.
Symfony is a complete framework designed to optimize the development of web applications by way of several key features. For starters, it separates a web application’s business rules, server logic, and presentation views. It contains numerous tools and classes aimed at shortening the development time of a complex web application. Additionally, it automates common tasks so that the developer can focus entirely on the specifics of an application. The end result of these advantages means there is no need to reinvent the wheel every time a new web application is built!
Symfony was written entirely in PHP 5. It has been thoroughly tested in various real-world projects, and is actually in use for high-demand e-business websites. It is compatible with most of the available databases engines, including MySQL, PostgreSQL, Oracle, and Microsoft SQL Server. It runs on *nix and Windows platforms. Let’s begin with a closer look at its features.
original blog from : Symfony
Tuesday, May 19, 2009
Tuesday, May 12, 2009
some useful symfony plugins
here is the some useful symfony plugin list for symfony developers.
sfDynamicsPlugin
Manage javascripts/stylesheets libraries as coherent packages, dependencies, packing, caching and supercaching. JS framework independant. No magic included.
sfLanguageSwitchPlugin
This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.
ysfDimensionsPlugin
This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.
i18nTranslatePlugin
attempt to translate your sentences using Google AJAX Language API
sfKsnNewsPlugin
Main features includes: * multilanguage support (the same news item in different languages) * frontend (AJAX or form-based) administration * backend administration * lastest news block component and helper * autogeneration of news item annotation * fully customizable to suit your needs * news item files managment * nested news categories * RSS feed
hope tht you liked it.
thank you,
kiran vadariya
sfDynamicsPlugin
Manage javascripts/stylesheets libraries as coherent packages, dependencies, packing, caching and supercaching. JS framework independant. No magic included.
sfLanguageSwitchPlugin
This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.
ysfDimensionsPlugin
This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.
i18nTranslatePlugin
attempt to translate your sentences using Google AJAX Language API
sfKsnNewsPlugin
Main features includes: * multilanguage support (the same news item in different languages) * frontend (AJAX or form-based) administration * backend administration * lastest news block component and helper * autogeneration of news item annotation * fully customizable to suit your needs * news item files managment * nested news categories * RSS feed
hope tht you liked it.
thank you,
kiran vadariya
Wednesday, May 6, 2009
Creative Uses for PHP
If you’re a familier with the word ‘PHP’ then here is some useful creative uses for it.
E-commerce is one of the major uses for PHP. From a small business level to an enterprise level, businesses are always looking to create additional streams of revenue online. If you know how to integrate existing e-commerce solutions or build your own from scratch, this gives you a distinct advantage with your clients.
If PHP is your favorite programming language, then you can use some of these PHP extensions to get you started creating GUI applications.
Using the GD library with PHP, you can do more than just output HTML to the browser! You can output images in different file types including jpeg, png, and gif. This feature of PHP is useful because it allows you to create thumbnail pictures, add watermarks, resize and crop images, and even create a photo gallery!
You can write your own script to send e-mail newsletters to your client, or use a ready-made script. The PHP online documentation explains PHP mailing functions in more detail. There are also scripts you can download and install on your website:
You can integrate Facebook with your website using PHP. If you have developed Facebook applications using another language or you would like to get started with PHP, the Facebook developer's wiki can help you to get started.
Do you need visual representations of numbers on your site? PHP can create graphs and charts too! Using Image_Graph, you can create up to fourteen different types of charts including pie charts, bar graphs,.
The PDF format is Adobe's proprietary file type for document exchange. Using a library called PDFLib, you can generate PDF files with PHP. This library is already included with PHP5; to access it, you need to uncomment the appropriate lines in your PHP configuration file. An example of why creating PDF files might come in useful is, if you were building an online invoicing application and you wanted to output an HTML-generated invoice in PDF format.
PHP allows you to parse XML files. Parsing XML is an important feature of PHP 5 because not all browsers can output the contents of an XML file; so you can create a parser in PHP to facilitate this process. Using XML is important for RSS feeds, and also for data storage and rendering data on different devices - for example, cell phones use an implementation of XML called WML (Wireless Markup Language). Working with XML files in PHP is similar to handling the opening, closing, and reading of a file.
One of the most popular uses of PHP is creating or using Content Management System. A good CMS allows your clients to update their website and add content without any in-depth knowledge of HTML and CSS. You can use one of the widely available free or commercial solutions listed below:
Using PHP, you can make it easier to add pages and elements to your websites dynamically. You begin by creating the HTML page and splitting it into the header, main content, and footer sections. Add the .php extension to your subsequent pages and use server-side Includes for the header and footer for each new page. You can also have dynamic sidebars and top navigation sections. As a matter of fact, the more "templated" your site is, the easier it is to update the content.
You can build your own PHP-driven online community, or choose from widely available scripts that you can implement into your website. Some popular ones include:
from kiran vadariya :)
E-Commerce
E-commerce is one of the major uses for PHP. From a small business level to an enterprise level, businesses are always looking to create additional streams of revenue online. If you know how to integrate existing e-commerce solutions or build your own from scratch, this gives you a distinct advantage with your clients.
Beginners
Advanced Coders
· CakePHP.
Graphical User Interface
If PHP is your favorite programming language, then you can use some of these PHP extensions to get you started creating GUI applications.
- PHP GTK - This extension is a popular open source that implements the GIMP toolkit
- ZZEE PHP GUI - A paid solution that allows you to turn your PHP scripts into Windows applications
Image Processing and Generation
Using the GD library with PHP, you can do more than just output HTML to the browser! You can output images in different file types including jpeg, png, and gif. This feature of PHP is useful because it allows you to create thumbnail pictures, add watermarks, resize and crop images, and even create a photo gallery!
Mailing Lists
You can write your own script to send e-mail newsletters to your client, or use a ready-made script. The PHP online documentation explains PHP mailing functions in more detail. There are also scripts you can download and install on your website:
Developing Facebook Applications
You can integrate Facebook with your website using PHP. If you have developed Facebook applications using another language or you would like to get started with PHP, the Facebook developer's wiki can help you to get started.
Create Graphs and Charts
Do you need visual representations of numbers on your site? PHP can create graphs and charts too! Using Image_Graph, you can create up to fourteen different types of charts including pie charts, bar graphs,.
Generating PDF Files
The PDF format is Adobe's proprietary file type for document exchange. Using a library called PDFLib, you can generate PDF files with PHP. This library is already included with PHP5; to access it, you need to uncomment the appropriate lines in your PHP configuration file. An example of why creating PDF files might come in useful is, if you were building an online invoicing application and you wanted to output an HTML-generated invoice in PDF format.
Parsing XML Files
PHP allows you to parse XML files. Parsing XML is an important feature of PHP 5 because not all browsers can output the contents of an XML file; so you can create a parser in PHP to facilitate this process. Using XML is important for RSS feeds, and also for data storage and rendering data on different devices - for example, cell phones use an implementation of XML called WML (Wireless Markup Language). Working with XML files in PHP is similar to handling the opening, closing, and reading of a file.
Content Management Systems
One of the most popular uses of PHP is creating or using Content Management System. A good CMS allows your clients to update their website and add content without any in-depth knowledge of HTML and CSS. You can use one of the widely available free or commercial solutions listed below:
Create Dynamic Website Templates
Using PHP, you can make it easier to add pages and elements to your websites dynamically. You begin by creating the HTML page and splitting it into the header, main content, and footer sections. Add the .php extension to your subsequent pages and use server-side Includes for the header and footer for each new page. You can also have dynamic sidebars and top navigation sections. As a matter of fact, the more "templated" your site is, the easier it is to update the content.
Building an Online Community
You can build your own PHP-driven online community, or choose from widely available scripts that you can implement into your website. Some popular ones include:
from kiran vadariya :)
Charts and analysis for your site
In this ever increasing era of web development, the facilities and features given by desktop application is also wanted and must given by the web application. Because of the business spread across the many places the web is also preferred now over the desktop applications.
Charts are for analyzing the data stored by the database of if any. Thankfully there is one open source library based on Prototype Framework of javascript is available named Protochart.
ProtoChart using Prototype and Canvas to create good looking charts. like
* Line, bar, pie, curve, mix, and area charts available
Overview
Documentation
Demo
Very fine work done by them, and use it with their tems and conditions
Charts are for analyzing the data stored by the database of if any. Thankfully there is one open source library based on Prototype Framework of javascript is available named Protochart.
ProtoChart using Prototype and Canvas to create good looking charts. like
* Line, bar, pie, curve, mix, and area charts available
Overview
Documentation
Demo
Very fine work done by them, and use it with their tems and conditions
Monday, May 4, 2009
WordPress for Designers Series
WordPress is not only a web technology by itself but excellent combination of HTML, CSS, PHP and jQuery. The most popular blogging platform and one you’ve most likely heard of. When you’re ready to learn how to use WordPress, these tutorials will teach you what you need to know.
If you want to learn how to work with WordPress, one of the best places to start is by watching this series of screencasts. Okay, so this isn’t one tutorial but that’s what I’m calling it since it’s one big series covering one subject, WordPress. This series isn’t finished yet either so make sure you subscribe to the ThemeForest blog to keep up to date on new screencasts as they arrive
i have few links for you chk this
hope your enjoyed it :)
If you want to learn how to work with WordPress, one of the best places to start is by watching this series of screencasts. Okay, so this isn’t one tutorial but that’s what I’m calling it since it’s one big series covering one subject, WordPress. This series isn’t finished yet either so make sure you subscribe to the ThemeForest blog to keep up to date on new screencasts as they arrive
i have few links for you chk this
- WordPress for Designers: Day 1
- WordPress for Designers: Day 2
- WordPress for Designers: Day 3
- WordPress for Designers: Day 4
- WordPress for Designers: Day 5
- WordPress for Designers: Day 6
- WordPress for Designers: Day 7
- WordPress for Designers: Day 8
- WordPress for Designers: Day 9
- WordPress for Designers: Day 10
- WordPress for Designers: Day 11
- WordPress for Designers: Day 12
- WordPress for Designers: Day 13
- WordPress for Designers: Day 14
hope your enjoyed it :)
Saturday, May 2, 2009
New Release of YSlow for web performance
Yslow[v2] is now available and it providing much more tools than earlier version like,
Minifying js files, smush.it for image compressions, beautified js, and much more.
for those who not aware of Yslow, it is the much interesting and important tool for web developers provided by yahoo, and enables the developers to make their optimization work easier.
Yslow Download
YSlow uses Yahoo!'s Smush.it service, which is subject to Smush.it Terms of Use and find more at
Smush.it
Minifying js files, smush.it for image compressions, beautified js, and much more.
for those who not aware of Yslow, it is the much interesting and important tool for web developers provided by yahoo, and enables the developers to make their optimization work easier.
Yslow Download
YSlow uses Yahoo!'s Smush.it service, which is subject to Smush.it Terms of Use and find more at
Smush.it
Friday, May 1, 2009
Upgrade Symfony Projects to 1.1 and 1.2
With your ongoing projects if you want to change the branch of symfony from 1.0 to 1.1 or from 1.1 to 1.2, here are links to describe how
The document on the symfony official site provides the details about what changes made in 1.1 and 1.2 branches, and what to be done to upgrade your projects
[1] Upgrading Projects from 1.0 to 1.1
http://trac.symfony-project.org/browser/branches/1.2/UPGRADE_TO_1_1
[2] Upgrading Projects from 1.1 to 1.2
http://trac.symfony-project.org/browser/branches/1.2/UPGRADE_TO_1_2
The document on the symfony official site provides the details about what changes made in 1.1 and 1.2 branches, and what to be done to upgrade your projects
[1] Upgrading Projects from 1.0 to 1.1
http://trac.symfony-project.org/browser/branches/1.2/UPGRADE_TO_1_1
[2] Upgrading Projects from 1.1 to 1.2
http://trac.symfony-project.org/browser/branches/1.2/UPGRADE_TO_1_2
Subscribe to:
Comments (Atom)