• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

installing templates on FreeBSD for Sitebuilder 3.x

  • Thread starter yubanet@yubanet
  • Start date
Y

yubanet@yubanet

Guest
How do we install new templates in FreeBSD installation of Sitebuilder 3?

We downloaded RPM, DEB, and SFX versions of templates. Where do we place these, and what commands do we use to install the additional templates?

We looked in all the documentation and could not find answer.

Thanks in advance
 
to install template on FreeBSD you need to run each SFX file.
Code:
for file in *.sh; do echo "Installaing $file pack"; /bin/sh $file; done
 
Hi,

How do you download them remotely using SSH? and do you run the code you posted also using SSH?

Thanks
 
Originally posted by caustic
to install template on FreeBSD you need to run each SFX file.
Code:
for file in *.sh; do echo "Installaing $file pack"; /bin/sh $file; done

Thanks for reply, but the issue was the files were uploaded in text format not binary format.

The actual command in FreeBSD to install is:

/bin/sh $file
 
Back
Top