Up to date installation guide for LiveCode community server?
Tom Glod
tom at makeshyft.com
Sun Sep 2 18:45:53 EDT 2018
This is the bash scripts I used to successfully install LC
Server...obviously it has customized filenames in it.
#!/bin/bash
#---------------------------------------------------------------------
# install LC Server
#---------------------------------------------------------------------
cd ~
wget "
https://ump-global-shared-space.nyc3.digitaloceanspaces.com/ump-cloud-build-scripts/LiveCodeCommunityServer-8_1_7-Linux-x86_64.zip
"
apt-get install unzip
unzip LiveCodeCommunityServer-8_1_7-Linux-x86_64.zip
rm LiveCodeCommunityServer-8_1_7-Linux-x86_64.zip
chmod 755 livecode-community-server
mv 'livecode-community-server' '/usr/lib/cgi-bin'
mv 'externals' '/usr/lib/cgi-bin'
mv 'drivers' '/usr/lib/cgi-bin'
#---------------------------------------------------------------------
# Set Up Apache
#---------------------------------------------------------------------
a2enmod actions
a2enmod cgi
cd /etc/apache2/sites-enabled
wget "
https://ump-global-shared-space.nyc3.digitaloceanspaces.com/ump-cloud-build-scripts/default_apache_config_registration_server.conf
"
cp 'default_apache_config_registration_server.conf' '000-default.conf'
rm default_apache_config_registration_server.conf
service apache2 restart
*Apache CONF File:*
<VirtualHost *:80>
ServerName ump-cloud.com
ServerAlias www.ump-cloud.com
ServerAdmin webmaster at localhost
DocumentRoot /var/www/html
<Directory /var/www/html/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<IfModule mod_dir.c>
DirectoryIndex index.php index.pl index.cgi index.html
index.xhtml index.htm
</IfModule>
Action lc-script /cgi-bin/livecode-community-server
AddHandler lc-script .lc
</VirtualHost>
On Sun, Sep 2, 2018 at 4:50 PM Malte Pfaff-Brill via use-livecode <
use-livecode at lists.runrev.com> wrote:
> @Mark: Thanks, will do.
> @Richard: I am not facing any trouble, but have to provide an installation
> guide for 3rd parties that would like to run an open source project I
> steward. The problem with the current documentation I dug up is that it
> appears to be written for apache <2.2. And that the actual installation
> guide is not in the package that one would download from livecode's site.
> Also the documentation says the Linux distribution would require the 32-Bit
> Libs, which I am pretty sure is no longer true.
>
> Cheers,
>
> Malte
>
>
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
More information about the use-livecode
mailing list