• 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

New application vault apps?

Pagemakers

Silver Pleskian
Hello 8.2 is meant to have new site applications. For example Mantis Customer Support.

Where are these new applications. I can't see them anywhere.
 
The same issue here.
The updater says i have a up to date version but still
all the old junk in there.
 
www.apsstandard.com

The APS packaged apps are located at www.apsstandard.com . You have to down them from there then install in the CP via Application Vault.

As usual, SWsoft support and documentation is lacking.
 
Thanks for that.

I've just tried to install Mantis on a domain. You can get as far as the licence agreement but then there is no button to continue the application. you just get a page script error on the page.

I am using IE7. Can somebody else try and report back.
 
Originally posted by Pagemakers
Thanks for that.

I've just tried to install Mantis on a domain. You can get as far as the licence agreement but then there is no button to continue the application. you just get a page script error on the page.

I am using IE7. Can somebody else try and report back.
I tried Joomla and had the same problem. Obviously this release hasn't even been beta tested!
 
If you un-hide the all greyed out buttons you can continue with the install. Mantis then fails however giving the fault: proc_close() failed: Empty error message from utility.
 
I have got the same problem :-(
Any Ideas?
SWSoft please help us.

What can we do now. Is this a Plesk 8.2 Problem or has any Software on this page this stupid problem because it is by any software from this page.
 
Originally posted by Pagemakers
If you un-hide the all greyed out buttons you can continue with the install.

Can you explain this, please.
I don't know what to do.
 
Has anyone try to contact SWSoft.
Is anyone of you a Partner of SWSoft and could contact them.
 
i have an open ticket on swsoft support, but they are very slow at the moment...
 
answer from support:

There was missing link to PHP command line interpreter, "/opt/psa/bin/php-cli", that should point to the proper interpreter.
I have linked it to "/usr/bin/php5" and was able to install the application to the domain "danliker.ch":

# cp -a /etc/alternatives/php /opt/psa/bin/php-cli
 
Hallo,

this file /opt/psa/bin/php-cli ist not existing.
What should I do now?

Debian 3.1
Plesk 8.2.0

Thank you
 
Thats the point...
put it there...
cp -a /etc/alternatives/php /opt/psa/bin/php-cli
 
Ok more explanation of the issue...
Plesk code fails to parse the link to php-cli properly... You will probably find something like the following in PLESK_ROOT/bin
lrwxr-xr-x 1 root wheel 16 Jul 20 20:39 php-cli -> @@PHP_CLI_PATH@@


therefore you should remove the improperly linked PLESK_ROOT/bin/php-cli

and relink it to your current php...
in my case it is as follows...

Code:
ls -al /usr/local/psa/bin/php-cli
It reports
Code:
lrwxr-xr-x    1 root     wheel          16 Jul 20 20:39 php-cli -> @@PHP_CLI_PATH@@
I remove it..
Code:
rm /usr/local/psa/bin/php-cli
Find path to php
Code:
which php
It shows
Code:
/usr/local/bin/php
Link it up.
Code:
 ln -s /usr/local/bin/php /usr/local/psa/bin/php-cli
All works as expected..
 
Hello,

I do this

rm /opt/psa/bin/php-cli
which php
shows me:
/usr/bin/php
ln -s /usr/bin/php /opt/psa/bin/php-cli

But don't work. Same error in plesk.
 
Back
Top