Category Archives: Web Application Development

How to Fix the Salesforce “Related List Filters” Property Having an Invalid Value

Problem:

  • You have a Salesforce Lightning Record Page with many related lists.
  • You want to update it.
  • When pressing the Save button you get the error: The ‘Dynamic Related List – Single’ component’s ‘Related List Filters’ property has an invalid value..
  • You want to know which related list causes the issue.

Solution:

  1. Clone the Lightning Record Page.
  2. Click each related list and check the Related List Filters section for any error message in red.
  3. If no error message can be found, delete each related list and click Save after each deletion.
  4. When the error no longer appears, examine the last deleted related list to identify which properties caused the issue.

 

    When to Use Cloud Resources

    Motivation:

    • You are using on-premises virtual servers and storage for your services.
    • You wonder whether you should move your services to public cloud, such as AWS or Azure or Google Cloud, in order to reduce hardware and maintenance cost.

    Suggestions:

    1. It is common that cloud resources for system running 24/7 are much more expensive than private resources.

    2. Cloud resources are suitable for 
      • a very big system that needs to be run only once within limited time, or
      • startup with many consolidated services on single small virtual server, or
      • testing purpose, or
      • a very big company with big budget who want reliable and elastic resources.

         

        How to Reduce Salesforce Licenses Cost

        Motivation:

        • You are using Salesforce for your daily work. It works very well but the cost is too expensive.
        • You want to find  a way to reduce Salesforce licenses cost.

        Suggestions:

        1. Salesforce cost depends on a selected Edition and number of user licenses.

        2. An edition is selected based on features that an ORG needs.

        For example, an ORG that needs the API and Flows feature for custom development has to choose Professional or Enterprise edition.

        The number Flows are very limited for Professional edition (5 flows).

        However the max number of flows of the Enterprise edition is 2000 that may be too many for a small business too.

        This may be Salesforce intention that they want customers to use Enterprise edition.

        3. A license price depends on the selected edition. For example, an ORG needs to  pay $150 /user/month for the Enterprise edition.

        4. A User License may be Salesforce License or Salesforce Platform License. A Profile defines permissions. A Profile with login is attached to one User License (except the case that the Profile is used for Community portal users).

        5. Assume that an ORG may use 13 User Licenses: 5 System Administrators (5 Salesforce Licenses) and 8 Platform Users (8 Salesforce Platform Licenses).

        In order to reduce the cost the ORG may consider some strategies below.

        • The ORG may use shared account for all the employees who have the same responsibilities (tasks) if possible.
        • The ORG may retain only 2 Salesforce licenses: One is for API access and development, and the other is for administrative tasks.
        • The ORG may change appropriate licenses from Salesforce license to Platform license if they do not use the built-in Leads, Opportunities, Forecasts, Cases, and Solutions.
        • The ORG should disable all unused accounts.
        • The ORG may develop Community portal for some user types and move all these users from Platform license to Community license.
        • If you are using Salesforce development platform then try moving your custom development features to another cheaper development platform, such as Zoho Creator.
        • If you are using Salesforce CRM as is then try moving your business workflows and data to another cheaper provider, such as EspoCRM.

         

          How to Back Up and Restore IIS App Pool and Site Settings

          Motivation:

          You want to back up and restore IIS app pool and site settings.

          Solution:

          1. Open Command Prompt (Admin) and execute commands below to export IIS app pool and site settings to XML files.

          %windir%\system32\inetsrv\appcmd list apppool /config /xml > \\192.168.101.140\BCDR\WEBBC02\E\inetpub\apppools.xml
          %windir%\system32\inetsrv\appcmd list site /config /xml > \\192.168.101.140\BCDR\WEBBC02\E\inetpub\sites.xml

          2. Remove all existing IIS app pools and sites, then execute the command below to import IIS app pool and site settings from XML files.

          %windir%\system32\inetsrv\appcmd list apppool /config /xml < \\192.168.101.140\BCDR\WEBBC02\E\inetpub\apppools.xml
          %windir%\system32\inetsrv\appcmd list site /config /xml < \\192.168.101.140\BCDR\WEBBC02\E\inetpub\sites.xml

          How to Select a .NET Framework

          Motivation:

          You need to select a .NET framework for your new project or for upgrading a legacy system.

          However there are too many .NET framework branches so you are not sure which one is suitable with your need.

          Guidelines:

          You need to review the history of .NET framework and the differences among the various branches that include .NET Framework, ASP.NET Web Forms, ASP.NET MVC, .NET Core and .NET 6.

          1. .NET Framework

          The main purpose of .NET Framework is for building Windows Forms Applications.

          • .NET Framework 1.0 was released in 2002.
          • .NET Framework 2.0 was released in 2005.
          • .NET Framework 3.0 was released in 2006.
          • .NET Framework 3.5 was released in 2007.
          • .NET Framework 4.0 was released in 2010.
          • .NET Framework 4.5.2 was released in 2014.
          • .NET Framework 4.8.1 (the latest version) was released in 2022.
          2. ASP.NET Web Forms

          ASP.NET Web Forms was built on top of .NET Framework.

          The main purpose of ASP.NET Web Forms is for building ASP.NET Web Forms Applications (multiple page web applications).

          3. ASP.NET MVC

          ASP.NET Web Forms does not follow MVC architecture pattern. Therefore MS built ASP.NET MVC.

          ASP.NET MVC was built on top of .NET.

          ASP.NET MVC is open-source software, apart from the ASP.NET Web Forms, which is proprietary.

          The main purpose of ASP.NET MVC is for building ASP.NET MVC Applications (multiple page web applications based on MVC architecture pattern).

          • ASP.NET MVC 1.0 was released in 2009 (It was built on top of .NET Framework 3.5).
          • ASP.NET MVC 2.0 was released in 2010 (It was built on top of .NET Framework 4.0).
          • ASP.NET MVC 5 (the latest version) was released in 2022 (It was built on top of .NET Framework 4.8).
          4. .NET Core

          .NET Framework does not run on Linux or Unix and is proprietary. Therefore MS built .NET Core.

          .NET Core runs on Windows, Linux and Unix, and is open-source software.

          • .NET Core 1.0 was released in 2016.
          • .NET Core 3.1 was released in 2019.
          • .NET Core then was renamed to just .NET in 2020 and .NET 5 was released in 2020. The .NET 4 name was not used to avoid name collision with .NET Framework.
          • .NET 8 (the latest LTS version) was released in 2023.

          The main purpose of .NET Core or .NET is for building Windows Forms Applications, ASP.NET MVC Applications and Single Page Applications that run on Windows, Linux and Unix.

          The ASP.NET Web Forms Application type was removed from .NET Core or .NET.

          5. .NET 8

          Currently (in 2024) MS supports 2 branches of .NET:

          • .NET Framework 4.8.1 (containing Windows Forms Applications, Web Forms Applications, and ASP.NET MVC Applications) and
          • .NET 8 (containing Windows Forms Applications, ASP.NET MVC Applications and Single Page Applications).

          Both .NET Framework 4.8.1 and .NET 8 support building microservices.

          6. ASP.NET
          • .NET is a developer platform made up of tools, programming languages, and libraries for building different types of applications.
          • ASP.NET is a .NET web framework. ASP.NET extends the .NET platform with tools and libraries specifically for building web apps. ASP.NET runs only on Windows.
          • ASP.NET Core is the cross-platform version of ASP.NET. ASP.NET Core runs on Windows, Linux, macOS, and Docker.
          • ASP.NET Core MVC is ASP.NET Core with UI components written in HTML, CSS, JavaScript and C#.
          • ASP.NET Core Razor Pages is ASP.NET Core with UI components written in HTML, CSS, JavaScript, Razor markup and C#.
          • ASP.NET Core Blazor is front-end web framework with code written in HTML, Razor markup and C#, and relies on a .NET runtime built with WebAssembly for client-server interactions.
          7. Final thoughts

          For a new system, you probably should use .NET 8 and ASP.NET Core.

          For a legacy system, if you are using ASP.NET Web Forms then you may stick with .NET Framework 4.8.1. Otherwise you may upgrade your system to .NET 8 and ASP.NET Core.

           

           

          Should We Use SOAP or REST or gRPC or GraphQL for API Implementation?

          Motivation

          You want to implement an API for your client to integrate with your system.

          You wonder if you should implement the API using SOAP or REST or GraphQL or gRPC.

          Guidelines

          Technically speaking SOAP is a protocol (developers must respect the protocol specification when working with it) while REST is an architecture style (Developers may not follow it strictly).

          Most of software service providers (e.g. Salesforce, Sharepoint) provide both of them (SOAP and REST) for API clients.

          The reason why a software service provider may implement both SOAP and REST is that legacy systems or frameworks (e.g. .NET, Java) often have many mature tools or libraries for consuming SOAP API easily while modern systems or frameworks (e.g. Node.js) often have many available tools/libraries for quickly consuming REST API.

          If only one approach has to be chosen in order to reduce development cost then selecting SOAP or REST or GraphQL or gRPC for API implementation should depend on the API clients.

          So the strategy below may help us select the most appropirate technology.

          1. Introducing your system capabilities to your client first.
          2. Then find out the main programming language that the client is using for their back-end services (e.g. Java, C#, PHP, JavaScript, Python, Ruby, Go)
          3. Find out the main API technology that the client is using for their back-end services or the API technology that they are most familiar with (e.g. SOAP, REST, GraphQL, gRPC).
          4. Then implement your API using the client’s API technology. The API can be implemented using a programing language that you are most familiar with.
          5. Then create the corresponding API developer guide and sample code for the client using their programming language.

           

          How to Fix IIS Express HTTPS Error

          Problem:

          You have created an ASP.NET web application with HTTPS.

          You ran the application on https://localhost:5001 and got the “ERR_CONNECTION_RESET” error.

          Solution:

          1. Open Command Prompt with admin rights.

          2. Type and press Enter

          cd "C:\Program Files (x86)\IIS Express"

          3. Type and press Enter

          IISExpressAdminCmd.exe setupsslUrl -url:https://localhost:5001/ -UseSelfSigned

          Change 5001 in the command above to the port you’re trying to use.

           

          How to Fix a Hacked WordPress Website

          Problem:

          When you visit your WordPress website you are randomly redirected to unwanted websites.

          Verification:
          • Log in your website as an Administrator.
          • Go to Appearance >> Theme File Editor.
          • Click on the Theme Functions link on the right side.
          • Verify if malicious code was injected into the functions.php file. Example of malicious code:
            <?php @ini_set('display_errors', '0'); 
            error_reporting(0); 
            global $zeeta;
          • Download the wp-config.php file to your machine via FTP or SSH.
          • Verify if malicious code was injected into the wp-config.php file. Example of malicious code:
            include_once(ABSPATH . WPINC . '/header.php');
          Solution:
          • Stop the website.
          • Download the whole website to your local machine.
            cd /var/hosting/huybien.com
            ls
            sudo zip -r huybien.zip /var/hosting/huybien.com/html
          Configuration:
          • Log in your website as an Administrator.
          • Change your Administrator’s password.
          • Change file owner and group to www-data:
            sudo chown -R www-data:www-data /var/hosting/huybien.com/html
          • IMPORTANT STEP – Set minimum permissions for folders and files:
            cd /var/hosting/huybien.com/html
            sudo find . -type d -exec chmod 755 {} \; # directory permissions rwxr-xr-x
            sudo find . -type f -exec chmod 644 {} \; # file permissions rw-r--r--
          • Remove all the unused plug-ins or themes.
          • Install, activate and configure a CAPTCHA plug-in to protect Login Form, Registration Form, Lost Password Form, Reset Password Form and Comment Form if there is no one.
          • Disable insecure FTP access if there is one.
          • Install and activate the Simple History plugin to review access to your website. After 1 or 2 days, review the access information, and possibly block the malicious IP addresses using the Windows Firewall.
          • Install, activate and configure Cerber Security plug-in to automatically detect and block the malicious IP addresses.
          • Back up database.
            cd /home/ubuntu
            ls
            mysqldump -u root -p -h localhost huybiencomwp > huybiencomwp.sql
          • Back up files.
            cd /home/ubuntu
            ls
            sudo zip -r /home/ubuntu/huybien.zip /var/hosting/huybien.com/html
          • Download database and files backup.
          • Remove the backups.
            sudo rm -rf /home/ubuntu/huybiencomwp.sql
            sudo rm -rf /home/ubuntu/huybien.zip
            ls

           

          How to Manually Install PHP 7.4 on Windows Server 2019

          Motivation:

          • You want to deploy a PHP application or WordPress on Windows Server 2019.
          • You want to update PHP to any version to address compatibility or security issues in Windows.
          • You want to understand how PHP works with IIS.

          Solution:

          • Install CGI for IIS on Turn Windows features on or off > Internet Information Services > World Wide Web Services > Application Development Features > CGI.
          • Download VC15 x86 Non Thread Safe package here or under PHP 7.4 section from http://windows.php.net/download/
          • Extract the ZIP file to the C:\Program Files (x86)\php-7.4.9-nts-Win32-vc15-x86 folder.
          • Rename the php-.ini-development file to php.ini.
          • Open the php.ini file and add the following line at the end of the file.
            extension=php_wincache.dll
          • Uncomment the following lines
            fastcgi.impersonate = 1;
            
            cgi.fix_pathinfo=1;
            cgi.force_redirect = 1 (and change the value to 0, i.e. cgi.force_redirect = 0)
            
            extension_dir = "C:\Program Files (x86)\php-7.4.9-nts-Win32-vc15-x86\ext"
            
            extension=php_curl.dll
            extension=php_fileinfo.dll
            extension=php_mbstring.dll
            extension=php_exif.dll
            extension=php_mysqli.dll
            extension=php_pdo_mysql.dll
            extension=php_openssl.dll
            
            error_log = "C:\Program Files (x86)\php-7.4.9-nts-Win32-vc15-x86\php_errors.log"
            
            error_log = syslog
          • A sample php.ini file can be download here.
          • Add C:\Program Files (x86)\php-7.4.9-nts-Win32-vc15-x86 to System Path.
          • Download x86 package of WinCache 2.0 for PHP 7.4 here or from https://sourceforge.net/projects/wincache/.
          • Extract and copy the php_wincache.dll file to C:\Program Files (x86)\php-7.4.9-nts-Win32-vc15-x86\ext
            folder.
          • Open IIS, click on Server name, double click on Handler Mappings, click on Add Module Mapping, and enter below information.
            Request path = *.php
            
            Module = FastCgiModule
            
            Executable = "C:\Program Files (x86)\php-7.4.9-nts-Win32-vc15-x86\php-cgi.exe"
            
            Name = PHP 7.4
            
            Request Restrictions = File or folder
          • Download and install VC_redist.x86.exe of Microsoft Visual C++ Redistributable for Visual Studio 2019 here or on https://visualstudio.microsoft.com/downloads/#microsoft-visual-c-redistributable-for-visual-studio-2019
          • en a Command Prompt, execute below command and ensure that NO WARNINGS APPEAR.
            php --version
          • Create phpinfo.php file with below content in the root website folder.
            <?php phpinfo(); ?>
          • Open http://localhost/phpinfo.php URL and verify PHP information.

           

          How to move a WordPress instance from one server to another Linux server

          Motivation:

          You want to move a WordPress instance from one server to another to consolidate your websites to reduce cost.

          Solution:

          Install and use below Duplicator plugin to achieve your goal.

          https://wordpress.org/plugins/duplicator/

          User guide: https://snapcreek.com/duplicator/docs/quick-start/

          If everything goes well for you then congratulation!

          Otherwise, please review below possible problems and corresponding solutions.


          Problem 1:

          You don’t have a website on the new server.

          Solution 1:

          1. Create a new virtual host in the /etc/httpd/conf/httpd.conf

          <VirtualHost *:80>
          ServerName example.com
          ServerAlias www.example.com
          DocumentRoot "/var/www/www.example.com"
          </VirtualHost>

          2. Set 775 permission for /var/www/www.example.com

          3. Restart httpd service

          sudo systemctl restart httpd

          Problem 2:

          You are using Amazon Linux 2 server.

          You are logged in as ec2-user.

          You use WinSCP to upload files and edit configuration files.

          You cannot modify /etc/httpd/conf/httpd.conf and /etc/php.ini.

          Solution 2:

          1 View permission settings for the file

          ls -ld /etc/httpd/conf/httpd.conf

          The result indicates that the file owner is root user and root group, not ec2-user.

          2. View groups of a user

          groups ec2-user

          The result indicates that the ec2-user does not belong to root group.

          3. Add a user to root group

          sudo usermod -a -G root ec2-user

          4. Grant Read-Write permission against a file to root group

          sudo chmod g+rwx /etc/httpd/conf/httpd.conf
          sudo chmod g+rwx /etc/php.ini

          5. Logout and login to the server again.


          Problem 3:

          You are using Amazon Linux 2 server. The ZipArchive feature is missing.

          Solution 3:

          1. Execute below commands:

          sudo amazon-linux-extras install php7.2
          sudo yum install php-pear php-devel gcc libzip-devel zlib-devel
          sudo pecl install zip-1.13.5 # we must specify a slightly older version due due to compatibility

          2. Add “extension=zip.so” to /etc/php.ini

          3. Restart the server

          sudo reboot

          Problem 4:

          You don’t have a WordPress database on the new Linux server.

          Solution 4:

          Execute below MySQL commands:

          CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
          CREATE DATABASE `wp_database`;
          GRANT ALL PRIVILEGES ON `wp_database`.* TO "username"@"localhost";
          FLUSH PRIVILEGES;

          Problem 5:

          An database error occurs while restoring a website.

          Solution 5:

          1. Execute below commands to remove the website:

          sudo chown -R ec2-user:apache /var/www/example.com
          sudo chmod 2775 /var/www/example.com && find /var/www/example.com -type d -exec sudo chmod 2775 {} \;
          find /var/www/example.com -type f -exec sudo chmod 0664 {} \;
          rm -r /var/www/example.com

          2. Upload the Duplicator files again, and restore the website again.


          Problem 6:

          No write access against /var/www/example.com is available for Duplicator.

          Solution 6:

          1. Execute below commands:

          sudo chown -R ec2-user:apache /var/www/example.com
          sudo chmod 2775 /var/www/example.com && find /var/www/example.com -type d -exec sudo chmod 2775 {} \;
          find /var/www/example.com -type f -exec sudo chmod 0664 {} \;

          2. Run http://example.com/installer.php again.