|
Page 1 of 1
|
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location: Borgo San Michele
|
Site Updated To Latest Icy Phoenix Version
Hi all,
I have updated Icy Phoenix on this website to latest development version, with the goal to update PHP and MySQL/MariaDB to their latest version on the server.
I already noticed something which is not working properly, please let me know if you encounter any error.
Thank you very much!
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
1 user likes this post • Share |
#1 Sat 02 Jan, 2021 18:44 |
|
Sponsors
|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
|
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location: Borgo San Michele
|
Re: Site Updated To Latest Icy Phoenix Version
Already found some issues:
- Index and Home only work in PHP 7 and not in PHP 7.2+
Acronyms are not working anymore... I had to disable them hardcode at the moment => Hopefully is fixed now
Attachments aren't working anymore... => Hopefully is fixed now
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
Share |
#2 Sat 02 Jan, 2021 19:14 |
|
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location: Borgo San Michele
|
Re: Site Updated To Latest Icy Phoenix Version
Informpro if you have some time, can you please check this line of code from bbcode.php?
$text .= str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace($orig, $repl, '\0')", '>' . $seg . '<'), 1, -1));
EDIT:
I should have fixed like this:
$text .= str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#s', preg_replace($orig, $repl, '>' . $seg . '<'), '>' . $seg . '<'), 1, -1));
Not really sure the fix is correct though...
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
Edited by Mighty Gorgon, Sat 02 Jan, 2021 22:16: Added a proposed edit |
Share |
#3 Sat 02 Jan, 2021 19:26 |
|
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location: Borgo San Michele
|
Re: Site Updated To Latest Icy Phoenix Version
After inspecting the code I should have also fixed some other bugs preventing Home Page and Forum Index to display properly.
Server is now running PHP 7.4.
Please let me know if you find any other bug.
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
1 user likes this post • Share |
#4 Sat 02 Jan, 2021 23:19 |
|
Blackgatomon
Joined: September 2008
Posts: 12
|
Re: Site Updated To Latest Icy Phoenix Version
is safe for production?
|
Share |
#5 Sat 23 Jan, 2021 04:08 |
|
mort
Spam Basher
Joined: August 2010
Posts: 998
Location: Up a tree
|
Re: Site Updated To Latest Icy Phoenix Version
Haha!
So where does one find the download?
|
Share |
#6 Sat 23 Jan, 2021 11:50 |
|
Blackgatomon
Joined: September 2008
Posts: 12
|
Re: Site Updated To Latest Icy Phoenix Version
Haha!
So where does one find the download?
oh, off-topic: congratulations on your 1000 posts.
|
Share |
#7 Thu 28 Jan, 2021 03:33 |
|
Stryker
Stryker
Joined: November 2020
Posts: 4
Location:
|
Re: Site Updated To Latest Icy Phoenix Version
Fantastic news
Can't change password
no changes can be made in the user profile
A greeting
|
Share |
#8 Sun 28 Feb, 2021 22:02 |
|
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location: Borgo San Michele
|
Re: Site Updated To Latest Icy Phoenix Version
Can't change password
no changes can be made in the user profile
I should have fixed it, please let me know if it works properly now.
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
Share |
#9 Sat 13 Mar, 2021 10:49 |
|
Stryker
Stryker
Joined: November 2020
Posts: 4
Location:
|
Re: Site Updated To Latest Icy Phoenix Version
Perfect
Thanks Mighty Gorgon
|
Share |
#10 Mon 15 Mar, 2021 02:26 |
|
Stryker
Stryker
Joined: November 2020
Posts: 4
Location:
|
Re: Site Updated To Latest Icy Phoenix Version
when version 7.4 will be available for download ??
regards
|
Share |
#11 Thu 15 Apr, 2021 11:55 |
|
MWE_001
Ray B
Joined: July 2016
Posts: 238
Location: Marion, IL
|
Re: Site Updated To Latest Icy Phoenix Version
Informpro if you have some time, can you please check this line of code from bbcode.php?
$text .= str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace($orig, $repl, '\0')", '>' . $seg . '<'), 1, -1));
EDIT:
I should have fixed like this:
$text .= str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#s', preg_replace($orig, $repl, '>' . $seg . '<'), '>' . $seg . '<'), 1, -1));
Not really sure the fix is correct though...
Last I heard he was getting ready to move again. He said he was going to get a install of a stack again so he could work on some coding. Not sure if it has panned out for him yet or not. I will try to get a hold of him on a couple different websites that he and I both belong to. The last time I saw him active was actually yesterday.
____________ "Don't gain the world and lose your soul, wisdom is better than silver and gold" -Bob Marley
|
Share |
#12 Fri 07 May, 2021 10:46 |
|
Informpro
Joined: October 2008
Posts: 1110
Location:
|
Re: Site Updated To Latest Icy Phoenix Version
I just forgot about this.
The proper fix should be:
- $text .= str_replace('\"', '"', substr(preg_replace_callback('#(\>(((?>([^><]+|(?R)))*)\<))#s', function ($match) use ($orig, $repl) { return preg_replace($orig, $repl, $match[0]); }, '>' . $seg . '<'), 1, -1));
|
Share |
#13 Mon 10 May, 2021 14:25 |
|
mort
Spam Basher
Joined: August 2010
Posts: 998
Location: Up a tree
|
Re: Site Updated To Latest Icy Phoenix Version
So,
when are we going to be able to get it?
|
Share |
#14 Wed 19 May, 2021 06:22 |
|
|
Page 1 of 1
|
Was this topic useful?
Was this topic useful?
Link this topic |
URL |
|
BBCode |
|
HTML |
|
Similar Topics
Similar Topics
You cannot post new topics You cannot reply to topics You cannot edit your posts You cannot delete your posts You cannot vote in polls You cannot attach files You can download files You cannot post calendar events
|
|
|
|