PHP Security in 2025: Salts, Hashing, and Safer Passwords (the right way)
Secure PHP passwords in 2025: use password_hash() + password_verify() (Argon2id), auto-rehash on login, no manual salts. Code snippets, checklist, and migration tips.
Secure PHP passwords in 2025: use password_hash() + password_verify() (Argon2id), auto-rehash on login, no manual salts. Code snippets, checklist, and migration tips.
This article will show you a simple tool to instantly speed up your site just by adding one line of code to it. In today’s world, optimisation of the web site is a difference between high converting place and no converting place. Amazon researched that just by removing 100ms of your site… Read More »Speed up your site instantly using this simple tool
Are you seeing problems with Bower remote repositories? Here is a quick info on what is going on and how to fix it.
Debugging WP Mail is hard as it only returns true or false. I am showing you a way to get those WP Mail debugging messages in your error log file.
In today’s small tip, I will show you how to copy and paste whole rows from one OptimizePress site to another.
Speed undoubtedly matters and is being considered in everything, whether it’s a car speed or just a business website loading speed. None of us can neglect its significance at all. When it comes to the technology, WordPress is the most feature-rich CMS embellished with top-class functionality that can not only optimize your… Read More »Improve WordPress Speed in simple steps
Recently I’ve ran into a serious pickle – WordPress menu disappeared on me after adding new items and clicking on “Save menu” button. Naturally, I’ve tried increasing “max_input_vars” cause WordPress is known to be messing up menus with large items (menu in question had 89 items). But this didn’t help. So, I’ve… Read More »WordPress issue: menu disappeared after saving
Recently I needed to show posts that weren’t in any of the categories (for my custom archive page). It is a very common problem that you encounter when adding new custom post types to WordPress. I came up with this little WordPress tip: [code lang=”php”] $postsWithoutCategories = new WP_Query(array( ‘post_type’ => ‘post’,… Read More »WordPress tip: Show posts without any category or even custom term
I was playing with Homestead on a Windows machine and found out how difficult it is to install and use Gulp on Windows and Homestead. So I decided to write it down and share it.