Zen Cart Logo
Forums / Upgrading to 1.5.x / Error: Could not connect Project Version Server

Error: Could not connect Project Version Server

Views: 2,574

Results 1 to 7 of 7
15 Nov 2022, 18:47
#1
n8pbm avatar

n8pbm

Zen Follower

Join Date:
Mar 2005
Posts:
142
Plugin Contributions:
0

Error: Could not connect Project Version Server

Upgrading from 1.5.7d to 1.5.8.

Fresh copy of the software using a copy of the database from 1.5.7. I have "Error: Could not connect Project Version Server" if I click on "Check for New version".

Using default template with no modifications.

Thank you

15 Nov 2022, 19:17
#2
swguy avatar

swguy

Administrator

Join Date:
Feb 2006
Location:
Tampa Bay, Florida
Posts:
10,682
Plugin Contributions:
56

Re: Error: Could not connect Project Version Server

Yes, this does happen sometimes on the initial admin load, then it goes away. Haven't had time to troubleshoot and fix yet; maybe another contributor will crack it.

17 Nov 2022, 17:40
#3
n8pbm avatar

n8pbm

Zen Follower

Join Date:
Mar 2005
Posts:
142
Plugin Contributions:
0

Re: Error: Could not connect Project Version Server

Thanks, It is not a big deal as the store works fine. Now I just need to figure out how to upgrade my Payment module. That is the one item that is holding me back with the upgrade. :(

Thanks again

15 Nov 2023, 23:12
#4
charmlt avatar

charmlt

New Zenner

Join Date:
Mar 2005
Location:
Earth
Posts:
83
Plugin Contributions:
0

Re: Error: Could not connect Project Version Server

Did this ever get fixed? Now I got it; Error: Could not contact Project Version Server. Something new also, my load times have increased exponentially. - Mark

16 Nov 2023, 00:23
#5
carlwhat avatar

carlwhat

zennedOut

Join Date:
Nov 2005
Location:
los angeles
Posts:
2,953
Plugin Contributions:
8

Re: Error: Could not connect Project Version Server

charmlt:

Did this ever get fixed? Now I got it; Error: Could not contact Project Version Server. Something new also, my load times have increased exponentially. - Mark

find this line and change it to false:

https://github.com/zencart/zencart/blob/742b837868a2b128df96b6635c413c8187972679/includes/functions/plugin_support.php#L16

best.

16 Nov 2023, 00:29
#6
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Error: Could not connect Project Version Server

carlwhat:

find this line and change it to false:

https://github.com/zencart/zencart/blob/742b837868a2b128df96b6635c413c8187972679/includes/functions/plugin_support.php#L16

best.
... or create /YOUR_ADMIN/includes/extra_datafiles/disable_plugin_support.php that contains

<?php
define('ENABLE_PLUGIN_VERSION_CHECKING', false);
16 Nov 2023, 00:42
#7
carlwhat avatar

carlwhat

zennedOut

Join Date:
Nov 2005
Location:
los angeles
Posts:
2,953
Plugin Contributions:
8

Re: Error: Could not connect Project Version Server

lat9:

... or create /YOUR_ADMIN/includes/extra_datafiles/disable_plugin_support.php that contains

<?php define('ENABLE_PLUGIN_VERSION_CHECKING', false); ``` i like your way better!