Loading

Complete PunBB Forum setup guide, modification, Run Guide

On the web you can find abundant number of Open source Forum scripts, many of the famous names are VBulletin, IPB, PhpBB,SMF etc, PunBB is a very speedy growing forum script that is a very outstanding scripting and excellent feature sets. This article would be covering every aspect of setting up and using a PunBB Forum.

  • Firstly Download the PunBB forum script from: http://punbb.informer.com/downloads.php
  • Upload the forum script zip file to the location where you would like to install the forum.
  • Create a Database, Create a database user
  • Run the install: http://yourdomain.com/forum/index.php
  • Follow the steps and it’s very easy until it gives the finish button.

 

Read the rest of this entry »

Complete PunBB Forum setup guide, modification, Run Guide

What is SQL injection, All about SLQ Injection

SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed. It is an instance of a more general class of vulnerabilities that can occur whenever one programming or scripting language is embedded inside another. SQL injection attacks are also known as SQL insertion attacks.

Forms of vulnerability
Incorrectly filtered escape characters
This form of SQL injection occurs when user input is not filtered for escape characters and is then passed into an SQL statement. This results in the potential manipulation of the statements performed on the database by the end user of the application.

The following line of code illustrates this vulnerability:
statement = "SELECT * FROM users WHERE name = '" + userName + "';" Read the rest of this entry »

What is SQL injection, All about SLQ Injection

How to Backup MYSQL databse using phpmyadmin

Below are the screen shots with steps, Begin by clicking database in your phpMyAdmin panel.

backup1

You may have several databases. Click the one that holds your WordPress data, the database you created when you installed

backup2

This shows only default tables. You may have more tables — this would happen if you have any statistics plugins or anti-spam plugins.

backup3

Read the rest of this entry »

How to Backup MYSQL databse using phpmyadmin

Intro About MYSQL

About
MySQL is currently the most popular open source database server in existence. On top of that, it is very commonly used in conjunction with PHP scripts to create powerful and dynamic server-side applications.

MySQL has been criticized in the past for not supporting all the features of other popular and more expensive DataBase Management Systems. However, MySQL continues to improve with each release (currently version 5), and it has become widely popular with individuals and businesses of many different sizes.

What is a Database?
A database is a structure that comes in two flavors: a flat database and a relational database. A relational database is much more oriented to the human mind and is often preferred over the gabble-de-gook flat database that are just stored on hard drives like a text file. MySQL is a relational database.

In a relational structured database there are tables that store data. The columns define which kinds of information will be stored in the table. An individual column must be created for each type of data you wish to store (i.e. Age, Weight, Height).

Read the rest of this entry »

Intro About MYSQL