7-Views - Page 5 of 8 - Developers Blog

Force your site to load securely with an .htaccess file in apache

Posted by
October 31, 2018

If you have added an SSL certificate to your domain, you can force all visits to your site to use HTTPS to ensure your traffic is secure. This page lists examples on how to do this depending on how your site is hosted. RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

read more

count(): Parameter must be an array or an object that implements Countable

Posted by
October 16, 2018

count() throws a warning since PHP 7.2 in case a scalar or non-countable object is passed. We rely on this behavior in many places so code needs to be adjusted. More info https://wiki.php.net/rfc/counting_non_countables http://php.net/manual/en/function.count.php   Here is my solution for this. function count_array($aArr) { if (is_array($aArr)) { return count($aArr); } else { return 0; } } […]

read more