Las versiones más antiguas de PHP (5.4+) funcionan por ahora, pero tenga en cuenta que estas versiones tienen vulnerabilidades de seguridad no corregidas, no las utilice en producción. PHP 8 funciona en su mayor parte, pero todavía tiene algunos problemas, por favor, siga con PHP 7.4 por ahora.
Con el instalador de Nameless: Descargue easy-install.php
desde aquí. Súbelo a tu servidor. ¡Sigue los sencillos pasos para no tener que subir y configurar los permisos de todos los archivos!
Sin el instalador de Nameless: Descargue NamelessMC desde aquí y súbalo a su servidor web. Tenga en cuenta que debe instalarse en la raíz, ya que es un paquete independiente. (asegúrese de que el servidor web tiene acceso de escritura cambiando la propiedad del archivo a apache:apache
, www-data:www-data
, o www:www
dependiendo de su sistema operativo y software del servidor web)
v1
Inglés:
https://www.youtube.com/watch?v=aTcZ8MbBixs (sólo v1.0.15)
v2
Inglés:
https://www.youtube.com/watch?v=vWQM48a1qQ4 (v2-pre6 / v2-pre7)
https://www.youtube.com/watch?v=Lu2Bt9AKujo (v2-pre7 en profundidad)
Español:
https://www.youtube.com/watch?v=UlJTeYFHzA8 (v2-pre7)
Error:
La URL solicitada no se encontró en este servidor
Significado:
Su servidor web Apache no está configurado para permitir archivos .htaccess
.
Solución:
Varía dependiendo de la configuración del servidor, sin embargo, puede encontrar aquí una guía para Ubuntu.
Error:
SQLSTATE[HY000] [2002] No hay tal archivo o directorio
Meaning:
Your web server can't use the /tmp/mysql.sock
file, as it doesn't exist or has no permissions.
Fix:
ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock
If that doesn't work, try giving your web server access to that file.
Error:
No connection could be made because the target machine actively refused it.
Meaning:
Your MySQL information is incorrect, the MySQL database is on a different server and the IP is blocked by MySQL. then there are also the possibility that the firewall is blocking it. Finally it's listening on a different IP.
Fix:
Look at your MySQL information and fix the information if there is an information error. Else try to query this in
GRANT ALL ON *.* to user@localhost IDENTIFIED BY 'password';
Where you can change the user@ip and password
Else change
localhost
To
127.0.0.1