CodeIgniter Forums
PHP 7.2 released - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: News & Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=2)
+--- Thread: PHP 7.2 released (/showthread.php?tid=69484)

Pages: 1 2 3 4


RE: PHP 7.2 released - InsiteFX - 02-02-2018

I had problems at first to with custom fonts.

Here is how I fixed it using the .htaccess file.

Code:
    # Add Font Types
    AddType application/vnd.ms-fontobject .eot
    AddType font/truetype .ttf
    AddType font/opentype .otf
    AddType font/opentype .woff
    AddType font/opentype .woff2
    AddType image/svg+xml .svg .svgz

    <FilesMatch ".(eot|ttf|otf|woff|woff2|svg|svgz)">
        Header set Access-Control-Allow-Origin "*"
    </FilesMatch>

Add that to your ,htaccess file and you should be good to go,
I think it has to do with the https:// stuff being added.


RE: PHP 7.2 released - dexusmedia - 04-02-2018

Upgraded my XAMPP install to use 7.2 last night. No issues with CI3.1.6 so far.


RE: PHP 7.2.4 released - InsiteFX - 04-03-2018

You do know that PHP 7.2.4 is out right?


RE: PHP 7.2 released - itstrisha - 04-25-2018

wow.... good to know that the new veriosn of php got release. Thanks for the update Smile but what do you mean by further problems?


RE: PHP 7.2 released - InsiteFX - 04-25-2018

Some users have been having problems with the PHP opcache.


RE: PHP 7.2.5 released - InsiteFX - 04-27-2018

PHP Version 7.2.5 Has been released.


RE: PHP 7.2 released - digi4shop - 05-04-2018

thanks Blush Blush


RE: PHP 7.2 released - stef25 - 05-23-2018

In php 7.2 the each function is deprecated. This is used in xss_clean in Security.php and gives some problems. Not sure if this has been reported before.


RE: PHP 7.2 released - InsiteFX - 05-23-2018

They know about it, it also effects the HMVC Modules.


RE: PHP 7.2 released - Paradinight - 05-23-2018

(05-23-2018, 07:55 AM)stef25 Wrote: In php 7.2 the each function is deprecated. This is used in xss_clean in Security.php and gives some problems. Not sure if this has been reported before.

it is fixed since 3.1.4

Codeigniter 3.1.4 release was 20.3.2017