• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling Which Linux will be the best?

Kuczmen

New Member
Joined
Aug 19, 2008
Messages
103
Reaction score
0
Hi!
I'm going to start my OTS. I'm going to buy Kimsufi 2XL. Which Linux will be the best and the easiest to use? Could you tell me how to compile TFS 0.3beta3? What about XAMPP or other similar programs? How to use them? Who can help me?
 
First:
if(os()=='Linux') $Xampp->forbidden();

Then: If you have never used Linux, it might be hard for you.
Look in the tutorials.

Or, I can help you with administration (trust needed) :)

(And if you want, I provide complex server administration for small fee :p)
 
# aptitude install apache2 php5 mysql-server-5.0 libapache2-mod-php5 php5-mysql phpmyadmin && mysql_secure_installation
 
Install Server Apache

sudo apt-get install apache2

Install PHP5

sudo apt-get install php5
sudo apt-get install libapache2-mod-php5
sudo /etc/init.d/apache2 restart
TEST PHP

gksudo gedit /var/www/test.php
Add this line in new file

phpinfo();


Save this file
Go to http://localhost/test.php
If work is all god . If dont work:
sudo a2enmod php5
sudo /etc/init.d/apache2 force-reload
Go to http://localhost/test.php

If not work install PHP5 module

sudo apt-get install php5-xsl php5-gd php-pear
Run again Apache

sudo /etc/init.d/apache2 restart
Install MYSQL
sudo apt-get install libapache2-mod-auth-mysql
sudo apt-get install php5-mysql
sudo apt-get install phpmyadmin
Open file

gksudo gedit /etc/php5/apache2/php.ini

This line “;extension=mysql.so” change to line
extension=mysql.so
Save file
And this:
Quote:
sudo /etc/init.d/apache2 restart

PS. My English isn't so good because I'm from Poland
 
Back
Top