Convert your personal computer (Windows 7, 8, 10, or 11) into a File Server/Manager, Content Management System, et cetera.
Created using Perl (CGI, Mojolicious, DBI, DBIx::Perl), Bootstrap, and MySQL/MariaDB/PostgreSQL programming languages.
Install/Setup `Internet Information Services`
Install/Setup `Perl`
Install required `Perl Modules`
Setup Perl Handler in `Internet Information Services`
Install `Git For Windows`
Install/Download `PC Access Free` using `git clone`
For a quick start, see `/install.md`
Update `PC Access Free` using `git pull`
cd C:/inetpub/wwwroot/PCAccessFree
git clone
If you modified anything in folder `PCAccessFree,` do
cd C:/inetpub/wwwroot/PCAccessFree
git stash
git clone
Select all .NET frameworks
Select all features in Internet Information Services
Select Internet Information Services Hostable Web Core
Click OK
Wait for installation to complete, restart your PC if asked to
Use install.ps1
to install .msi
packages.
See install.md
for details.
https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.msi
cpan CPAN CGI DateTime DBI DBIx::Class Cpanel::JSON::XS EV IO::Socket::Socks Role::Tiny Future::AsyncAwait Log::Log4perl Mojolicious Mojolicious::Plugin::RemoteAddr
mojo version
which should produce an output similar to the following
PS C:\inetpub\wwwroot\PCAccessFree> mojo version
CORE
Perl (v5.32.1, MSWin32)
Mojolicious (9.22, Waffle)
OPTIONAL
Cpanel::JSON::XS 4.09+ (4.25)
EV 4.32+ (4.33)
IO::Socket::Socks 0.64+ (0.74)
IO::Socket::SSL 2.009+ (2.069)
Net::DNS::Native 0.15+ (n/a)
Role::Tiny 2.000001+ (2.002004)
Future::AsyncAwait 0.52+ (0.54)
You might want to update your Mojolicious to 9.23!
PS C:\inetpub\wwwroot\PCAccessFree>
Search/open IIS as Administrator
Expand Sites
Select Default Web Site
Double click Handler Mappings on the right side
Edit feature permissions
Select Execute
click OK
Click Add Script Map
Request Path: *.cgi
Executable: C:\Strawberry\perl\bin\perl.exe "%s" %s
Name: Perl For PCAccessFree
Click Request Restrictions
Mapping Tab: Invoke handler only if request is mapped to: File
Verbs Tab: All verbs
Access Tab: Execute
click OK multiple times - Yes to all
Open IIS as Administrator
Under 'connections,' select 'default web site' under 'Sites'
Under 'actions,' click 'basic settings'
Click 'connect as'
select 'specific user'
Click 'set' and provide a valid username/password for your first windows user account
Click OK to Save
OK Again to exit
This time, you should not see 'permission denied' if you followed above instructions correctly.
https://github.com/git-for-windows/git/releases/download/v2.35.1.windows.2/Git-2.35.1.2-64-bit.exe
-
cd C:/inetpub/wwwroot
Use install.ps1
to install .msi
packages.
See install.md
for details.
Please download/install https://nodejs.org/dist/v16.14.2/node-v16.14.2-x64.msi
For versions below 0.7.9
As of 0.7.9,
no need to do this step as jquery/bootstrap are part of git pull.
cd C:/inetpub/wwwroot/PCAccessFree/public
npm install @popperjs/core jquery bootstrap bootstrap-icons
http://localhost/PCAccessFree/nologin.cgi
Only for versions below ``
This step has been automated via nologin.cgi.
No need to do it manually.
So, just open http://localhost/PCAccessFree/nologin.cgi
to edit these settings.
Alternatively, you can save the following lines as they are
in C:/inetpub/wwwroot/PCAccessFree/lib
as system_functions.txt
cookie_domain=localhost
cookie_expiry=+3M
css_js_url=//localhost/
enable_browser_info=1
enable_cookie_secure=1
enable_date_folder=1
enable_server_info=1
language=en-us
password_dir=C:/inetpub/PCAF22
script_web_dir=C:/inetpub/wwwroot/PCAccessFree
server_port=80
user_pref_home_dir=C:/inetpub/wwwroot/PCAccessFree
web_root=C:/inetpub/wwwroot
web_root_url=//localhost
See permission denied section above.
This step also has been automated.
cd C:/inetpub;
mkdir PCAF22
OR
cd C:/inetpub;
New-Item -Path "C:/inetpub/PCAF22" -ItemType "directory" -Force`
username|pas2W0rd|C:/inetpub/wwwroot|http://localhost
http://localhost/PCAccessFree/index.cgi
Open PowerShell as Administrator
cd C:/inetpub/wwwroot/PCAccessFree
git pull