Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • mian Friend
    #193959

    Hi, Joomlart.
    I try to install JA Kranos for J31 quick start but doesn’t works.
    I’ve downloaded from http://www.joomlart.com/forums/downloads.php?do=file&id=3201
    Then try to install and… when the installation starts, it stop on step 1. Nothing happens and the page still loading (as you can see on image attached)…

    I use OS X 10.9.1 and i’ve tried with Safari 7.0.1, Firefox 26 and last Chrome… same results!!
    With other templates, quick start solution works regularly.

    Can you help me with this issue, please?
    Thanks a lot.

    Andrea

    zorroh Friend
    #519366

    i had a same problem!

    I found solution from here: http://forum.joomla.org/viewtopic.php?t=808997
    and here: https://github.com/joomla/joomla-cms/pull/1309/files

    Open:
    libraries/joomla/filter/input.php

    And change Replace two lines..

    Find

    // Convert decimal
    $source = preg_replace('/&#(d+);/me', "utf8_encode(chr(\1))", $source); // decimal notation

    Replace with

    $source = preg_replace_callback('/&#(d+);/m', function($m){return utf8_encode(chr($m[1]));}, $source); // decimal notation

    2nd line, Find

    // Convert hex
    $source = preg_replace('/&#x(+);/mei', "utf8_encode(chr(0x\1))", $source); // hex notation

    Replace with

    $source = preg_replace_callback('/&#x(+);/mi', function($m){return utf8_encode(chr('0x'.$m[1]));}, $source); // hex notation

    mian Friend
    #519389

    Thanks a lot, zorroh. It works!!! 🙂

    myuption Friend
    #519602

    Indeed, that worked, thanks 🙂

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 3 voices, and was last updated by  myuption 10 years, 9 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum