Re: I Can't use adminer

2019-08-03 Thread Alexandre Rossi
> > You must also install and setup a php-enabled web server for it to
> > work.
> > 
> > The simplest way to get it running is:
> > $ cd /usr/share/adminer
> > $ php -S localhost:8000
> > 
> > and you'll find adminer at http://localhost:8000/adminer/
> > 
> > (There are many other ways to run a php app)
> > 
> > Alex
> 
> Thanks. I make a file in /etc/apache2/conf-available/adminer.conf  And
> place
>   Alias /adminer.php /usr/share/adminer/adminer/index.phpthis. Is
> it allright?

You must also enable some php runtime to process the scripts. In your case,
maybe libapache2-mod-php is the simplest. There are numerous tutorials about
how to do this.

Feel free to get back here if you get stuck somewhere in the process.

Alex



Re: I Can't use adminer

2019-07-26 Thread bapidey678
On Sun, 2019-07-21 at 17:37 +0200, Alexandre Rossi wrote:
> Hi,
> 
> > I want to use adminer for php operations. I installed it via apt
> > install
> > adminer.
> > But I am not able to open it on localhost. Can anyone help me?
> 
> You must also install and setup a php-enabled web server for it to
> work.
> 
> The simplest way to get it running is:
> $ cd /usr/share/adminer
> $ php -S localhost:8000
> 
> and you'll find adminer at http://localhost:8000/adminer/
> 
> (There are many other ways to run a php app)
> 
> Alex

Thanks. I make a file in /etc/apache2/conf-available/adminer.conf  And
place
Alias /adminer.php /usr/share/adminer/adminer/index.phpthis. Is
it allright?


Re: I Can't use adminer

2019-07-21 Thread Alexandre Rossi
Hi,

> I want to use adminer for php operations. I installed it via apt install
> adminer.
> But I am not able to open it on localhost. Can anyone help me?

You must also install and setup a php-enabled web server for it to work.

The simplest way to get it running is:
$ cd /usr/share/adminer
$ php -S localhost:8000

and you'll find adminer at http://localhost:8000/adminer/

(There are many other ways to run a php app)

Alex



I Can't use adminer

2019-07-21 Thread Bapi Dey
I want to use adminer for php operations. I installed it via apt install
adminer.
But I am not able to open it on localhost. Can anyone help me?