Jump to content

spaetz

Members
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • First Name
    Sebastian
  • Last Name
    Spaeth

spaetz's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. I hacked around the issue by disabling the function: in /src/PrestaShopBundle/Service/DataProvider/Marketplace/ApiClient.php line 63 I simply inserted "return;" before the offending call to refreshCaCertFile(). Call to a member function refreshCaCertFile() on null in /var/www/shop/src/PrestaShopBundle/Service/DataProvider/Marketplace/ApiClient.php:63 I realize this is a dirty hack disabling ssl verification of the marketplace or something so be aware of that when you hack around it.
  2. Hi, I run prestashop 1.7.2.2 (now 1.7.2.3) on nginx and suffered the fact that I could not select any attributes in the product details page in the admin section. I could also not generate any product combinations. Clicking "generate" I got a green popup sayin "Saved" (or similar) but no variants would appear. I solved this! My nginx configuration was based on this one: https://github.com/MattLoyeD/Prestashop-Nginx (thanks!) However, features and attributes make calls to /adminXXX/index.php/feature/... and /adminXXX/index.php/attribute/... URLS This seems to be new and not reflected yet in that nginx file: I fixed it by changing the list of symfony controllers: # Symfony controllers - location ~ /(international|_profiler|module|product|combination|specific-price)/(.*)$ { + location ~ /(international|_profiler|module|product|feature|attribute|supplier|combination|specific-price)/(.*)$ { I proposed this and other minor tweaks as a pull request to the maintainer and hope that he will pull it in and make it accessible for everyone.
  3. Hi there, it takes some tweaking with nginx bit it works. Do check out the sample nginx.configuration file at: https://github.com/MattLoyeD/Prestashop-Nginx The main issue is that it uses /adminXXX/index.php/product/... urls and those need to be directed to adminXXX/index.php?... P.S. If you build on that add "attribute" and "feature" to the list of modules in that list of symfony names as well, as they are needed but currently missing.
×
×
  • Create New...