Welcome to the Ajenti Idea Exchange. It's your chance to collaborate with our team and other users to influence the future of Ajenti! Ideas appreciated.

0
Completed

It would be nice if there is a small description for each plugin

Rohith Meethal 10 years ago updated by Eugene Pankov (Project coordinator) 10 years ago 4
It would be really helpful for every body to understand what does a plugin do by adding a short description, like
apache2 -> A full featured web server
php5 -> Server side scripting language
etc
0
Fixed

New (empty) mailbox can not be opened by IMAP client

Thibaut 10 years ago updated 10 years ago 10
Hi,

I have Ajenti V + V Mail working perfectly on my Ubuntu server. Except when I create a new mailbox, my IMAP client can't open it (OS X Mail says "Unable to open this mailbox"). As soon as I send an email to that mailbox, it is available and works normally.

How can I solve that, without sending a dummy email each time a create a mailbox?

Thanks!
0

ajenti-v-nginx package not installing

Roberto Gadducci Filho 9 years ago 0
My server can't reach the package.

Image 81
0
Not a bug

XML import from wordpress

sebastien88 10 years ago updated 10 years ago 6
I have some issues uploading the dummy XML from my wordpress theme. It says it's related to no class DomDocument. Is this related to the packages included in Ajenti V?

Also, in the case where I install sudo yum install php-xml , from cd directory, is that the right way to get it work for my wordpress? (still doesnt work when I do this)

Or is there some specific code for integrating this in Ajenti V?

(Basically, for getting packages for Ajenti, can I just yum install from cd directory?)

Thanks!
Cheers
Answer
Yes, if you need extra PHP packages, just install them from the Packages section (e.g.: php5-mysql) and re-apply your website settings.
0
Answered

Debian Ajenti Repo Down?

tony asch@nductiv com 11 years ago updated by Eugene Pankov (Project coordinator) 11 years ago 3

Hit http://repo.ajenti.org main Release.gpg

Ign http://repo.ajenti.org/ng/debian/ main/main Translation-en

Ign http://repo.ajenti.org debian Release.gpg

Ign http://repo.ajenti.org/ng/debian/ debian/debian Translation-en

Hit http://repo.ajenti.org main Release

Ign http://repo.ajenti.org debian Release

Hit http://repo.ajenti.org main/main i386 Packages

Err http://repo.ajenti.org debian/debian i386 Packages

  404  Not Found

W: Failed to fetch http://repo.ajenti.org/ng/debian/dists/debian/debian/binary-i386/Packages.gz  404  Not Found


Answer

Please update your sources.list: http://docs.ajenti.org/man/install/debian.html

0
Completed

Ubuntu Repo Key 404

Main Street James 11 years ago updated by Eugene Pankov (Project coordinator) 11 years ago 0

I'm trying to install Ajenti but the repository key link generates a 404:

wget http://repo.ajenti.org/debian/key -O- | apt-key add -

0
Completed

Modify widgets on dashboard

Ivan Markin 11 years ago updated by Eugene Pankov (Project coordinator) 11 years ago 0

Current situation: <absolute data> or <absolute percent data>.

I suggest: <absolute data>/<maximum reach> or <absolute percent data>/<100%>

0
Declined

Immediate Traffic and Traffic Widget

Markus Padourek 10 years ago updated by Eugene Pankov (Project coordinator) 10 years ago 1
First of all, just started using Ajenti and it looks amazing, thanks for the work.

When adding both widgets, Immediate Traffic and Traffic, to the Dashboard, there seems to be no way of really differentiating these, since they look exactly the same. Also I wonder what the actual difference is.
Answer
Traffic widget shows total accumulated traffic.
Immediate traffic widget shows the traffic at the moment, in bytes per second.
0
Under review

Ajenti not loading in Safari

Thibaut 10 years ago updated 10 years ago 4
Hello,

I saw an  issue on Github about that but the thread is closed and doesn't seem to be monitored anymore. It has been marked as fixed on May 7th but the issue remains: the control panel doesn't load in Safari (I have Safari 7.0.5 on OS X Mavericks).

The inspector console returns this error:

Failed to load resource: The network connection was lost. https://<domain>:8000/ajenti:socket/1/jsonp-polling/123053442836?t=1406094146914&i=0
I don't have any Safari extension installed.
0
Answered

Nginx config for Ajenti secure reverse proxy

KeviNaomi Shenk 11 years ago updated by Translator5 8 years ago 3

Here is the current Nginx host config I have for running Ajenti behind a reverse proxy:


upstream ajentiweb {

    server 127.0.0.1:8000 weight=1 fail_timeout=300s;

}

server {

listen 80;

server_name cp.domain.com;

location / {

        proxy_pass http://ajentiweb;

proxy_redirect off;

}

}


The new version of ajenti prefers an https connection.  How could I modify this to redirect users to https and tunnel that connection through to ajenti?

Answer

You are right, the new version enabled HTTPS by default, but it's not mandatory. You can disable SSL in Configuration section and use your old config.

Or, you can configure nginx as an SSL proxy (for example: http://www.cyberciti.biz/faq/howto-linux-unix-setup-nginx-ssl-proxy/) - generally, you need to generate a certificate and add it to the nginx config.