Post by jorem » Mon Aug 06, 2018 2:59 pm

Hi,
Have tried to install several extensions the past days, even paid and advanced ones from established, well known developers. They "install" OK with the installer, but are then not to be found anywhere in the admin interface, nor in the files system or database.
I haven't a clue how to go about to find a solution. Anyone?

Cheers,

Danne
----------------------------
https://proformica.com


Active Member

Posts

Joined
Thu Oct 07, 2010 9:42 pm

Post by xxvirusxx » Mon Aug 06, 2018 3:25 pm

All extensions was for 3.0.2.0?

Nothing show on Extensions-->Extensions-->Modules?

Or all are only ocmod/vqmod extension?

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by jorem » Mon Aug 06, 2018 3:54 pm

Oh yes, carefully checked compatibility for each one.
No, nothing shows in Extensions-->Extensions-->Modules
"Or all are only ocmod/vqmod extension?" I have no idea.
xxvirusxx wrote:
Mon Aug 06, 2018 3:25 pm
All extensions was for 3.0.2.0?

Nothing show on Extensions-->Extensions-->Modules?

Or all are only ocmod/vqmod extension?

Danne
----------------------------
https://proformica.com


Active Member

Posts

Joined
Thu Oct 07, 2010 9:42 pm

Post by xxvirusxx » Mon Aug 06, 2018 4:42 pm

Go to Settings--Users-->Users groups-->Administrator, and select all Acces permisions, Modify Permisions.
Then check if show.

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by jorem » Mon Aug 06, 2018 4:48 pm

Done that. No go.
xxvirusxx wrote:
Mon Aug 06, 2018 4:42 pm
Go to Settings--Users-->Users groups-->Administrator, and select all Acces permisions, Modify Permisions.
Then check if show.

Danne
----------------------------
https://proformica.com


Active Member

Posts

Joined
Thu Oct 07, 2010 9:42 pm

Post by xxvirusxx » Mon Aug 06, 2018 5:21 pm

Send me on private, acces to admin.

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by jorem » Mon Aug 06, 2018 5:26 pm

Maybe later. I just tried installing an extension manually ad it seems to work. I quote Arnold: "I'll be back".
xxvirusxx wrote:
Mon Aug 06, 2018 5:21 pm
Send me on private, acces to admin.

Danne
----------------------------
https://proformica.com


Active Member

Posts

Joined
Thu Oct 07, 2010 9:42 pm

Post by xxvirusxx » Mon Aug 06, 2018 5:32 pm

Then possible something wrong in config.php if worked manually.

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by jorem » Mon Aug 06, 2018 5:51 pm

That might be something. I did move the site a couple of times from server to server and edited the config-files each time. Can you see in the code below if there's something odd?

Code: Select all

===== config.php=====

<?php
// HTTP
define('HTTP_SERVER', 'http://domainname.com/');

// HTTPS
define('HTTPS_SERVER', 'https://domainname.com/');

// DIR
define('DIR_APPLICATION', '/home/mari/public_html/catalog/');
define('DIR_SYSTEM', '/home/mari/public_html/system/');
define('DIR_IMAGE', '/home/mari/public_html/image/');
define('DIR_STORAGE', '/home/mari/3-storage/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/theme/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');

// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'mari_danne');
define('DB_PASSWORD', 'my_password');
define('DB_DATABASE', 'mari_shop');
define('DB_PORT', '3306');
define('DB_PREFIX', 'oc_');

===== admin/config.php=====


<?php
// HTTP
define('HTTP_SERVER', 'http://domainname.com/admin/');
define('HTTP_CATALOG', 'http://domainname.com/');

// HTTPS
define('HTTPS_SERVER', 'https://domainname.com/admin/');
define('HTTPS_CATALOG', 'https://domainname.com/');

// DIR
define('DIR_APPLICATION', '/home/mari/public_html/admin/');
define('DIR_SYSTEM', '/home/mari/public_html/system/');
define('DIR_IMAGE', '/home/mari/public_html/image/');
define('DIR_STORAGE', '/home/mari/3-storage/');
define('DIR_CATALOG', '/home/mari/public_html/catalog/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');

// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'mari_danne');
define('DB_PASSWORD', 'my_password');
define('DB_DATABASE', 'mari_shop');
define('DB_PORT', '3306');
define('DB_PREFIX', 'oc_');

// OpenCart API
define('OPENCART_SERVER', 'https://www.opencart.com/');
xxvirusxx wrote:
Mon Aug 06, 2018 5:32 pm
Then possible something wrong in config.php if worked manually.

Danne
----------------------------
https://proformica.com


Active Member

Posts

Joined
Thu Oct 07, 2010 9:42 pm

Post by xxvirusxx » Mon Aug 06, 2018 5:58 pm

If you use SSL, change this

Code: Select all

define('HTTP_SERVER', 'http://domainname.com/');
in this

Code: Select all

define('HTTP_SERVER', 'https://domainname.com/');
and this

Code: Select all

define('HTTP_SERVER', 'http://domainname.com/admin/');
define('HTTP_CATALOG', 'http://domainname.com/');
to this

Code: Select all

define('HTTP_SERVER', 'https://domainname.com/admin/');
define('HTTP_CATALOG', 'https://domainname.com/');
I see API from markeplate cloud...so you have tried to install extension from marketplace?
viewtopic.php?t=198859

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by jorem » Mon Aug 06, 2018 6:32 pm

Changed all instances of http:// to https:// but that didn't make any difference. Still can't install even if the installer says so.
"I see API from markeplate cloud...so you have tried to install extension from marketplace?"
I don't understand the question. But I have never installed anything directly from any other server. Have always downloaded files and then used the OC installer to upload and install.

xxvirusxx wrote:
Mon Aug 06, 2018 5:58 pm
If you use SSL, change this

Code: Select all

define('HTTP_SERVER', 'http://domainname.com/');
in this

Code: Select all

define('HTTP_SERVER', 'https://domainname.com/');
and this

Code: Select all

define('HTTP_SERVER', 'http://domainname.com/admin/');
define('HTTP_CATALOG', 'http://domainname.com/');
to this

Code: Select all

define('HTTP_SERVER', 'https://domainname.com/admin/');
define('HTTP_CATALOG', 'https://domainname.com/');
I see API from markeplate cloud...so you have tried to install extension from marketplace?
viewtopic.php?t=198859

Danne
----------------------------
https://proformica.com


Active Member

Posts

Joined
Thu Oct 07, 2010 9:42 pm

Post by straightlight » Mon Aug 06, 2018 7:47 pm

But I have never installed anything directly from any other server. Have always downloaded files and then used the OC installer to upload and install.
Then, this solution would be the right one since downloading files from the cloud could also involve malformed files with specific servers which obviously could prevent the installation on being completed compared to download the files manually, then using the OC installer.

Dedication and passion goes to those who are able to push and merge a project.

Regards,
Straightlight
Programmer / Opencart Tester


Legendary Member

Posts

Joined
Mon Nov 14, 2011 11:38 pm
Location - Canada, ON
Who is online

Users browsing this forum: No registered users and 232 guests