Ajax Error !

  1. Login to cPanel: Open your web browser and navigate to your cPanel login page. Enter your credentials to log in to cPanel.

  2. Access File Manager: Once logged in, locate and access the File Manager tool within cPanel. This tool allows you to navigate and manage files and directories on your web server.

  3. Navigate to Applications Folder: In the File Manager, navigate to the directory where your application files are stored. This is typically the public_html or www directory, but it may vary depending on your server configuration.

  4. Locate config.php File: Within the Applications folder, locate the config.php file. This file contains configuration settings for your application, including the base URL.

  5. Edit config.php File: Right-click on the config.php file and select the "Edit" option from the context menu. This will open the file in a text editor within cPanel.

  6. Find Base URL: Search for the line of code that defines the base URL for your application. This line may look something like this:

    define('BASE_URL', 'http://yourdomain.com/');
  7. Update Base URL: Replace the existing base URL with the correct URL for your website. Ensure that the URL is accurate and includes the appropriate protocol (HTTP or HTTPS) and domain name.

Did you find this article useful?