There has been an error processing your request Exception printing is disabled by default for security reasons.
-
zendnwar
-
September 28, 2012
-
Magento
-
0 Comments
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?
-
zendnwar
-
September 28, 2012
-
SEO
-
0 Comments
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.
-
zendnwar
-
September 27, 2012
-
Magento
-
0 Comments
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?
-
zendnwar
-
September 25, 2012
-
Magento
-
0 Comments
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?
-
zendnwar
-
September 21, 2012
-
SQL
-
0 Comments
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
Search Engine Optimization Training in Bangladesh
-
zendnwar
-
September 18, 2012
-
SEO
-
3 Comments
Continue Reading
TCPDF ERROR: Some data has already been output to browser, can’t send PDF file
-
zendnwar
-
September 14, 2012
-
Cakephp
-
280 Comments
TCPDF ERROR: Some data has already been output to browser, can’t send PDF file Above message show that TCPDF Header yet not clear. you should clear header. just use below code : ob_end_clean(); echo $pdf->Output(‘SE-‘.$data‘first_name’.pdf’,’D’); If you face any problem just reply me.
Continue Reading
SQL Create Database
-
zendnwar
-
September 14, 2012
-
SQL
-
0 Comments
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?
-
zendnwar
-
September 14, 2012
-
SQL
-
0 Comments
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?
-
zendnwar
-
September 14, 2012
-
SQL
-
0 Comments
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