• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Plesk billing install error ubuntu 8.04TLS

GiulianoP

Basic Pleskian
Hi all,

I use Ubuntu 8.04TLS with Plesk 9.2.1
I have try to install Plesk Billing but from shell I have this error:


Selecting previously deselected package plesk-billing
(Reading database...53415 files and directory currently installed.)
Unpacking plesk-billing (from .../plesk-billing_6.0.3-20090421.16_all.deb) ...
Setting up plesk-billing (6.0.3-20090421.16) ...
Database created: biling
Database user created: billing
Configuration file created
chmod: cannot access '/opt/plesk-billing/lib-billing/include/config/(gateway,panel,registrar).php': No such file or directory
Unable to set up configuration files permissions
dpkg: error processing plesk-billing (--configure): subprocesses post-installation script retunrned error exit sattus 1
Errors were encountered while processing: plesk-billing
E: Sub-process /usr/bin/dpkg retunred an error code (1)

If I try to upgrade the distro with command "apt-get upgrade" I have this message:

Configured plesk-billing (6.0.3-20090421.16) ...
Database created: billing_5f35
Database user created: billing_5f35
Configuration file created
chmod: cannot access `/opt/plesk-billing/lib-billing/include/config/{gateway,panel,registrar}.php': No such file or directory
Unable to set up configuration files permissions
dpkg: errore processando plesk-billing (--configure):
il sottoprocesso post-installation script ha restituito un codice di errore 1
Sono occorsi degli errori processando:
plesk-billing
E: Sub-process /usr/bin/dpkg returned an error code (1)

I think that Plesk Billing isn't installed successfully but I don't understand hot to fix this situation.

Any idea?
 
This is because autoinstaller is working under /bin/sh and so cannot understand curly braces.

It can be fixed with substituting sh with bash:

# mv /bin/sh /bin/sh.bak
# ln -s /bin/bash /bin/sh
 
Back
Top