Which Are The Most Secure Programming Language In 2019

Here is a list with 5 of the most used programming language so you can make an ideea which is the most secure progrmming language you should use. In order to examine vulnerabilities in any language, it’s crucial to take into consideration different elements such as Barrier Flow susceptability, Usual Weakness List (CWE), Heartbleed Pest,… Continue reading Which Are The Most Secure Programming Language In 2019

How To Get All Occurrences of a string php between delimiters

Using the following function we get all occurences from a string which are between two delimiters. As you can see all paramters you have to pass is the string where the function will serach, the start delimiter and the final delimiter. Get all occurences of a string php public function getContents($str, $startDelimiter, $endDelimiter) { $contents… Continue reading How To Get All Occurrences of a string php between delimiters

How To Use Redis As Session Handler For Ratchet Server – Symfony

In order to make use of the full functionality of ratchet you will need to select a session handle in order to be able to send the current user id in the websocket server. Because you will need in the future to send some information to a specific user. To do that you will have… Continue reading How To Use Redis As Session Handler For Ratchet Server – Symfony

How to fix WordPress Wp-admin not found NGINX

If you decided to move from apache to nginx due to the speed at its disposal you will notice that some errors come up at your wordpress functionality because you need to make some settings in the configuration file of your server in nginx.  I had the same issue after installing the nginx on my… Continue reading How to fix WordPress Wp-admin not found NGINX

How To Export HTML to Excel using PHP

Excel is among the most used file types to export your website data, so in this tutorial I will show you how to export html to excel using php. It’s not that hard I will give you the main class of this functionality, then you only need to call the function and provide the required… Continue reading How To Export HTML to Excel using PHP