Welcome to PhpSpreadsheet’s documentation

Welcome to PhpSpreadsheet’s documentation Welcome to PhpSpreadsheet’s documentation – PhpSpreadsheet Documentation PhpSpreadsheet is a library written in pure PHP and offers a set of classes that allow you to read and write various spreadsheet file formats such as Excel and LibreOffice Calc.
Continue reading

Adding a Computer to a Domain via the GUI

Assuming you’re on a Windows 10 workgroup computer that can access an existing domain controller: 1. Run the command sysdm.cpl. This command will open the System Properties control panel applet. 2. On the System Properties screen, click the Change button. This button will bring up the Computer Name/Domain Changes dialog box. 3. You can see below this...
Continue reading

IIs + Php install

https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-connect?view=sql-server-ver15 https://docs.microsoft.com/en-us/sql/connect/php/example-application-sqlsrv-driver?view=sql-server-ver15 https://docs.microsoft.com/en-us/sql/connect/php/getting-started-with-the-php-sql-driver?view=sql-server-ver15 https://technote.atozservice.net/wp-admin/post-new.php https://docs.microsoft.com/en-us/sql/connect/php/download-drivers-php-sql-server?view=sql-server-ver15 https://docs.microsoft.com/en-us/sql/connect/php/step-2-create-a-sql-database-for-php-development?view=sql-server-ver15 https://docs.microsoft.com/en-us/iis/application-frameworks/install-and-configure-php-on-iis/install-the-sql-server-driver-for-php https://docs.microsoft.com/en-us/sql/connect/odbc/download-odbc-driver-for-sql-server?view=sql-server-2017
Continue reading

Password Validation with PHP and Regular Expressions

Regular Expressions are equally complicated and elegant at the exact same time. They may be made to look like someone was only hammering randomly on their keyboard. They’re also a remarkably effective and elegant solution to describing the structure of the text and fitting those structures. They’re very handy...
Continue reading

How to validate password with regular expression,PHP

Today’s post is about password validation in PHP using Regular Expressions. Here is the small use full Password Validation function. function is_valid_password($password) {    return preg_match_all(‘$S*(?=S{8,})(?=S*[a-z])(?=S*[A-Z])(?=S*[d])(?=S*[W])S*$’, $password) ? TRUE : FALSE;} Password Regular Expression Pattern $S*(?=S{8,})(?=S*[a-z])(?=S*[A-Z])(?=S*[d])(?=S*[W])S*$ Regular Expression Pattern Description      $ =                 beginning of string    S* =                any set of characters(non-whitespace...
Continue reading

OC 3.0.2.0 – Password Length & Complexity

Go to file catalog/view/YOUR-THEME/default/template/account/register.php,Search for the line :<input type=”password” name=”password” value=”{{ password }}” placeholder=”{{ entry_password }}” id=”input-password” class=”form-control” /> Replace It with :<input type=”password” name=”password” value=”{{ password }}” placeholder=”{{ entry_password }}” id=”input-password” class=”form-control” pattern=”^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]{8,}” title=”Minimum eight characters, at least one uppercase letter, one lowercase letter, one number and...
Continue reading

How To Force Customers To Use Strong Passwords In OpenCart

With cyber security becoming a larger concern to businesses online I thought I would write a blog post on how you can ensure that passwords are strong enough on customer accounts.When customers register for an account on a default OpenCart installation, the only requirement seems to be that...
Continue reading

Using an SPF Record to Prevent Spam

https://www.ionos.com/help/domains/configuring-mail-servers-and-other-related-records/using-an-spf-record-to-prevent-spam/ Especially for a business, it is important to prevent the sending of spam using your email addresses. An effective protection against abusive email sending is an SPF record that you can add to your domain at IONOS. You can use it to strictly define that only email coming from...
Continue reading