Skip to content

Commit

Permalink
solve ssl problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Sagleft committed Jul 15, 2022
1 parent 61310c6 commit a66cfa0
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,32 @@ where
* `params` section: other parameters;
* `limit`: number of posts for transportation;

## Channel Limit Problem
## Solve problems

### Channel Limit Problem

In Utopia, you can create a maximum of 10 channels. There is a way to solve this problem. You will need to create additional accounts on which you will create channels. Next, you add the bot account to these channels and give it moderator rights.

### SSL problem

Get the correct directory for your certs to be placed by default with this

```bash
php -r "print_r(openssl_get_cert_locations()['default_cert_file']);"
```

Then use this to get the cert and put it in the default location found from the code above

```bash
wget http://curl.haxx.se/ca/cacert.pem -O <default location>
```

example:

```bash
wget http://curl.haxx.se/ca/cacert.pem -O /etc/pki/tls/cert.pem --no-check-certificate
```

## other

This content transport request will be made the next time the script `cron/execute_orders.php` is called.
Expand Down

0 comments on commit a66cfa0

Please sign in to comment.