Naveed Ramzan

Let's Payback to Pakistan

Menu
  • Home
  • Vision and Mission
  • Services
    • Trainings
    • Web Development
    • Product Management
    • Project Management
    • Service Management
    • Business Consultancy
    • Book Slot
  • Testimonials
  • Appreciations
  • Photo Gallery
  • Contact Me

How to set up a blog in Magento

August 23, 2012
| 2 Comments
| Magento, Web Development

How to set up a blog in Magento It is not difficult to set up a blog in Magento. However, note that this functionality is not included by default and you will have to use a custom extension to add it. You can search Magento Connect for an extension that will fully suit your needs. […]

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/install-blog-in-magento/" rel="tag">install blog in magento</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a>, <a href="https://naveedramzan.com/tag/magento-blog/" rel="tag">magento blog</a> 2 Comments

How to disable the Compare products functionality

August 23, 2012
| No Comments
| Magento, Web Development

How to disable the Compare products functionality You can disable the Compare products functionality in Magento by following these steps: Edit app/code/core/Mage/Catalog/Helper/Product/Compare.php and change the following code:  public function getAddUrl($product) { return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); } to public function getAddUrl($product) { //return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); return false; } Edit ./app/design/frontend/base/default/layout/catalog.xml (if you are using a different Magento […]

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/compare-option/" rel="tag">compare option</a>, <a href="https://naveedramzan.com/tag/disable-compare-option/" rel="tag">disable compare option</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a> Leave a comment

How to redirect Magento to open through www

August 23, 2012
| No Comments
| Magento, Web Development

How to redirect Magento to open through www For SEO and usability purposes you may want to redirect your visitors to open your site only through www (http://www.yourdomain.com). To do this in Magento, you should open the .htaccess file in the folder where your Magento is installed. In it locate the RewriteEngine on line and […]

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/htaccess/" rel="tag">htaccess</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a>, <a href="https://naveedramzan.com/tag/magento-with-www/" rel="tag">magento with www</a>, <a href="https://naveedramzan.com/tag/redirect-magento/" rel="tag">redirect magento</a>, <a href="https://naveedramzan.com/tag/rewrite-url/" rel="tag">rewrite url</a> Leave a comment

How to speed up Magento

August 23, 2012
| No Comments
| Magento, Web Development

How to speed up Magento Many Magento issues are caused by slow performance. The recommended way to speed up Magento’s performance is to enable its Compilation function.  The performance increase is between 25%-50% on page loads. You can enable Magento Compilation from your Magento admin panel > System > Tools > Compilation.

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/compalition-magento/" rel="tag">compalition magento</a>, <a href="https://naveedramzan.com/tag/configuration-magento/" rel="tag">configuration magento</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a>, <a href="https://naveedramzan.com/tag/speed-up-magento/" rel="tag">speed up magento</a>, <a href="https://naveedramzan.com/tag/system-magento/" rel="tag">system magento</a> Leave a comment

How to enable Search Engine Friendly URLs in Magento

August 23, 2012
| No Comments
| Magento, Web Development

How to enable Search Engine Friendly URLs in Magento To enable Search Engine Friendly URLs in Magento, you have to log in to the Magento administration area and click on the Configuration button. Under the System navigation menu, switch to Web page from the sub-navigation panel on the left. When the page loads, you will […]

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/enable-search-engine/" rel="tag">enable Search Engine</a>, <a href="https://naveedramzan.com/tag/friendly-urls/" rel="tag">Friendly URLs</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a>, <a href="https://naveedramzan.com/tag/magento-search-engine/" rel="tag">Magento SEARCH engine</a> Leave a comment

How to reset Magento Admin Password

August 23, 2012
| No Comments
| Magento, Web Development

How to reset Magento Admin Password Go to your cPanel > phpMyAdmin, select your Magento database, click the SQL tab and paste this query: UPDATE admin_user SET password=CONCAT(MD5(‘admin123’), ‘:sG’) WHERE username=’AdminUsername’; Note: You have to change newpass in the MD5(‘admin123’) with your new password, and change *AdminUsername* to your Magento admin username. Execute the query […]

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/change-password/" rel="tag">change password</a>, <a href="https://naveedramzan.com/tag/database/" rel="tag">database</a>, <a href="https://naveedramzan.com/tag/database-query/" rel="tag">database query</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a>, <a href="https://naveedramzan.com/tag/magento-admin/" rel="tag">magento admin</a>, <a href="https://naveedramzan.com/tag/magento-password/" rel="tag">magento password</a>, <a href="https://naveedramzan.com/tag/update-query/" rel="tag">update query</a> Leave a comment

How to configure Magento to work with a new domain

August 23, 2012
| No Comments
| Magento, Web Development

Easy steps for ‘How to configure Magento to work with a new domain’ There are two things you should do in order to configure Magento to work with a new domain: Edit the Magento database Go to your cPanel > phpMyAdmin. Select your Magento database from the  left menu, find the table called core_config_data and […]

Read More »

Posted in <a href="https://naveedramzan.com/category/web-development/magento/" rel="category tag">Magento</a>, <a href="https://naveedramzan.com/category/web-development/" rel="category tag">Web Development</a> Tagged <a href="https://naveedramzan.com/tag/configuration/" rel="tag">configuration</a>, <a href="https://naveedramzan.com/tag/database/" rel="tag">database</a>, <a href="https://naveedramzan.com/tag/magento-2/" rel="tag">magento</a>, <a href="https://naveedramzan.com/tag/magento-cache/" rel="tag">magento cache</a>, <a href="https://naveedramzan.com/tag/path-change-magento/" rel="tag">path change magento</a>, <a href="https://naveedramzan.com/tag/shifting-magento-website/" rel="tag">shifting magento website</a> Leave a comment

Posts navigation

Previous 1 … 12 13

About Naveed Ramzan

  • Professional Scrum Master Level 1 (Scrum Guide 2020)
  • Professional Scrum Master Level 1 by Scrum.org
  • ITIL (Information Technology Infrastructure Library) v3 by Exin Exam Body
  • Remote Working & Virtual Collaboration by CertiProf


Naveed Ramzan is a “multi-dimensional” person, completed his ICT research under supervision of WHO-Pakistan. ITIL Foundation certified, Training & Development Certificate, Overall has 10+ years experience in web development and CRM/ERP systems. Loves to work in open source.

  • Looking for New Challenges
  • Founder of EverythingPK
  • Founding Member of AgilePK
  • Founding Member of TrainingsPK
  • Founder of LetsHelpPK

View More ...



Contact Me

Recent Posts

  • Talk in Comsats Islamabad on ICT
  • 2020 Learnings
  • 10 Tips to Launch Successful Product
  • Managing Difficult Times
  • Consultancy to Full-Time job

Tags

agile agile culture agile testing appreciation-2015 appreciation-2016 appreciation-2017 appreciation-2018 arrays attitude bootstrap cakephp communication configuration css database drupal google google analytics htaccess html idea transformation islamabad libre calc libre doc libre office life magento microsoft office mvc mysql opensource php Project Management purpose quality requirement analysis scrum self-learning success testing tips ubuntu views web development WordPress


Contact Me

Yes We Can Do It !

I know, you are looking into detail of this article that what we can do? But in fact, it’s all based on a theme “if we want to change the world, initiate by yourself”. A very good quote came across to my mind that “We do not listen to understand but only to respond” and that’s the harsh reality. We just respond, even we don’t know the facts and the situation. We want to participate in the flow of discussion even it’s right or wrong. Read more ...



Contact Me

Social Links

scrum-org-icon
facebook-icon
twitter-icon
google-icon
whatsapp-icon
 flicker-icon
 wordpress-icon
 youtube-icon
 stackoverflow-icon
 linkedin-icon
 quora-icon
 udemy-icon
 skype-icon
 skype-icon
 podbean-icon
 meetup-icon
 Medium-icon
hacker-rank-icon
leet-code-icon
 #NRsharing

Home | Vision and Mission | Services | Testimonials | Appreciations | Photo Gallery | Contact Me

© Naveed Ramzan 2010 - 2023.