forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 plugins => Topic started by: PhotoFan on January 27, 2012, 03:39:01 pm

Title: Problems with forum plugin
Post by: PhotoFan on January 27, 2012, 03:39:01 pm
Hello,

My name is Paul and I am completely new to Coppermine.
I have build a website for people to share their pictures in an online community. http://www.whats-hot-nl.com/photofan
Also I installed the Forum plugin, so they can disscus technical information and other  topics.

When I or someone else using the forum try to post a new message I get a blanc page with this message:

"Array (

My webhost told me to reïnstall the plugin, so I did. But the problem did not disapeare.
I really have no idea how to solve this, please help

Regards, Paul
Title: Re: Problems with forum plugin
Post by: Αndré on January 27, 2012, 03:46:35 pm
I'll check that. Seems to be a serious error in the code.
Title: Re: Problems with forum plugin
Post by: PhotoFan on January 27, 2012, 03:50:35 pm
Thnx André,

I have made a test account.

Username: Test
ww: Test123

Regards, Paul
Title: Re: Problems with forum plugin
Post by: Αndré on January 27, 2012, 04:18:19 pm
Obviously the input doesn't get escaped. Usually it should, as it's processed by that function:
Code: [Select]
    function escape_str($str) {   
        if (get_magic_quotes_gpc()) {
            return $str;
        }
        if (function_exists('mysql_real_escape_string')) {
            return mysql_real_escape_string($str, $this->conn_id);
        } elseif (function_exists('mysql_escape_string')) {
            return mysql_escape_string($str);
        } else {
            return addslashes($str);
        }
    }

We have 2 options:
1. I'd need FTP access to the forum plugin directory (if you trust me) to debug what's going on. I'll give you my contact details so you can send me the login data, don't post them publicly!
2. Talk again to your webhost, tell them magic_quotes_gpc seems to work incorrectly (not recommended yet, as that's just an assumption without further tests)
Title: Re: Problems with forum plugin
Post by: PhotoFan on January 27, 2012, 04:57:58 pm
André, that would be great.

If you send me youre contact details, I will send you my admin login.

Thnx, Paul
Title: Re: Problems with forum plugin
Post by: Αndré on January 27, 2012, 05:04:31 pm
PM sent.
Title: Re: Problems with forum plugin
Post by: Αndré on January 30, 2012, 03:51:13 pm
This part of the function will be used:
Code: [Select]
        if (get_magic_quotes_gpc()) {
            return $str;
        }
as magic_quotes_gpc is enabled, at least that function tells that it does.


I haven't investigated if magic_quotes_gpc generally doesn't work as expected or if it's just an issue with the forum plugin. I commented out that part and everything seems to work fine now.
Title: Re: Problems with forum plugin
Post by: PhotoFan on February 02, 2012, 08:57:18 am
Hi André,

Sorry for the delay in reaction, I've had a bad flew!

Thanx for the help, For as much as I did online I did not encounter any problems so far.
It seems everything is working fine now.

Thanx from the whole PhotoFan Community  :D