In a recent project, I’ve been liaising with web security experts to carry out security testing on a number of client servers. During my research, I’ve come across various free tools that can help you identify any potential issues.
- Home
- Blog (Page 2)
0
Creating Symlinks to Libraries in Composer
When developing a new library in PHP, it’s sometimes useful to symlink the library into a project while you work on it. Find out how to update your Composer config to achieve this.
Composer, Development, PHP, TutorialMaking Ajax Calls Sequentially using jQuery
In a recent project, there was a need to make ajax calls to a remote server in a sequential manner to synchronise data. Each call would wait for the previous one to complete, before triggering the next one. See the code here.
Ajax, JavaScript, jQuery, Tutorial