Scenario: I am installing a fresh magento 1.3.2.1 in my Windows XP computer. I have Xampp installed. While installing magento, I had a problem at the configuration step where I had to fill database host, username, password etc. When I click continue after filling the required fields, the installation process doesn’t move forward. I am [...]
I was installing Magento 1.3.2.1 in my Windows XP computer. I am using Xampp. I encountered the following errors during the installation. PHP Extension “curl” must be loaded PHP Extension “mcrypt” must be loaded PHP Extension “pdo_mysql” must be loaded
Here, I am going to show you how easy it is to upload multiple files with the help of jQuery and PHP. I suppose that you are familiar with php and apache web server.
Let the page path be: http://localhost/test/admin/index.php Get the server name/site name of your website: echo $_SERVER['SERVER_NAME'];
Error: A potentially dangerous Request.Form value was detected from the client Scenario: When you put html tags in your form fields (textbox,textarea) like
Error description: Cannot insert the value NULL into column ‘SourceId’, table ‘Advisory.dbo.AdvDocSource’; column does not allow nulls. INSERT fails. The statement has been terminated. The ‘CompanyAdd’ procedure attempted to return a status of NULL, which is not allowed. A status of 0 will be returned instead. ——————————- This error occurs because the ‘SourceId’ column in [...]
This error might occur if you have selected your selection list (dropdownlist) multiple times. You can add multiple=”true” e.g. in your selection list so as to enable multiple item select. If you don’t want your selection list to be multiple select enabled then you have to check whether you have selected the selection list multiple [...]
convert string to datetime string datestring = “18 March 2008″; DateTime parseddate = Convert.ToDateTime(datestring); Response.Write(parseddate); convert datetime to string
Change page title and meta tags dynamically/programmatically in C#.net to change page title Page.Title = “New Page Title”;
Facebook Connect is the next iteration of Facebook Platform that allows users to “connect” their Facebook identity, friends and privacy to any site. This enables third party websites to implement and offer even more features of Facebook Platform off of Facebook – similar to features available to third party applications today on Facebook. Facebook has [...]
The OpenSocial API is a set of common APIs for building social applications on many websites. There are two ways to access the OpenSocial API: client-side using the JavaScript API, and server-side using REST or RPC protocols. JavaScript API
Suppose you want to show your google adsense in the top-left side of your post. If you simply put your adsense code in the single post page (single.php) of wordpress then the text of your post will appear below the adsense. To solve this problem, I used stylesheet property called ‘margin’. The example below is [...]
Suppose, you have many sub pages (child pages) of a single parent page. You want to show the list of all the child pages in the parent page. You can show the list of pages and sub pages in the sidebar of your wordpress theme with the addition of in-built sidebar widget called ‘Pages’. This [...]
Earlier I had written an article on How to get(view) html source code of a website . I had created an application and that would grab the html code of any website. In this article, I will be writing on how you can modify the looks of a website by changing the html source code [...]
Exactly before one year, I was doing a shopping cart project in Zen-cart. I had to display ‘All Products’ and ‘New Products’ listing in column/grid layout. The default layout was row layout. Then I searched if there was any addon which could help in my problem. But I couldn’t find any. The response that I [...]