Bravo List
Register
Go Back   > Bravo List > Source Code > Active Trackers > UNIT3D
Notices

Reply
Thread Tools
  #1  
Old 26th December 2024, 02:09
cole cole is offline
Member
 
Join Date: Dec 2024
Posts: 2
Default Error Torrent Layout
Hi, if I put the torrents in list or cards mode, it indicates error 500 on the server, it only works if I put the torrents in poster mode, how can I fix it? Thanks
Reply With Quote
  #2  
Old 5th January 2025, 13:49
bicolor bicolor is offline
Member
 
Join Date: Nov 2009
P2P
Posts: 4
Default
Quote:
Originally Posted by cole View Post
Hi, if I put the torrents in list or cards mode, it indicates error 500 on the server, it only works if I put the torrents in poster mode, how can I fix it? Thanks
i have the same problem
Reply With Quote
  #3  
Old 10th January 2025, 09:30
crowni's Avatar
crowni crowni is offline
Senior Member
 
Join Date: Apr 2009
Bulgaria
Posts: 161
Default
What is this forum for when the coder has not entered for a long time and does not respond to people's problems!Are you only thinking about money?
Reply With Quote
  #4  
Old 17th January 2025, 14:08
leech24 leech24 is offline
Senior Member
 
Join Date: Feb 2015
Posts: 29
Default
https://github.com/HDInnovations/UNI...on/issues/3970
Reply With Quote
  #5  
Old 4th April 2025, 19:14
mogo mogo is offline
Senior Member
 
Join Date: Jun 2020
P2P
Posts: 146
Default Meilisearch
Quote:
Originally Posted by cole View Post
Hi, if I put the torrents in list or cards mode, it indicates error 500 on the server, it only works if I put the torrents in poster mode, how can I fix it? Thanks
Need to install Meilisearch

Meilisearch Setup for UNIT3D
Note: This guide assumes you are using a sudo user named ubuntu.

1. Install and Configure Meilisearch
Install Meilisearch:

Quote:
sudo curl -L https://install.meilisearch.com | sudo sh
sudo mv ./meilisearch /usr/local/bin/
sudo chmod +x /usr/local/bin/meilisearch
Set Up Directories:

Quote:
sudo mkdir -p /var/lib/meilisearch/data /var/lib/meilisearch/dumps /var/lib/meilisearch/snapshots
sudo chown -R ubuntu:ubuntu /var/lib/meilisearch
sudo chmod -R 750 /var/lib/meilisearch
Generate and Record a Master Key:

Generate a 16-byte master key:

Quote:
openssl rand -hex 16
Record this key, as it will be used in the configuration file.

Configure Meilisearch:

Quote:
sudo curl https://raw.githubusercontent.com/me...st/config.toml -o /etc/meilisearch.toml
sudo nano /etc/meilisearch.toml
Update the following in /etc/meilisearch.toml:

Quote:
env = "production"
master_key = "your_16_byte_master_key"
db_path = "/var/lib/meilisearch/data"
dump_dir = "/var/lib/meilisearch/dumps"
snapshot_dir = "/var/lib/meilisearch/snapshots"
Create and Enable Service:

Quote:
sudo nano /etc/systemd/system/meilisearch.service
Add the following:

Quote:
[Unit]
Description=Meilisearch
After=systemd-user-sessions.service

[Service]
Type=simple
WorkingDirectory=/var/lib/meilisearch
ExecStart=/usr/local/bin/meilisearch --config-file-path /etc/meilisearch.toml
User=ubuntu
Group=ubuntu
Restart=on-failure

[Install]
WantedBy=multi-user.target
Enable and start the service:

Quote:
sudo systemctl enable meilisearch
sudo systemctl start meilisearch
sudo systemctl status meilisearch
2. Configure UNIT3D for Meilisearch
Update .env:

Quote:
sudo nano /var/www/html/.env
Add the following:

Quote:
SCOUT_DRIVER=meilisearch
MEILISEARCH_HOST=http://127.0.0.1:7700
MEILISEARCH_KEY=your_16_byte_master_key
Clear Configuration and Restart Services:

Quote:
sudo php artisan set:all_cache
sudo systemctl restart php8.3-fpm (your php version)
sudo php artisan queue:restart
3. Maintenance
Reload Data and Sync Indexes:

Sync Index Settings: After UNIT3D updates, sync the index settings to ensure they are up to date:

Quote:
sudo php artisan scout:sync-index-settings
Reload Data: Whenever Meilisearch is upgraded or during the initial setup, the database must be reloaded:

Quote:
sudo php artisan auto:sync_torrents_to_meilisearch --wipe && sudo php artisan auto:sync_people_to_meilisearch

Click the image to open in full size.

Click the image to open in full size.

Last edited by mogo; 4th April 2025 at 19:19. Reason: Add screenshots
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 11:35. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2025, vBulletin Solutions Inc.