Other

code

How to Run (Deploy) a Single Page Application (SPA) on Shared Hosting

Last updated: 06.11.2025
Views: 280
Building modern websites with Vue or React has become the standard practice in web development. However, when you try to deploy a Single Page Application (SPA) to a regular shared hosting environment, you may encounter a common issue — only the home page loads correctly, while all internal routes (pages) return a 404 error. This happens because the hosting server doesn’t understand client-side rou...
code

Making a Query in Salesforce Using SSJS

Last updated: 09.04.2026
Views: 370
When working with Salesforce Marketing Cloud, you may need to send data to an external service or fetch content dynamically based on request parameters. Server-Side JavaScript (SSJS) gives you the flexibility to perform HTTP requests, handle responses, and manipulate JSON data directly within your cloud pages or emails. In the example below, we use Platform.Load to initialize the core library, ret...
code

Protecting a Website or Directory with a Password Using .htaccess and .htpasswd

Last updated: 26.10.2025
Views: 384
Securing a website or a specific directory with a password is a simple yet effective way to restrict access. This can be done using .htaccess and .htpasswd files in Apache. The .htaccess file controls access, while the .htpasswd file stores the usernames and hashed passwords. Video Instruction The video instructions show a slightly different setup option. Creating the .htpasswd File The ...
code

How to Install and Delete XAMPP on Linux (Ubuntu)

Last updated: 26.10.2025
Views: 303
XAMPP is a web development server build. This software is cross-platform, there are versions for Linux, Windows and Mac. The build includes Apache, PHP, MariaDB, phpMyAdmin. The project is constantly evolving. You can download XAMPP at www.apachefriends.org/download.html Installation After downloading the package, let's set the rights. [bash] sudo chmod 755 xampp-linux-*-installer.run [/...
code

How to Remove WWW From a Website Address

Last updated: 05.04.2026
Views: 465
When setting up a website, one of the small but important technical details is choosing a preferred domain version — with or without “www”. From an SEO perspective, this decision matters because search engines may treat these versions as separate URLs if they are not properly configured. This can lead to duplicate content issues, split ranking signals, and weaker overall visibility in search resul...