Problem after ssl certificate installing and configuration

Good morning.
After installed ssl certificate with this procedure:

I have errors in Paypal, Maps and Cash Desk
Error (# 256) in PayPal and cashdesk.
blank page in Maps

Even it happened to Others?

Thanks!

on every addon: /var/www/splynx/addons/{addon}/config/param.php
you need to define correct API URL (with https)

define('API_DOMAIN', 'https://{your_https_host/');

Hello

I too have had the same idea, but I tried to follow your advice and I still have the same error
The most serious problem is that customers can not pay with Paypal

Can you help me

Thank you

Alessandro

Possible problems:

  1. ping your host (used for https), if result will be 127.0.0.1
    than fix your hosts file (/etc/hosts) (must be public IP)
  2. Something wrong on your SSL configuration - you need to fix it.

small php script for testing:

<?php $ch = curl_init(); $url = "URL HERE"; curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL,$url); $result = curl_exec($ch); curl_close($ch); echo $result;

Hello.
Ping of my host is ok. 10.0.0.9

these are a few lines of error.

… (deleted) …

Sorry.
but the script does not know how to use it.

Thanks
Alessandro.

I’ve checked your configuration and you have a mistake:

on this step.
already fixed, must work …

ps: don’t add redirect from http to https, not so good

400 Bad Request

The plain HTTP request was sent to HTTPS port
nginx/1.10.0 (Ubuntu)

https://ispframework.freshdesk.com/solution/articles/16000032878-splynx-and-ssl-https-
step:

server {
listen 80;
return 301 https://$server_name$request_uri; # enforce https
}