December 9, 2024 | Blog, Education, Web Development
I am developing a project in which I have to make sure that the user can access the page only if he is logged in, otherwise he should remain at the login page. For which I am going to use middleware. ...December 9, 2024 | Blog, Education, Free Productivity Tools, Quick Fixes, Web Applications, Web Development
Are you adding reCAPTCHA validation to your website forms and Google for the first time and google’s guide is going right above your head? That was me, today morning! But I finally figured it ou...December 4, 2024 | Blog, Education, Technology News
Focusing on Skills Over Degrees Reframe the Degree Mindset: Degrees are just one part of the equation. Attributes like problem-solving, adaptability, and critical thinking often outweigh formal educat...March 22, 2022 | Blog, Uncategorized
Many times it happens that you click a great picture, but it gets spoiled because of any unwanted object, person, text, or something else. If you want to remove the unwanted and fix the picture you ju...November 14, 2014 | Quick Fixes
To remove the pagination from wordpress search page, add the following script in your theme’s functions.php file: function no_nopaging($query) { $query->set('nopaging', 1); } add_action('pars...October 28, 2014 | Web Development
Humans and bots will do similar things, but bots will do things that humans don’t. Let’s try to identify those things. Before we look at behavior, let’s accept RayQuang’s comme...July 2, 2014 | Linux Admin, Quick Fixes
SPF records are required for the EMail address verification by most of the email servers now a days. To help you generate the correct SPF record for your domain, you can use the below SPF record gener...June 29, 2013 | Linux Admin, Web Development
To add/install MSSQL support in PHP5 on Debian linux server, follow the below steps: Install FreeTDS and the PHP MS SQL extension sudo apt-get install freetds-common freetds-bin unixodbc php5-sybase N...June 13, 2013 | Quick Fixes, Web Development
In cakephp most of us use ACL with Auth component to manage logins and access to various pages. When we need to implement this feature based on User Roles only. Sometimes the ARO checking gives error ...January 9, 2013 | Quick Fixes, Web Development
For one of my project I was required to upload files on an FTP server from the PHP script. Searching on Google I found code required but it was not completely available at one place. So I thought to s...