• 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

how to install template in my sitebuilder?

peggy333s

New Pleskian
my sitebuilder3 has already installed, but it just have 7
templates, how could i sell to my customer?
is anyone understand how to install the new templates on my vps~
i saw the new template on this page"http://www.swsoft.com/en/download/sitebuilder3/templates/"

how to install these template on my vps?
 
It depends on which operation system do you use. If you have RPM based system( Fedora Core or RedHat EL/AL) you can use RPM or SFX packages. Just upload it into your server and install with help of following command:

# rpm -Uhv <package_name>.rpm
(for RPM packages)

#sh <package_name>.sh
(for SFX packages)

This should be done with each package.

If you have Debian you need to use DEB packages and install them with:

#dpkg --install <package_name>.deb

If you have FReeBSD you can use only SFX packages.

After installation will be completed you need to run this command:

#sb_config --update_templates

which will update Sitebuilder with new installed templates.

To get all templates with one command you can use following way:

1. Create directory on your server where to upload templates:

#mkdir

2. Get the templates:
# cd SB_templates
# wget http://download1.swsoft.com/SiteBuilder/templates/3.0/rpms/*.rpm
or
#wget http://download1.swsoft.com/SiteBuilder/templates/3.0/deb/*.deb
or
#wget http://download1.swsoft.com/SiteBuilder/templates/3.0/packs/*.sh

Hope it helps.
 
That should be ftp://...

wget with the http doesn't work. Wildcards don't work with http anyway. Change http to ftp and all goes well.
 
Thanks for bumping this thread...I was able to figure out how to transfer the files for a template, but I did not know about the "sb_config --update_templates" command. I'm guessing that updates the database as well.
 
Back
Top