]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - README.md
Update with enticing description
[irc/unrealircd/unrealircd-webpanel.git] / README.md
1 ## UnrealIRCd Administration WebPanel
2
3 Are you tired of managing your IRC network through a command line interface? Do you wish there was a more user-friendly way to keep track of your servers, channels, and users? Look no further than the UnrealIRCd Web Panel!
4
5 This web-based tool provides a comprehensive overview of your IRC network, including all channels and users, as well as detailed information about individual servers and users. With the UnrealIRCd Web Panel, you can easily add and remove server bans and spamfilter entries, rehash your entire network, and filter lists of information based on input criteria, all from the convenience of your web browser.
6
7 One of the key features of the UnrealIRCd Web Panel is its user-friendly interface. The panel is designed to be easy to navigate, with all the information you need displayed in an organized and easy-to-understand format. This makes it much easier to manage your network, especially if you have multiple servers or a large number of users.
8
9 Additionally, the UnrealIRCd Web Panel is a great tool for keeping track of your network's activity. You can view detailed information about the channels and users on your network as well as manage your servers. This allows you to quickly identify and address any issues that may arise.
10
11 Overall, the UnrealIRCd Web Panel is a must-have tool for any administrator managing an IRC network. Its user-friendly interface and powerful management capabilities make it easy to keep track of your network and ensure that everything is running smoothly. So why not give it a try and see how it can improve your IRC network management experience?
12
13 ## Example Overview
14 <img src="https://i.ibb.co/7SdFZnk/Screenshot-from-2023-01-14-07-26-21.png">
15
16 ## Prerequisites ##
17 - PHP 8 or later
18 - A webserver
19 - UnrealIRCd 6.0.6-git recommended. Minimal functionality available with UnrealIRCd 6.0.5.
20
21 Note: PHP 8 may require special installation instructions.
22 Here are some instructions for:
23 - [Ubuntu 20/22](https://linuxhint.com/install-php-8-ubuntu-22-04/)
24 - [Debian](https://www.vultr.com/docs/how-to-install-php-8-on-debian-11/)
25 - [CentOS](https://www.tecmint.com/install-php-8-on-centos/)
26
27 For more installation methods for PHP 8, make a websearch for how to install PHP 8 on your operating system.
28 ## Installation ##
29
30 Note: This instructional assumes this is going to be hosted in the webroot directory `/var/www/` (html/) directory.
31 You may want to hide this somehow. Well, you definitely should. I don't know how to do that though. Sorry.
32
33 Please make sure you have [correctly setup UnrealIRCd for use with JSON-RPC](https://www.unrealircd.org/docs/JSON-RPC) before you continue.
34
35 - Go to your webserver root, for example `/var/www/html/`, and clone
36 this repository:
37 ```
38 cd /var/www/html
39 git clone https://github.com/unrealircd/unrealircd-webpanel
40 ```
41
42 - Go into the directory and run composer to install the dependencies
43 (If you don't have composer, then [install it](https://getcomposer.org/download/) first):
44 ```
45 cd unrealircd-webpanel
46 composer install
47 ```
48
49 - Edit the configuration file
50 ```
51 cp config.php.sample config.php
52 nano config.php
53 ```
54 The file will look like this:<br>
55 <img src="https://i.ibb.co/zZ7LsXD/Screenshot-from-2023-01-04-17-03-20.png">
56
57 Edit the configuration file to match your UnrealIRCd's RPC credentials and save
58
59 NOTE: You most likely want to put the webpanel behind a login, using a
60 `.htaccess` file or similar.
61
62 ## Updating for end-users ##
63 For end-users, when you want to update to the latest version:
64 ```bash
65 git pull
66 composer install
67 ```
68
69 ## Developers ##
70 Developers of the webpanel will naturally use the same procedure as
71 above. However, sometimes you will want to update to a newer version
72 of the unrealircd-rpc-php library. You then need to run:
73 ```bash
74 # For devs only!
75 composer update
76 git commit composer.lock
77 ```
78 Commiting the composer.lock file updates the dependency for all
79 other users, that way a `composer update` by end-users will update
80 to exactly the version that `composer install` just installed.