Michele Locati

Results 74 issues of Michele Locati

We [currently accept these values](https://github.com/zendframework/zend-http/blob/98b1cac0bc7a91497c5898184281abcd0e24c8d6/src/Client/Adapter/Socket.php#L30-L35) for the `ssltransport` option of the Socket client: - `ssl` β‡’ `STREAM_CRYPTO_METHOD_SSLv23_CLIENT` - `sslv2` β‡’ `STREAM_CRYPTO_METHOD_SSLv2_CLIENT` - `sslv3` β‡’ `STREAM_CRYPTO_METHOD_SSLv3_CLIENT` - `tls` β‡’ `STREAM_CRYPTO_METHOD_TLS_CLIENT` In...

Starting from concrete5 5.6.3 we can integrate the data generated by the standard sitemap.xml generator job, without the need of a duplicated job. We can use add multilanguage data to...

By running `composer create-project concrete5/composer`, we end up with a setup that includes PHPUnit, webmix, custom db settings, ... That could be nice for developers (provided that they want all...

In PHP we have two kind of strings (well, excluding heredoc/nowdoc strings): - single-quoted strings (eg `'Hi there'`) - double-quoted strings (eg `"Hi there"`) They behave very differently: - single-quoted...

Similar to what's already done in https://github.com/Skrol29/tinybutstrong/pull/7

By default we currently don't set the "secure" flag of session cookies. We do that in order to let websites being served via HTTP (setting the "secure" flag for HTTP...

We are currently suggesting this nginx configuration in the /dashboard/system/seo/urls dashboard page: ```nginx location / { try_files $uri $uri/ /index.php?$query_string; } ``` That instructs nginx to serve: 1. the requested...

### Affected Version of Concrete CMS 9.x ### Description When editors edit some rich text, we store it after calling `LinkAbstractor::translateTo()`. When we then edit again this text, we should...

Type:Bug