khaman2018-02-07 21:41 | Witam, » Quick.Cms v6.xKamil |
treewood (OpenSolution)2018-02-08 09:53 | Weryfikacja opcji allow_url_fopen w wersji v6.3 i v6.5 działa tak samo i odbywa się w database/config.php w tym miejscu:
elseif( defined( 'ADMIN_PAGE' ) && ini_get( 'allow_url_fopen' ) != 1 ){
<?php |
khaman2018-02-08 10:42 | Witam,
string(2) "on"
Kamil |
treewood (OpenSolution)2018-02-08 10:59 | Wychodzi na to, że Twój serwer z tą wersją PHP zwraca komunikat tekstowy on zamiast wartości liczbowej 1. W takim razie zmień sobie w database/config.php kod:
elseif( defined( 'ADMIN_PAGE' ) && ini_get( 'allow_url_fopen' ) != 1 ){
elseif( defined( 'ADMIN_PAGE' ) && ini_get( 'allow_url_fopen' ) != 'on' ){
|
khaman2018-02-08 12:23 | Działa :) Kamil |
lmdragomir2018-04-02 17:42 | Hello. I have the same problem. I ran the test.php file and the message appeared string(0) "" |