Skip to content

juliosao/saofileserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

saofileserver

A tiny http free file server

Author

Julio A. García López ([email protected])

Features

Install

  • Copy 'fileserver' folder in your server
  • Edit fileserver/mod/fso/cfg to set your desired 'basedir' directory
  • Run extras/setupdb.sh
  • Access the saofileserver in order to get a setup screen

Troubleshooting

I Get "Access denied for user 'root'@'localhost'" error message at setup

Maybe your root installationg is wrong. Try to execute these queries in mysql in order to repair it:

CREATE USER 'root'@'localhost' IDENTIFIED BY 'root';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;