• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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