the link is to download PGSQL is not working anymore - postgresql

i m trying to use this link to install ht PGsql in my server but the link shows 404 file not found instead can you please help me with another link leading to the same file. NS: the link => https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-centos96-9.6-3.noarch.rpm
Thanks.

thank you everyone, i ve found the new link,
https://download.postgresql.org/pub/repos/yum/reporpms/EL-6-x86_64/pgdg-redhat-repo-latest.noarch.rpm
here it is if anyone needs to use it.

Try to download instead PostgreSQL Yum Repository that allows to download with YUM all supported versions including 9.6.
See https://www.postgresql.org/download/linux/redhat/

This old minor release is no longer available.
Install 9.6.latest, that is binary compatible and has fewer bugs.

Related

How I can open pgadmin4 in fedora 36?

Good evening people, I am trying to install pgadmin4 on fedora 36, I followed all the steps in the documentation and pgadmin4 and its dependencies were installed correctly but I do not know how to start it, or open it and it does not let me configure it on the web because I do not create the directory described in the final step to configure the web version.
I had the same problem. I solved it installing pgadmin4 from linux-pachages
https://linux-packages.com/fedora-36/package/pgadmin4-qtx86-64
I followed the same instructions but mistakenly changing "yum" to "dnf" out of force of habit. I found I got an install out of it which seemed OK at a glance, but it was just documentation and not an executable, and there was no shortcut added to run pgAdmin. Perhaps you might have inadvertently done something similar? After uninstalling, I tried again using "yum" exactly as documented and the latest executable installed without any issue. So the steps to install that would work for me were as follows. (Desktop version in my case.)
sudo rpm -e pgadmin4-fedora-repo
sudo rpm -i https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-fedora-repo-2-1.noarch.rpm
sudo yum install pgadmin4-desktop
The QT workaround also mentioned as an answer worked for me, but I wanted to avoid that since it is an earlier release (6.9) than the current 6.11, isn't officially supported and fires a warning about that every time on start up saying some functionality may be missing, which is not good for clients to see potentially in my case.
Same problem - couldn't open it after installing. You have to install pgadmin4-desktop not pgadmin4.

Where we can get older versions of VSCode (like 1.25) in ZIP format?

First of all, I have to make clear that I need the zip version because I will use it on Win 64 in the business and there we have no admin privileges on notebook.
I looked out over web but I wasn't able to find where I can get the VSCode v1.25(.1). I only found .EXE versions or source code archive.
Why I need this? VSCode 1.26 and greater (and many others electron based applications) are very slow in Win 64. Thank God I use Linux at home! Please, see this issue: https://github.com/microsoft/vscode-docs/issues/4609
Ok, after report it as an issue on github vscode repository, somebody gave me the provisory link and previous archives (zip) versions will be put available asap issue come to be solved.
VSCode 1.25.1 archive (zip) Win64 link: https://vscode-update.azurewebsites.net/1.25.1/win32-x64-archive/stable
Go to https://code.visualstudio.com/docs/supporting/faq#_previous-release-versions.
The URLs to each download are provided there.

PHP5 - pgsql Module not loaded

I am trying to get work PostgresSQL with PHP, but i stuck on that apache error:
Call to undefined function pg_connect().
When i run phpinfo() i cannot see that my module is loaded, but i do not know why. The pgsql.ini files were loaded. And when i open them, i can see, that the extension is enabled extension=pgsql.so. Under /usr/lib64/php5/extensions there is the .so file. Even the permission are same like the other modules.
Any idea what am I doing wrong?
It would help if you could describe what operating system you are using. I'm assume Linux, but which distribution? One package that is often forgotten when installing postgresql and php is php5-pgsql. This is the connection between the two. For some reason I cannot explain, it is best if all three are installed together. So I suggest uninstalling postgresql and php and then installing postgresql, php5 and php5-pgsql. I hope this works for you!
I found it out. Some libraries where not found.
1.) First of all run php -version
2.) If there is an error where it described that some libraries are missing, you can solve it like me
3.) Search for the files on your system find / -name {LIBRARY NAME}
3a.) If you found them, just create a symlink to /usr/lib64
3b.) If not, find a way to get them and 3 3a

not able to find comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb deian

I am trying to install php-5.2.8 in Ubuntu 10.10 but installation process does not have comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb and stopping my php installation
alternative I tried installing comerr-dev_2.1-1.41.14-1ubuntu3_i386.deb and comerr-dev_2.1-1.41.12-4stable1_i386.deb but its not compatible .I need comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb or source code so that i can build deb from that code.
help me out .thanks in advance
Please find the link to download comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb straight from Launchpad.net (this is for Ubuntu Maverick).

Install plone add-on from source, instructions for complete newbie?

Could anyone explain how to install the module below in a plone install?
I tried for 2 hours to no avail.
https://github.com/collective/collective.xmpp.chat
The instructions are too vague for a newbie. I have plone setup the docs in this repo seems incomplete and I'm totally lost on how to proceed. Any plone, zope and/or python guru could share some light on this?
General instructions for installing add-ons are at: https://plone.org/documentation/kb/installing-add-ons-quick-how-to. To install things from source, the easiest way is to use "mr.developer" which is found and documented at: http://pypi.python.org/pypi/mr.developer.
As you'll learn by reading that second document, you first need to add mr.developer to your buildout:
[buildout]
extensions = mr.developer
auto-checkout = name.of.your.product
then in the [sources] section, you tell mr. developer where to check out your product from.
[sources]
name.of.your.proudct = git git://github.com/url/of/name.of.your.product.git
finally, in the [eggs] section of your buildout, you tell plone to actually install the product.
[eggs]
name.of.your.product