• 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

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