Jump to content

Hi guys, I am hosting a LAN Party, and I want my customers to be able to buy and reserve seats.

 

So that's why I want to make an website for this.

 

I've looked online and found an hosting service named 000webhost.com , I also found LanCMS and LAN-Party registration and seat reservation cms.

I don't know a lot about websites, SQL, databases and CMS.

 

Could someone please explain me how to upload the CMS and fix databases and stuff like this to make the website work?

 

Useful links:

https://github.com/lancms/lancms2

https://000webhost.com/

 

Best regards, Henry

Link to comment
https://linustechtips.com/topic/831636-help-with-hosting-and-cms/
Share on other sites

Link to post
Share on other sites

 

1 hour ago, Mr_KoKa said:

It seems that this cms is python based so not usual http server can host it. You would probably need a VPS to host it, or maybe there are some free python environment hostings, idk. Try to find something written in php.

Can you help me, I've found a host! https://www.pythonanywhere.com/

Link to post
Share on other sites

do you received ssh login/password or key? you will need putty and with informations like host and port you can connect to your vps then log in with login password.

after that you will want to see readme of the cms, there is a pip command to install requirements. I don't know how to run it, I cannot help you further.

Link to post
Share on other sites

I guess you should run the following commands:

sudo apt install python3
sudo apt install virtualenv 
sudo apt install python-pip
sudo apt install libjpeg-dev
sudo apt install git
git clone https://github.com/lancms/lancms2
cd lancms2
virtualenv --python=python3 .
source bin/activate 
bin/pip3 install -r requirements.txt

I quickly tested this and it seems to work. Keep in mind that if you are already a root user you do not have to prepend the sudo commands. Also apt only works for debian, ubuntu and their derivates.

Then run the server with:

bin/python manage.py runserver

 

Edited by lal12
edited it to use python3
Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×