Re: [Qgis-user] Plugins repository unavailable for 2.18 on OSX (again)

2019-03-21 Thread hamdori
I can confirm that it is still not working and QGIS Official Plugin
repository (2.18) is unavailable on OSX. 



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Plugins repository unavailable for 2.18 on OSX (again)

2019-01-14 Thread Richard Duivenvoorde
On 1/15/19 1:07 AM, Evan Applegate wrote:
> Exact same issue as back in May 2018, official plugin repository for QGIS
> 2.18 on OSX throws an SSL error and won't connect:
> http://osgeo-org.1560.x6.nabble.com/Plugins-repository-unavailable-for-2-18-tc5365597.html
> 
> Per Richard Duivenvoorde who fixed it last time, running the following in
> the python console: 

Uh, and I screwed up it again too this time :-)
During the upgrade of certificates I put plugins under cloudflare
again... (which we should not apparently)...

Plugins.qgis.org removed from cloudflare(cache), so please check and let
me no if this is still a problem.

Regards,

Richard Duivenvoorde
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Plugins repository unavailable for 2.18 on OSX (again)

2019-01-14 Thread Evan Applegate
Exact same issue as back in May 2018, official plugin repository for QGIS
2.18 on OSX throws an SSL error and won't connect:
http://osgeo-org.1560.x6.nabble.com/Plugins-repository-unavailable-for-2-18-tc5365597.html

Per Richard Duivenvoorde who fixed it last time, running the following in
the python console: 

from qgis.PyQt.QtNetwork import QNetworkRequest 
from qgis.PyQt.QtCore import * 

def handle(reply): 
print '' 
print reply.url() 
print reply.attribute(QNetworkRequest.HttpStatusCodeAttribute) 
print reply.attribute(QNetworkRequest.HttpReasonPhraseAttribute) 
print reply.error() 

def sslproblem(reply): 
print 'ssl problem' 
print reply 

def test(): 
nam = QgsNetworkAccessManager.instance() 
nam.finished.connect(handle) 
nam.sslErrors.connect(sslproblem) 
url='https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18'
nam.get(QNetworkRequest(QUrl(url))) 

test() 


yields: 

PyQt4.QtCore.QUrl(u'https://plugins.qgis.org/plugins/plugins.xml/?qgis=2.18') 
None 
None 
6 

Anyone else on 2.18 have this issue?



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user