Laravel Technical

Deep Linking Firebase

What is deep linking? Deep links are a type of link that sends users directly to an app instead of a website or a store. They are used to send users straight to specific in-app locations, saving users the time and energy locating a particular page themselves – significantly improving the user experience.   Deep linking does this by specifying…
Doyenhub Product MySQL PHP

Bulk Insert in MySql using LOAD DATA INFILE

Are you looking for the stuff to insert bulk data into MySQL table? Go for “LOAD DATA INFILE” MySQL concept.  This is the best way I am witness of. You might need to use this concept in 2 ways. 1)      Bulk Insert Functionality in PHP Application 2)      Import bulk records directly in MySQL Let’s discuss “How to implement this mechanism”…
Cake PHP Doyenhub Product Laravel PHP

Why PHP Framework over CorePHP?

Why PHP Framework over CorePHP? [caption id="attachment_2613" align="aligncenter" width="1000"] CorePHP-VS-PHPFrameworks[/caption] Introduction In the world of web development, developers often debate the choice between Core PHP and PHP frameworks. While Core PHP offers complete freedom and flexibility, PHP frameworks provide a structured, efficient, and secure way to develop applications. This article delves into why PHP frameworks are often the superior choice…
Codeigniter General Magento MySQL PHP SEO Wordpress

N ideas to increase performance of website – Part 2

N ideas to increase performance of website - Part 2 The Ultimate Guide to Website Speed Optimization: On-Page and Off-Page Techniques Website speed is crucial for user experience and SEO. A fast-loading site improves engagement, reduces bounce rates, and ranks higher on search engines. This guide breaks down essential on-page and off-page optimization techniques to supercharge your website’s performance. On-Page…
Codeigniter General Magento MySQL PHP SEO Wordpress

N ideas to increase performance of website – Part 1

N Ideas to Increase Website Performance – Part 1 [caption id="attachment_24687" align="alignnone" width="696"] N ideas to increase performance of website – Part 1[/caption] Website speed matters. Fast-loading sites perform better across the board, offering a superior user experience, higher conversions, more engagement, and even better search rankings. Mobile traffic makes site speed even more important. After all, no one wants…
Codeigniter PHP

Block directory browsing in PHP

Block Directory Browsing in PHP How to Secure Your PHP Application by Blocking Directory Browsing Directory browsing is an important security consideration for any web application. While developers often take extensive precautions to prevent their code from being copied, one crucial aspect is sometimes overlooked: disabling directory browsing. By implementing this mechanism, you can protect sensitive client-side scripts, stylesheets, images,…
PHP SEO Wordpress

Transfer Blog from google to wordpress

Ohh, Welcome to my blog. Are you looking for the stuff which helps you to transfer your Google Blogspot posts to your own WP Blog Site? You are on right page. I have recently completed this for our company blog site. Here, I am sharing my experience with you. I have referred lots of stuff over internet. Eventually find one…
JQuery PHP Wordpress

Make your WordPress Theme Retina Ready

Retina displays quickly becoming the standard need on phones, tablets and laptops.  Retina display support is for giving great visual impact to viewers by serving high-res images to hi-res devices. There are plugin available for regular WordPress users that will add retina support to their site. Here are my recommendations. WP retina 2x Retina image support Both Plugins has different…
PHP

APC PHP Cache

  APC stands for Alternative PHP Cache, and is a free open-source opcode (operation code) caching plugin for PHP. With APC setup on your server, your PHP script executions can be optimized to run more efficiently, by cutting down on needless dynamic PHP executions. Usage: STEP 1: Make a class say named “apc_caching.php” and place it in “classes” folder for…
Magento PHP

How to manage Session in Magento

Session in Magento can be implemented and managed by one of the following way File system. Database. Memcached. tmpfs Filesystem. Out of these 4 options, 2 options are available while installing Magento from which File system is by default selected. How to Add, Retrieve and Delete (unset) a Magento session?  Add. Syntax to add Magento session Mage::getSingleton(‘{{type}}/session’) ->set{{SESSION_NAME}}(‘VALUE’); For  e.g.…