TestingDocs.com
Software Testing website
  • Automation
    • Selenium
    • JBehave Framework
  • Tutorials
    • MySQL Tutorials
    • Testlink
    • Maven
    • Git
  • IDEs
    • IntelliJ IDEA
    • Eclipse
  • Flowcharts
    • Flowgorithm
    • Raptor
  • About

TestLink Tutorial

TestLink REST API Apache Server Configuration

Overview

Apache Server Configuration: We need to configure the Apache Webserver to enable the .htaccess mod_rewrite module for TestLink REST API to work. There are different steps to enable this module based on the operating system. We need to tweak some lines in the Apache configuration file.

Apache Server Configuration

Apache configuration files based on OS environments.

Windows      —>  http.conf
Linux             —> apache2.conf

http.conf is the main Apache configuration file. Steps to enable the mod_rewrite module on Windows 10 Operating system are as follows:

Locate the http.conf configuration file located under conf apache server directory.

Open the file using a text editor. (for example Notepad++ )

Enable the mod_rewrite module. Uncomment the line: i.e remove the #

#LoadModule rewrite_module modules/mod_rewrite.so
to

LoadModule rewrite_module modules/mod_rewrite.so

 

Apache Server Configuration

 

Allow access to serving the content from the Testlink directory by modifying the line in the directory specification. AllowOverride controls what directives may be placed in .htaccess files. Mark this directive from None to All. Override this setting for the htdocs directory.

AllowOverride None

AllowOverride All

Save the configuration file.

Restart Apache Webserver for changes to take effect.

Example

<Directory "<apache_server_home>/htdocs">
Options Indexes FollowSymLinks Includes ExecCGI

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All

#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>

 

TestLink Tutorial on this website can be found at:
https://www.testingdocs.com/testlink-tutorials/

More information on TestLink Open source Test management tool can be found on the official website at: http://testlink.org

Related Posts

TestLink Bitnami Cloud Image

TestLink Tutorial /

TestLink Bitnami Cloud Image

TestLink Install on Domain

TestLink Tutorial /

Install TestLink Software via CPanel Platform

Test Suite Import Export TestLink

TestLink Tutorial /

Import/Export TestSuite in TestLink

TestLink Tutorial /

Commercial Alternatives to TestLink Tool

TestLink Email Configuration

TestLink Tutorial /

TestLink Email Configuration

‹ Install TestLink Software via CPanel Platform› TestLink Bitnami Cloud Image

Recent Posts

  • Update draw.io on Windows
  • Install RAPTOR Avalonia on CentOS
  • Download RAPTOR Avalonia Edition on Windows
  • npm doctor command
  • Build & Run CLion Project
  • Create New CLion C Project on Windows
  • Configure CLion Toolchains on Windows
  • Launch CLion IDE on Windows
  • Activate CLion IDE
  • CLion IDE for C/C++ Development

Back to Top

Links

  • Contact
  • Privacy Policy
  • Cookie Policy

www.TestingDocs.com