Comments are very useful for websites such as blogs or forums that need to interact with their visitors. In contrast, for some pages, beyond being an unnecessary feature, WordPress comments can be problematic as this is a common method of introducing spam (which can...
In order to use the HTTPS protocol on a website, it is necessary to have an SSL certificate installed on the web hosting. If you have a security certificate and want to configure HTTPS on your website, but it still delivers content via HTTP (insecure), you can force...
In this guide, we will teach you how to move WordPress from one folder to another within the same web hosting. Attention! Before making any changes to the website, make sure you have current backups of both your WordPress installation and the database. This way, you...
Mover una web realizada en WordPress de un hosting web a otro consiste básicamente en crear una copia de seguridad en el alojamiento web de origen y restaurarla en el de destino. Para realizar esta tarea le recomendamos “Duplicator”, el plugin con el que...
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...
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...
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....
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 –...
Please follow the steps below to troubleshoot FTP access issues: 1. Verify your access credentials in the user area of our website, found under “Your services”–> “Detail” –> “Publish Wewbsite”. We suggest using the...
If your website is published and not displaying correctly, check these points: 1. Read carefully the information regarding your hosting in the user area ‘User Area’ under ‘Your Services’ -> ‘Detail (of the hosting service)’ -> ‘Publish Website’ 2. Publish your...
If your website is published correctly but still shows the old version in your browser, you might be accessing it through a proxy from your Internet service provider. The proxy system saves copies of the pages you’ve recently visited, which is why refreshing...
Here are some issues you might face when using your FTP program: You can’t delete a folder. Remember, a folder must be empty before you can delete it. Check the folder to ensure it has no files or subfolders. You can’t publish a file or folder. Note that a...
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...
Website infections are on the rise, leading to the transmission of malware, viruses, or spyware to users visiting the site. It’s crucial for website administrators to oversee the publication and maintenance of their content, as they bear responsibility for it...
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,...
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); //...
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 =...
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...
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...
Once you’ve created a database via your hosting control panel, you can connect to it using PHP. PHP provides a set of instructions for accessing MySQL databases. Here’s an example connection. The sample database details are: Database name: “db_test”...