Blog: Extra-ordinary

There has been an error processing your request Exception printing is disabled by default for security reasons.

There has been an error processing your request  Exception printing is disabled by default for security reasons. solution: open “errors” folder(E:\xampp\htdocs\magento\errors). Change local.xml.sample to local.xml Open E:\xampp\htdocs\magento\lib\Zend\Cache\Backend\File.php protected $_options = array( ‘cache_dir’ => ‘null’, change to protected $_options = array( ‘cache_dir’ => ‘tmp/’, Now the final step is to go create a “tmp” folder in the root Magento folder(E:\xampp\htdocs\magento) I …

Continue Reading

what is keyword density?

what is keyword density? Keyword density is important in search engine ranking. Keyword density is number of times a keyword or a keyword phrase, in proportion on a Web page. The more times the keyword appears in relation to the total number of on page words, the greater the overall keyword density. Keyword density is a combination of the number …

Continue Reading

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Solution: Actual problem with the server, resulting in the 503 error response. In this case, you should contact your hosting provider. OR delete/rename the maintenance.flag file.(E:\xampp\htdocs\magento  ) Hope it will be solve.

Continue Reading

How to install sample data for magento?

How to install sample data for magento Step1: Download sample data from http://www.magentocommerce.com/download Step2: Extract the sample data files from the archive. you will get magento_sample_data_for_1.6.1.0.sql Step3: Create a new aempty database for Magento. Step4:  Import the sample data sql file (magento_sample_data_for_1.6.1.0.sql) into your empty Magento database. Step5: Continue your normal installation process.

Continue Reading

What is view in sql?

What is view? A view is, in essence, a virtual table. It does not physically exist. Rather, it is created by a query joining one or more tables. . A view is actually a composition of a table in the form of a predefined SQL query. A view can contain all rows of a table or select rows from a …

Continue Reading

SQL Create Database

SQL Create Database Basic syntax of CREATE DATABASE statement: CREATE DATABASE DatabaseName; Example: If you want to create new database <Payroll>, then CREATE DATABASE statement would be as follows: CREATE DATABASE Payroll; Your database has been created as a name of “Payroll”

Continue Reading

What is Table?

What is Table? Tables are used to provide reference to comparative data when individual comparisons are not possible or preferable. In database terms, a table is responsible for storing data in the database. Database tables consist of rows and columns. Each column contains a different type of attribute and each row corresponds to a single record. For example, imagine that …

Continue Reading

what is database?

what is database? A database is a collection of data. Databases are designed to offer an organized mechanism for storing, managing and retrieving information. They do so through the use of tables. General Objectives: The elimination of data redundancy is only one of many reasons for establishing a database. Others include: Integrate existing data files Share data among all users …

Continue Reading