• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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