Theme editor

Search results

  1. Aior

    How to install elasticsearch to almalinux for xenforo with problem solving

    If you are having problems with installing elasticsearch to almalinux for xenforo follow the steps below: Stop Elasticsearch service: sudo systemctl stop elasticsearch Remove Elasticsearch packages: sudo yum remove elasticsearch Remove Elasticsearch configuration files and directories...
  2. Aior

    How to remove all java versiyons installed to almalinux

    If you have so much java versions you just remove with the code below: sudo dnf remove 'java-*' Please be carefull and know what you are doing with removing alla java versions: then it will remove all java versions. You can controll installed java versions with code below: rpm -qa | grep java
  3. Aior

    How to display all java versions installed at almanlinux

    You can display all java versions installed to almalinux with code below: rpm -qa | grep java Output will be like: its interesting to see that this much java versions is allready installed.
  4. Aior

    How to add excel file to Xenforo resources

    Normally you can not upload excel files to xenforo, you can adjust xenforo resources to upload excel files as below: Just add xlsx extension as below and save it, than you will be able to upload excel files to xenforo as an excel file.
  5. Aior

    How to add excel file to xenforo

    Normaly excel files are not defined to xenforo to upload as resource but you can do it easly as below: First Logind to Xenforo Admin Panel and navigate to Admin>Setup>Options>Attachments Then you can see that excel files are not alowed with current settings: You can add xlsx excel files...
  6. Aior

    How to change text to url with python in excel?

    Here you can find how to change a string (text) to url in python and save as a different file below: For example we have a domain name list written as a text and we want to change all of text to https://text url. Lets see example as below: Sample file is: We can do it manually or we can use...
  7. Aior

    ElasticSearch installation for AlmaLinux

    When you install elastic search note the output below for resetting elastic user: --------------------------- Security autoconfiguration information ------------------------------ Authentication and authorization are enabled. TLS for the transport and HTTP layers is enabled and configured...
  8. Aior

    How To Activate gmp at directadmin

    If you are using Xenforo at Directadmin you will need gmp module activation to use Trigger notifications to users. Activating gmp modile is quite easy at DirectAdmin. You can use follwoing codes with root access: cd /usr/local/directadmin/custombuild ./build set_php gmp yes ./build php_gmp You...
  9. Aior

    ElasticSearch installation for AlmaLinux

    Now we are ready to install Elasticsearch to Almalinux sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch Use Nano again to edit the file with code: nano /etc/yum.repos.d/elasticsearch.repo Change the file with the codes below: [elasticsearch] name=Elastic repository for...
  10. Aior

    ElasticSearch installation for AlmaLinux

    I have been trying to install Elasticsearch for Xenforo for a while. I was getting some problems which is not clear for me. Finally, I achieved to install and run elasticsearch and want to share the steps with you: First connect your server as: yum update -y root and update your system...
Back
Top