Web Hosting | Hosting News Blog

web development

Ruby on rail Installation on Ubuntu

Tuesday, July 29th, 2008

Ruby on rail Installation on Ubuntu:
You need to  install Ruby and irb (Interactive ruby shell) and add ri and rdoc. The recommended Ruby version for rails is 1.8.5.
Open your terminal and type
sudo apt-get install ruby irb ri rdoc ruby1.8-dev2.2
Then you need to install RubyGems with the following command:
sudo apt-get install rubygems
Then you need to update [...]

Creating Your Own Server Stat Script

Thursday, July 10th, 2008

Before you create your own server stat script in PHP, it is must to check your ports are responding also you you should aware when one of your services are down, such as HTTP, MySQL, POP/SMTP, etc.  Also you should be attentive toward the current server loads, and users which will be the chief  indicator [...]

Common Attribute Definitions Used in XHTML

Tuesday, June 17th, 2008

<?xml version=”1.0″ encoding=”UTF-8″?>
<xs:schema
xmlns:xs=”http://www.w3.org/2001/XMLSchema”
elementFormDefault=”qualified”
xmlns:xh11d=”http://www.w3.org/1999/xhtml/datatypes/”
>
<xs:import namespace=”http://www.w3.org/1999/xhtml/datatypes/”
schemaLocation=”xhtml-datatypes-1.xsd” />

<xs:annotation>
<xs:documentation>
This is the XML Schema common attributes module for XHTML
[...]

Access bean components from JSP

Tuesday, May 6th, 2008

When you add a bean to a JSP, you can either create a new bean or use an existing one. The JSP engine determines whether it needs to create a new bean for you based on the bean’s id. While adding a bean to a page, you must at least give the bean an id [...]

HTML Email with ASP to Gmail

Wednesday, March 12th, 2008

Here is the way you can send HTML email to gmail or other email account by using the Active Server Pages using the following code.
<%
Dim htmlMess ‘ THIS STORES THE HTML CODE
‘ PLEASE TAKE CARE ABOUT YOUR DOUBLE QUOTES
htmlMess = “<html><head><title>HTML message in Email</title>”
htmlMess = htmlMess & “<style>”
htmlMess = htmlMess & “h1{font-family : Arial; font-size [...]

« Previous Entries