Google warns about infected websites

When browsing some websites, you might come across a Google warning that says: “This site may harm your computer”. This is an optional feature called “Google SafeBrowsing”. It detects infected websites, adds them to a blacklist, and alerts you in search...

How to create a MySQL database

You can create databases from the Control Panel. 1. To do this, access the User Area at https://users.spacewww.com Once inside the User Area, go to the section “Your Services” –> “Detail” (of the web hosting) –> “Control...

FTP access with FileZilla

Download FileZilla: https://filezilla-project.org/download.php To connect via FTP to your web hosting using FileZilla, follow these steps: 1. Open the FileZilla program and in the upper left corner, in the icon bar, access the “Site Manager”   2....

Secure FTP access

Para conectarse por FTP de manera segura, siga estas instrucciones: 1. Open your FTP program and go to the login tab. If you’re using FileZilla, access your site manager. 2. Check your FTP account connection details in our user area –...

Usage of .htaccess

Sometimes it may be necessary to have a .htaccess file to set up URL redirects, also called ‘friendly URLs’. The .htaccess file can be published using any FTP program. It should be published in the folder where the effect is desired. If it is for the...

Web redirection

Sometimes, it’s necessary to redirect a website or folder on our hosting to a specific URL. There are several simple procedures for creating this redirect, which we’ll detail below.   HTML Redirection Redirection in HTML is achieved using a META tag,...

How can you debug errors in your PHP code?

The error_reporting command specifies which errors are reported to the programmer. Here are various ways to use error_reporting: <%?php // Disable all error reporting error_reporting(0); // Simple execution errors error_reporting(E_ERROR | E_WARNING | E_PARSE); //...

Email sending examples in PHP

To send emails with PHP, use the mail() function. For complete information about this function, visit https://www.php.net/manual/en/ref.mail.php Here’s an example of sending emails with PHP. <?php // Assign the recipient’s address $destination =...

Import databases using PhpMyAdmin

The PhpMyAdmin utility lets you IMPORT databases by using a text file containing the SQL statements of a database, which generates the tables and data previously exported from another database. We need to import a previously generated file. Ensure you have a copy of...

Export databases using PhpMyAdmin

The PhpMyAdmin utility lets you EXPORT databases, meaning you can get all the contents of a database in a text file. This is useful for creating a backup copy or transferring that content to a different database engine. 1. Access PhpMyAdmin using your administrator...