I have my own idea for increase the features of the PHPMyadmin. How can i tell them?<br><div><br><div class="gmail_quote">On Wed, Jan 16, 2013 at 7:31 PM,  <span dir="ltr"><<a href="mailto:phpmyadmin-devel-request@lists.sourceforge.net" target="_blank">phpmyadmin-devel-request@lists.sourceforge.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send Phpmyadmin-devel mailing list submissions to<br>
        <a href="mailto:phpmyadmin-devel@lists.sourceforge.net">phpmyadmin-devel@lists.sourceforge.net</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:phpmyadmin-devel-request@lists.sourceforge.net">phpmyadmin-devel-request@lists.sourceforge.net</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:phpmyadmin-devel-owner@lists.sourceforge.net">phpmyadmin-devel-owner@lists.sourceforge.net</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Phpmyadmin-devel digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: PHPUnit and our error handler (Marc Delisle)<br>
   2. 4.0.0-alpha1, Alex M and Madhura (Marc Delisle)<br>
   3. Re: 4.0.0-alpha1, Alex M and Madhura (Madhura Jayaratne)<br>
   4. Re: 4.0.0-alpha1, Alex M and Madhura (Alex M)<br>
   5. Re: 4.0.0-alpha1, Alex M and Madhura (Marc Delisle)<br>
   6. Upgrade to the new SF.net interface (Marc Delisle)<br>
   7. Re: 4.0.0-alpha1, Alex M and Madhura (Rouslan Placella)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Tue, 15 Jan 2013 08:37:48 -0500<br>
From: Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>><br>
Subject: Re: [Phpmyadmin-devel] PHPUnit and our error handler<br>
To: <a href="mailto:phpmyadmin-devel@lists.sourceforge.net">phpmyadmin-devel@lists.sourceforge.net</a><br>
Message-ID: <<a href="mailto:50F55BAC.1010100@infomarc.info">50F55BAC.1010100@infomarc.info</a>><br>
Content-Type: text/plain; charset=UTF-8; format=flowed<br>
<br>
Michal ?iha? a ?crit :<br>
> Hi<br>
><br>
> Dne Mon, 14 Jan 2013 13:34:24 -0500<br>
> Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>> napsal(a):<br>
><br>
>> Rouslan Placella a ?crit :<br>
>> Failed asserting that exception of type "PHPUnit_Framework_Error" is<br>
>> thrown. See attached patch.<br>
>><br>
>><br>
> [..]<br>
>> diff --git a/libraries/core.lib.php b/libraries/core.lib.php<br>
>> index 93be5fe..eb698ff 100644<br>
>> --- a/libraries/core.lib.php<br>
>> +++ b/libraries/core.lib.php<br>
>> @@ -277,7 +277,12 @@ function PMA_warnMissingExtension($extension, $fatal = false, $extra = '')<br>
>>      if ($fatal) {<br>
>>          PMA_fatalError($message);<br>
>>      } else {<br>
>> -        trigger_error($message, E_USER_WARNING);<br>
>> +        $GLOBALS['error_handler']->addError(<br>
>> +            $message,<br>
>> +            E_USER_WARNING,<br>
>> +            '',<br>
>> +            '',<br>
>> +            $escape=false);<br>
><br>
> You no longer trigger PHP error here.<br>
><br>
>>      }<br>
>>  }<br>
>><br>
>> diff --git a/test/libraries/core/PMA_warnMissingExtension_test.php b/test/libraries/core/PMA_warnMissingExtension_test.php<br>
>> index 1e11c73..661e6c7 100644<br>
>> --- a/test/libraries/core/PMA_warnMissingExtension_test.php<br>
>> +++ b/test/libraries/core/PMA_warnMissingExtension_test.php<br>
>> @@ -15,6 +15,11 @@ require_once 'libraries/core.lib.php';<br>
>>  class PMA_warnMissingExtension_test extends PHPUnit_Framework_TestCase<br>
>>  {<br>
>><br>
>> +    protected function setUp() {<br>
>> +        require_once './libraries/Error_Handler.class.php';<br>
>> +        $GLOBALS['error_handler'] = new PMA_Error_Handler();<br>
>> +    }<br>
>> +<br>
>>      function testMissingExtention(){<br>
>>          $ext = 'php_ext';<br>
>>          $this->setExpectedException('PHPUnit_Framework_Error',<br>
><br>
> So it can not pop up as en error here. The addError method just adds it<br>
> to list of errors in error handle for future display, but that does not<br>
> trigger PHP error.<br>
<br>
I think I understand now, working on it...<br>
<br>
<br>
--<br>
Marc Delisle<br>
<a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 15 Jan 2013 16:02:18 -0500<br>
From: Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>><br>
Subject: [Phpmyadmin-devel] 4.0.0-alpha1, Alex M and Madhura<br>
To: <a href="mailto:phpmyadmin-devel@lists.sf.net">phpmyadmin-devel@lists.sf.net</a><br>
Message-ID: <<a href="mailto:50F5C3DA.7050808@infomarc.info">50F5C3DA.7050808@infomarc.info</a>><br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Hi,<br>
just to summarize, I would like to know from you guys:<br>
<br>
1. Do you have problems when pointing your browser to<br>
<a href="http://demo.phpmyadmin.net/master/" target="_blank">http://demo.phpmyadmin.net/master/</a> or just when visiting your own server?<br>
<br>
2. Did you try disabling all browser extensions?<br>
<br>
I'm puzzled by the fact that I cannot reproduce the problems, under<br>
Ubuntu or Windows 7, as I reported in the other thread.<br>
<br>
By the way, one of the Chrome warnings should be solved when this pull<br>
request [0] is accepted for QA_3_5 then merged to master.<br>
<br>
--<br>
Marc Delisle<br>
<a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Wed, 16 Jan 2013 06:29:11 +0530<br>
From: Madhura Jayaratne <<a href="mailto:madhura.cj@gmail.com">madhura.cj@gmail.com</a>><br>
Subject: Re: [Phpmyadmin-devel] 4.0.0-alpha1, Alex M and Madhura<br>
To: <a href="mailto:phpmyadmin-devel@lists.sourceforge.net">phpmyadmin-devel@lists.sourceforge.net</a><br>
Message-ID:<br>
        <CAC5h4aPA3dJDaT5GRdMGTAmh5v=<a href="mailto:irpHmdKaOc9O6DUfueXjtZw@mail.gmail.com">irpHmdKaOc9O6DUfueXjtZw@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
On Wed, Jan 16, 2013 at 2:32 AM, Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>> wrote:<br>
<br>
> Hi,<br>
> just to summarize, I would like to know from you guys:<br>
><br>
> 1. Do you have problems when pointing your browser to<br>
> <a href="http://demo.phpmyadmin.net/master/" target="_blank">http://demo.phpmyadmin.net/master/</a> or just when visiting your own server?<br>
><br>
> 2. Did you try disabling all browser extensions?<br>
><br>
> I'm puzzled by the fact that I cannot reproduce the problems, under<br>
> Ubuntu or Windows 7, as I reported in the other thread.<br>
><br>
> By the way, one of the Chrome warnings should be solved when this pull<br>
> request [0] is accepted for QA_3_5 then merged to master.<br>
><br>
> --<br>
> Marc Delisle<br>
> <a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
><br>
> Hi,<br>
<br>
1. I have no problem when when pointing to the demo. Only the local server<br>
gives trouble.<br>
2. Yes, I tried disabling all browser extension, but it didn't help<br>
<br>
<br>
--<br>
Thanks and Regards,<br>
<br>
Madhura Jayaratne<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Wed, 16 Jan 2013 12:53:12 +0200<br>
From: Alex M <<a href="mailto:alex.ukf@gmail.com">alex.ukf@gmail.com</a>><br>
Subject: Re: [Phpmyadmin-devel] 4.0.0-alpha1, Alex M and Madhura<br>
To: <a href="mailto:phpmyadmin-devel@lists.sourceforge.net">phpmyadmin-devel@lists.sourceforge.net</a><br>
Message-ID:<br>
        <CAB0k2uwJY4X5x5b=<a href="mailto:6AU-FJo9JGx05kWgm9Ka5rrvCkKQrqwE4g@mail.gmail.com">6AU-FJo9JGx05kWgm9Ka5rrvCkKQrqwE4g@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
On Wed, Jan 16, 2013 at 2:59 AM, Madhura Jayaratne <<a href="mailto:madhura.cj@gmail.com">madhura.cj@gmail.com</a>>wrote:<br>
<br>
><br>
> On Wed, Jan 16, 2013 at 2:32 AM, Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>> wrote:<br>
><br>
>> Hi,<br>
>> just to summarize, I would like to know from you guys:<br>
>><br>
>> 1. Do you have problems when pointing your browser to<br>
>> <a href="http://demo.phpmyadmin.net/master/" target="_blank">http://demo.phpmyadmin.net/master/</a> or just when visiting your own server?<br>
>><br>
>> 2. Did you try disabling all browser extensions?<br>
>><br>
>> I'm puzzled by the fact that I cannot reproduce the problems, under<br>
>> Ubuntu or Windows 7, as I reported in the other thread.<br>
>><br>
>> By the way, one of the Chrome warnings should be solved when this pull<br>
>> request [0] is accepted for QA_3_5 then merged to master.<br>
>><br>
>> --<br>
>> Marc Delisle<br>
>> <a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
>><br>
>> Hi,<br>
><br>
> 1. I have no problem when when pointing to the demo. Only the local server<br>
> gives trouble.<br>
> 2. Yes, I tried disabling all browser extension, but it didn't help<br>
><br>
<br>
Same here. I am using Chrome in Incognito mode.<br>
<br>
Alex<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Wed, 16 Jan 2013 08:01:44 -0500<br>
From: Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>><br>
Subject: Re: [Phpmyadmin-devel] 4.0.0-alpha1, Alex M and Madhura<br>
To: <a href="mailto:phpmyadmin-devel@lists.sourceforge.net">phpmyadmin-devel@lists.sourceforge.net</a><br>
Message-ID: <<a href="mailto:50F6A4B8.3010002@infomarc.info">50F6A4B8.3010002@infomarc.info</a>><br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Alex M a ?crit :<br>
> On Wed, Jan 16, 2013 at 2:59 AM, Madhura Jayaratne <<a href="mailto:madhura.cj@gmail.com">madhura.cj@gmail.com</a>>wrote:<br>
><br>
>> On Wed, Jan 16, 2013 at 2:32 AM, Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>> wrote:<br>
>><br>
>>> Hi,<br>
>>> just to summarize, I would like to know from you guys:<br>
>>><br>
>>> 1. Do you have problems when pointing your browser to<br>
>>> <a href="http://demo.phpmyadmin.net/master/" target="_blank">http://demo.phpmyadmin.net/master/</a> or just when visiting your own server?<br>
>>><br>
>>> 2. Did you try disabling all browser extensions?<br>
>>><br>
>>> I'm puzzled by the fact that I cannot reproduce the problems, under<br>
>>> Ubuntu or Windows 7, as I reported in the other thread.<br>
>>><br>
>>> By the way, one of the Chrome warnings should be solved when this pull<br>
>>> request [0] is accepted for QA_3_5 then merged to master.<br>
>>><br>
>>> --<br>
>>> Marc Delisle<br>
>>> <a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
>>><br>
>>> Hi,<br>
>> 1. I have no problem when when pointing to the demo. Only the local server<br>
>> gives trouble.<br>
>> 2. Yes, I tried disabling all browser extension, but it didn't help<br>
>><br>
><br>
> Same here. I am using Chrome in Incognito mode.<br>
><br>
> Alex<br>
<br>
Anything special about your servers? Could you summarize for the list,<br>
which web server, PHP version and MySQL version?<br>
<br>
<br>
--<br>
Marc Delisle<br>
<a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Wed, 16 Jan 2013 08:19:11 -0500<br>
From: Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>><br>
Subject: [Phpmyadmin-devel] Upgrade to the new SF.net interface<br>
To: <a href="mailto:phpmyadmin-devel@lists.sf.net">phpmyadmin-devel@lists.sf.net</a><br>
Message-ID: <<a href="mailto:50F6A8CF.1030609@infomarc.info">50F6A8CF.1030609@infomarc.info</a>><br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Hi,<br>
All the problems that were a concern for us have been fixed;<br>
upgrading has been requested and is now in the queue.<br>
<br>
--<br>
Marc Delisle<br>
<a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Wed, 16 Jan 2013 14:01:46 +0000<br>
From: Rouslan Placella <<a href="mailto:rouslan@placella.com">rouslan@placella.com</a>><br>
Subject: Re: [Phpmyadmin-devel] 4.0.0-alpha1, Alex M and Madhura<br>
To: <a href="mailto:phpmyadmin-devel@lists.sourceforge.net">phpmyadmin-devel@lists.sourceforge.net</a><br>
Message-ID: <<a href="mailto:50F6B2CA.9010405@placella.com">50F6B2CA.9010405@placella.com</a>><br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
On 01/16/2013 01:01 PM, Marc Delisle wrote:<br>
> Alex M a ?crit :<br>
>> On Wed, Jan 16, 2013 at 2:59 AM, Madhura Jayaratne <<a href="mailto:madhura.cj@gmail.com">madhura.cj@gmail.com</a>>wrote:<br>
>><br>
>>> On Wed, Jan 16, 2013 at 2:32 AM, Marc Delisle <<a href="mailto:marc@infomarc.info">marc@infomarc.info</a>> wrote:<br>
>>><br>
>>>> Hi,<br>
>>>> just to summarize, I would like to know from you guys:<br>
>>>><br>
>>>> 1. Do you have problems when pointing your browser to<br>
>>>> <a href="http://demo.phpmyadmin.net/master/" target="_blank">http://demo.phpmyadmin.net/master/</a> or just when visiting your own server?<br>
>>>><br>
>>>> 2. Did you try disabling all browser extensions?<br>
>>>><br>
>>>> I'm puzzled by the fact that I cannot reproduce the problems, under<br>
>>>> Ubuntu or Windows 7, as I reported in the other thread.<br>
>>>><br>
>>>> By the way, one of the Chrome warnings should be solved when this pull<br>
>>>> request [0] is accepted for QA_3_5 then merged to master.<br>
>>>><br>
>>>> --<br>
>>>> Marc Delisle<br>
>>>> <a href="http://infomarc.info" target="_blank">http://infomarc.info</a><br>
>>>><br>
>>>> Hi,<br>
>>> 1. I have no problem when when pointing to the demo. Only the local server<br>
>>> gives trouble.<br>
>>> 2. Yes, I tried disabling all browser extension, but it didn't help<br>
>>><br>
>><br>
>> Same here. I am using Chrome in Incognito mode.<br>
>><br>
>> Alex<br>
><br>
> Anything special about your servers? Could you summarize for the list,<br>
> which web server, PHP version and MySQL version?<br>
<br>
A look at (and diff) of the php.ini and apache2.conf files might help.<br>
<br>
Bye,<br>
Rouslan<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
------------------------------------------------------------------------------<br>
Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery<br>
and much more. Keep your Java skills current with LearnJavaNow -<br>
200+ hours of step-by-step video tutorials by Java experts.<br>
SALE $49.99 this month only -- learn more at:<br>
<a href="http://p.sf.net/sfu/learnmore_122612" target="_blank">http://p.sf.net/sfu/learnmore_122612</a><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Phpmyadmin-devel mailing list<br>
<a href="mailto:Phpmyadmin-devel@lists.sourceforge.net">Phpmyadmin-devel@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel</a><br>
<br>
<br>
End of Phpmyadmin-devel Digest, Vol 78, Issue 13<br>
************************************************<br>
</blockquote></div><br></div>