• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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