Questions tagged [phppgadmin]

phpPgAdmin is a fully functional web-based administration utility for a PostgreSQL database server.

phpPgAdmin is a fully functional web-based administration utility for a PostgreSQL database server. It handles all the basic functionality as well as some advanced features such as triggers, views and functions (stored procs)

162 questions
0
votes
1 answer

PHP:Postgresql issue on Windows

"Your PHP installation does not support PostgreSQL. You need to recompile PHP using the --with-pgsql configure option." I am facing this issue on windows when I try to access PhpPgAdmin. My postgresql version is 9.1 and PHP is installed in WAMP…
mssrivatsa
  • 343
  • 1
  • 3
  • 10
-1
votes
1 answer

Why I can not login into phppgadmin with postgres user?

I installed phppgadmin (Version: 7.12.1+dfsg-1) under ubuntu of my home laptop and in file /etc/phppgadmin/config.inc.php I replaced parameter $conf['extra_login_security'] = false; and restarted services postgresql and apache2 Next failed to…
Petro Gromovo
  • 1,755
  • 5
  • 33
  • 91
-1
votes
1 answer

phpPgAdmin: how to duplicate an exact table from one database to another

Just as the title says, I want to duplicate one table from a completely separate database in phpPgAdmin to another one. I have tried two ways but both did not work for me: Tried "Create table like" (database >> table >> create table like) this…
Button Press
  • 623
  • 6
  • 26
-1
votes
1 answer

financial year array between start date and end date php

I would like to do something of this sort in php (codeigniter), when the enter start date and end date, I would like to echo all financial years between those dates. Financial year starts from 01-04-2001 to 31-03-2002 (April to March) Eg: public…
Junaid
  • 3
  • 2
-1
votes
1 answer

Integration of postgreSQL on WAMP and phppgadmin

I want to integrate postgresql with wamp for php and laravel development but getting deprecated error when i logged in postgresql....
Usama Hadi
  • 17
  • 9
-1
votes
2 answers

Install phppgadmin and run using localhost (php 7)

I have PHP 7 installed in my local computer (XAMPP). I want to install phppgadmin. But it only supports php5.6 it seems. Can someone help me with this, to install phppgadmin with PHP7 on windows 10. Thanks in advance.
gubera
  • 92
  • 3
  • 9
-1
votes
1 answer

Phppgadmin page not working it displays 404 not fund error

in my localhost/phppgadmin it displays like these below code what can i do to fix my issue..? ` /** * Main access point to the app. * * $Id: index.php,v 1.13 2007/04/18 14:08:48 mr-russ Exp $ */ // Include application…
-1
votes
1 answer

create automatic datetime when update the data in postgresql(phppgadmin)

create automatic datetime(date with timestamp) when update the data in postgresql(phppgadmin) on database table Plese advise me thanks
Sniper
  • 3
  • 4
-2
votes
1 answer

Undefined offset: 1 in C:\wamp\www\index.php

I edited the file "www / index.php" Wamp and duplicate each line MySql adapting with version of PostgreSQL i have error Notice: Undefined offset: 1 in C:\wamp\www\index.php on line 64 my code is ( line 63 64 65 ) preg_match('|PostgreSQLVersion =…
oustyle
  • 103
  • 1
  • 10
-2
votes
1 answer

How to insert new row in Postgres table?

i'm using for the first times Postgres and i'm experiencing problems adding a new row by SQL code. Here is my table structure: And here is the code that i'm executing: INSERT INTO recensione (testo, voto, utente, merchant) VALUES ('this is a text',…
smartmouse
  • 13,912
  • 34
  • 100
  • 166
-3
votes
1 answer

Basic concept/principle of ECommerce Site

Is there any short tutorial which explain the basic principles/concept and Database design of an Ecommerce Website?
Future King
  • 3,819
  • 6
  • 28
  • 37
-3
votes
1 answer

Why am I getting Error in Group BY statement while using hardcoded values in WHERE clause?

I am new to PostgreSQL. I am working on a taxi ride booking application. I am trying to find why the (1) doesn't work. The hardcoded values are to be replaced by user inputs. Non Working: SELECT MAX(cr.pickup_point) AS pickup_point ,…
1 2 3
10
11