Loading...

Category: PHP

How to Fix Too Many Redirects Issue in WordPress wp-admin

It may happen due to improper url configuration while migrating from http to https. Here is how you can fix this issue. 1. Update WordPress Address (URL) and Site Address [ … ]

Busting Browser Cache by CSS Versioning

If you are tired of pressing ‘ctrl+f5’ every time you update your site’s CSS (or JS) to see the changes, then here is a good idea to fool and force [ … ]

How to Modify Leave a Reply Text in WordPress

This can be easily modified in the source code. Open /wp-includes/comment-template.php file and search for ‘Leave a Reply’ term. It will be in $default array-

PHP Data Types

There are eight primitive Data Types in PHP. String Integer Float or Double Boolean Array Object NULL Resource

Securing PHP Web Applications

1) Always validate data in the server side before processing it, even though you are validating in the client side using jQuery/JavaScript. 2) Never  trust user inputs. We should always [ … ]