Download the PHP package talan-hdf/semantic-suggestion without Composer

On this page you can find all versions of the php package talan-hdf/semantic-suggestion. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package semantic-suggestion

TYPO3 Extension: Semantic Suggestion

TYPO3 12 TYPO3 13 Latest Stable Version License

Elevate your TYPO3 website with intelligent, content-driven recommendations.

Introduction

The Semantic Suggestion extension revolutionizes the way related content is presented on TYPO3 websites. Moving beyond traditional category-based functionalities, this extension employs semantic analysis to create genuinely relevant content connections.

Since version 2.0.0, similarity scores are stored in a dedicated database table (tx_semanticsuggestion_similarities) instead of the TYPO3 cache. A Scheduler task handles calculation and storage, ensuring persistence and performance.

Key Benefits:

Performance Considerations


New in Version 2.0.0

Database Storage

Scheduler Task

Stopwords Support and Debug Mode

Table of Contents

Features

Requirements

Installation

Composer Installation (recommended) 1. Install the extension: 2. Activate the extension in the TYPO3 Extension Manager.
Manual Installation 1. Download the extension from the [TER](https://extensions.typo3.org/extension/semantic_suggestion) or GitHub. 2. Upload the archive to `typo3conf/ext/`. 3. Activate the extension in the Extension Manager.

Configuration

The extension's configuration is split between TypoScript settings and Scheduler task settings.

TypoScript Settings (setup.typoscript)

These settings primarily control the frontend display and the details of the analysis algorithm. Define them in your TypoScript Setup file under plugin.tx_semanticsuggestion_suggestions.settings.

`

Scheduler Task Settings

These settings are defined directly in the TYPO3 Scheduler module interface when creating/editing the "Semantic Suggestion: Generate Similarities" task. They control the analysis execution and what gets stored in the database.

Configuration Interaction

Key Points:

Usage (Frontend)

Integrate the plugin into your Fluid templates to display suggestions:

Ensure the following TypoScript is included in your setup:

The plugin will read relevant suggestions for the current page from the database, applying filters defined in the TypoScript settings (proximityThreshold, maxSuggestions, excludePages).

Backend Module

A backend module ("Semantic Suggestion" under "Web") allows visualizing the results of the analyses stored in the database.

Features

Scheduler Task

The "Semantic Suggestion: Generate Similarities" task is essential for the extension's operation.

Similarity Logic (Simplified)

  1. Execution (Scheduler Task): The Scheduler task selects pages to analyze based on its Start Page ID and exclusions.
  2. Analysis (PageAnalysisService): For each page pair, the service calculates a similarity score based on the content of fields defined in analyzedFields (TypoScript), considering their respective weights and stopwords. An adjustment based on recency (recencyWeight TypoScript) is applied.
  3. Storage (Scheduler Task): The task saves pairs whose final score is greater than or equal to the minimumSimilarity (Scheduler) to the tx_semanticsuggestion_similarities table.
  4. Display (Frontend/Backend): The modules read scores from the database and apply the proximityThreshold (TypoScript) for the final display.

Display Customization

Modify the appearance of suggestions by overriding the plugin's Fluid template (List.html). Configure the paths to your custom templates in TypoScript (see Configuration section).

Multilingual Support

The extension accounts for TYPO3's multilingual structure. The Scheduler task analyzes and stores similarities for each configured site language. The frontend displays suggestions corresponding to the current language.

Debugging

Contributing

Contributions are welcome! Fork the repository, create a branch, make your changes, and submit a Pull Request.

License

This project is licensed under the GNU General Public License v2.0 or later. See the LICENSE file.

Support

Contact: Wolfangel Cyril ([email protected]) Bugs & Features: GitHub Issues Documentation & Updates: GitHub Repository



All versions of semantic-suggestion with dependencies

PHP Build Version
Package Version
Requires typo3/cms-core Version ^12.0 || ^13.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package talan-hdf/semantic-suggestion contains the following files

Loading the files please wait ....