tutorial
Archived Posts from this Category
Archived Posts from this Category
Windows hosting is more expensive, less dependable, less well supported, and less capable than Linux. Unless you are running applications (such as ASP or .Net, or use MSSQL) that absolutely require a Windows server and/or database, stick with Linux.
Note that some Windows services (e.g., ASP) may be available on a Linux server for extra cost (work-alikes such as Chilisoft). If you’re going to pay extra for something like that, you might want to go ahead and go 100% Windows, just so there’s no question about compatibility.
Windows and Linux often use two different web server applications. Windows sites use the Windows IIS server, while nearly all Linux sites use Apache.
Linux sites focus on PHP, Perl and other open-source script languages for server side scripting. Windows-based sites use ,NET and ASP technologies. They might also offer support for PHP.
Linux sites offer MySQL as the database for backend content storage. Windows sites will probably offer SQL Server, though some offer the Windows versions of MySQL as well.
There shouldn’t be any difference between the two if you use strict web standards in your HTML. However, you need to be aware of the fact that, since Dreamweaver is a Windows-only product, it may insert some non-standard things into your HTML. Frontpage also does this.
About author : This original article is property of Top 10 Web Hosting (http://www.top10webhosting.com). List of best web hosting services company offering PHP and MySQL. Compare & save ! on web hosting fee. Note : Please include author information if you wish to republish this article.comments off Thursday 18 Mar 2010 | BestHosting | apache, tutorial, windows
While most hosting company offer 99.9% network uptime but they usually do not offer 99.9% server up-time. Good luck ~
1 comment Friday 21 Aug 2009 | BestHosting | support, tips, tutorial
I need a higher version of Zend Optimizer than what is installed on the server. How do I locally install Zend Optimizer?
1. Visit http://www.zend.com/downloads to download latest zend optimizer
2. Extract the files in your local computer. You will find a folder called data. Rename the folder to a more specific name such as zendopt (We will use
this name for the rest of this article).
3. Upload the zendopt folder to public_html.
4. Add following lines to php.ini (create the file if it does not exist):
[Zend]
zend_optimizer.optimization_level=15
zend_extension=/home/USERNAME/public_html/zendopt/4_4_x_comp/ZendOptimizer.so
zend_extension_ts=/home/USERNAME/public_html/zendopt/4_4_x_comp/TS/ZendOptimizer.so
Note: replace USERNAME with your cpanel username. Please also replace
4_4_x_comp with whatever php version on your server. Zendopt folder contains several folders such as 4_4_x_comp, 5_1_x_comp, and 5_2_x_comp. Please select the closest to your php server.
6. Confirm the zend optimizer has been upgraded by creating a php file with the following line and browse the file on the internet:
<? echo phpinfo(); ?>
About author : This original article is property of Top 10 Web Hosting (http://www.top10webhosting.com). List of best web hosting services company offering PHP and MySQL. Compare & save ! on web hosting fee. Note : Please include author information if you wish to republish this article.comments off Thursday 11 Jun 2009 | BestHosting | php, tutorial, web development