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 out and obviously I’d like to share what errors I faced and how I solved it. I am working on Laravel...
Category: Quick Fixes
Remove pagination from WordPress Search page
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('parse_query', 'no_nopaging'); And you are done!
Generate SPF Record
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 generator: http://www.royhochstenbach.com/projects/spfgenerator/
Cakephp preventing ARO to check for user permissions
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 – that the User not exist for the foreign key. This is because if the role does not have...
Uploading files to FTP server from PHP Script
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 share this here for use by others as tried and tested code, working on a live...
Fix Error 0x80070424 on windows
Recently while visiting a website I got infected by Live Security Platinum malware which disabled all security services on my PC. I was able to remove this using the free Malware Bytes Anti spyware tool. But the Windows firewall and McAfee firewall were unable to run due to some bugs made in the windows. As...
Configuring Horde Vacation Responder in Plesk 9
Today I had to work on the Plesk server webmail vacation responder settings, and looking at the Horde webmail option I found that this is not available in the default Horde Install in Plesk 9. Digging through many google search pages and search phrases I found a very useful and working link given below. Configuring...
WordPress update issue on Plesk Control Panel hosting
Most of us work with WordPress and while working we use the handy auto update feature in the admin panel to update the WordPress plug-ins and core. On Plesk control panel, sometimes it asks for FTP access details to write the files on the server. This could be quite irritating to input the same FTP...
Connecting Sony K750 with Windows 7
I had a old Sony Ericsson phone working great for me since long. Recently I upgraded my PC with new Windows 7 professional. I usually does not need to connect my PC with phone as I use the phone primarily for calling and texting only. But recently I bought a new Android mobile and wanted...
Reset password of Joomla 1.0.x Administrator
Recently I need to upgrade one Joomla 1.0.x installation to the new installation. If you are also dealing with Joomla 1.0 installation to upgrade or maintain and missed the password for admin user. This can also be useful if you need to add new admin user, without disturbing the old user records. Then here are...