Friday, February 19, 2010
Ban an IP Address From Server
Did you ever have a user that keeps hammering your FTP or trying to login over and over and over again that you just want to ban and never see again? We'll show a quick and dirty method to ban an IP address from the server.
how can i ban that Ip address from the server?"
Easy trick!
1) Login to the server as and su - to root.
2) If you are running iptables, you can enter:
iptables -A INPUT -s <IP> -j DROP
3) If you have APF firewall installed
apf -d <ip>
4) When you reboot this IP ban will be removed, meaning the IP will no longer be banned anymore.
If you have APF you can get around this by opening the deny hosts file.
pico /etc/apf/deny_hosts.rules
Scroll to the bottom and paste in the IP address.
Ctrl+X then Y to save the changes and exit.
5) Restart APF
/etc/apf/apf -r
Reply With Quote
SEO FOR BLOGSPOT TITLE MODIFICATION
Let's sign in to your blogger account, Go to Edit Layout Are than Edit HTML code.
this is easy, find this code bellow :
than change the code with this code bellow :
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if>
Save template, than Finish....!!! Okay... See you in Next tips SEO
SEO FOR BLOGSPOT
<meta content='Description You Blog ' name='description'/>
<meta content='Keyword for Your Blog' name='keywords'/>
<meta content='Your Name' name='author'/>
Example :
<meta content='Place for Learn about Web Deveopment, HTML, PHP, SEO, Web Hosting and Domains tips' name='description'/>
<meta content='Web hosting, domains, HTML code, CSS, SEO Tips,' name='keywords'/>
<meta content='Rio' name='author'/>
Okay, this is just little tips... I want to give you Best tips for SEO in enjoy time... wait..!!!
About CSS
Creating Cascading Style Sheets
Let's Begin
Our First CSS Rule
font-family: Georgia, "Times New Roman", Times, serif;
}
Georgia, "Times New Roman", Times, serif;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
}
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
color: #666666;
}
- Added our choice of font
- Added our desired font size
- Given the h1 tag our chosen color.
Introduction CMS
A web site's content is a combination of different components like texts, graphics, images, scripts, embedded files such as flash animations, audio/video streams or downloadable files. All of these may be components of one document (or HTML page in case of a web content management system).
Content management systems (CMS) are computer software systems for organizing, displaying and facilitating collaborative creation of this content.
One principle of many content management systems is, to separate the content from the layout, which makes it easier to preset the same content in different layouts for different media ("cross-media publishing") like webbrowser and printer. Separating content and layout also enables website designers to concentrate on the presentation, while others attend the content.
This can be achieved by storing the content and the layout in different ressources and dynamically merge them together to the final document.
Advantages of Content Management Systems
- CMS facilitate the collaborative creation of websites. People can concentrate on the content while others care for the template to present the content. Also many CMS provide systems to enable users to add or modify content via their webbrowser
- CMS make it easier to display the same content in different ways, like a normal view for webbrowsers and a printer friendly view
- CMS make it easier to create new documents as one can concentrate on the content and do not have to care about the layout
- CMS make it easier to modify the layout of a website as one only has to modify the template at a single source instead of having to modify each single page to reflect the change
- CMS often can automatically create additional content like menus, sitemaps etc.
- CMS often provide methods to find content, for example by providing search functionality on the content
- Praveen has Edited This.
Different Types of Content Management Systems
Flatfile vs. Database-driven CMS
- Flatfile-CMS
- On a flatfile-based CMS, the content is (usually) saved in clear text files. Depending on the concept, layout elements can be saved in separate text files as well, dividing layout and content, and having the CMS put those two together on accessing the page (or any other defined action).
- Database-managed CMS
- With a database-managed CMS, all data is saved in a database and will be requested from there. Using such a system therefore requires a database (including the rights to modify it).
Portal systems
Portal systems still are very popular, and there are a large number of different systems (especially in the open source sector). The main advantage of those portals is often their main disadvantage: Using such a system, you can easily (and in a short time) build a complete portal that can be changed in look and feel using "themes" and "skins" (prepared layouts).
On the other hand, those "themes" and "skins" make portal systems quite inflexible when it comes to own enhancements, modifications and changes. Especially regarding the page design, a user has only very limited options. Additionally, nearly all portal systems need a database, and most are a bit on the slow side. Those who just want to set up a portal quickly might be well advised to use such a portal system, but if you have specific ideas or need special functionality, you might find portal systems lacking some flexibility.
Wednesday, February 17, 2010
HTML BASIC
Okay, at The HTML basic Let's we learn some basic code about (html headings, paragraphs, links, and html images)
HTML Headings Code
HTML headings are defined with the <h1> to <h6> tags.
This is a heading
Heading have 6 type and more high the value, Basicly the text in the heading code is also more large.
HTML paragraphs
HTML paragraphs are defined with the <p> tag.
Example :
<p>This is a paragraph</p>
<p>This is another paragraph</p>
Those code will show 2 paragraph (This is a paragraph and This is another paragraph)
and if you wanna change line in a paragraph you can use code <br />
HTML links
HTML links are defined with the <a> tag.
Example :
<a href="http://ibookus.co.cc">This is a link</a>
Note: The link address is provided as an attribute.(You will learn about attributes in a later chapter of this tutorial)
HTML images
HTML images are defined with the <img> tag.
Example :
<img src="http://www.w3schools.com/html/w3schools.jpg" width="104" height="142" />
The Result :
Note: The name and the size of the image are provided as attributes.(You will learn about attributes in a later chapter of this tutorial)
Okay, That's all about HTML Basic Code... See You in HTML Element Topic.!!
Tuesday, February 16, 2010
About HTML
this is Description for Newbie... !!! if you are the master... you can leave to another topic!!Okay, Lets begin form basic..!
Start form What is HTML? (I got this description from w3schools)
- HTML stands for Hyper Text Markup Language
- HTML is not a programming language, it is a markup language
- A markup language is a set of markup tags
- HTML uses markup tags to describe web pages
HTML Tags, HTML markup tags are usually called HTML tags
- HTML tags are keywords surrounded by angle brackets like <html>
- HTML tags normally come in pairs like <b> and </b>
- The first tag in a pair is the start tag, the second tag is the end tag
- Start and end tags are also called opening tags and closing tags
HTML Documents = Web Pages
- HTML documents describe web pages
- HTML documents contain HTML tags and plain text
- HTML documents are also called web pages
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph</p>
</body>
</html>
- The text between <html> and </html> describes the web page
- The text between <body> and </body> is the visible page content
- The text between <h1> and </h1> is displayed as a heading
- The text between <p> and </p> is displayed as a paragraph