[PHP] PHP Bug Tracking

2006-07-06 Thread Chris Hemmings
Can anyone point me in the direction where I can find a place to 
download the bug track system that PHP/PEAR  PECL uses.  I seem to 
remember it is available but can't find it anymore!


Ta!

Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP Bug Tracking

2006-07-06 Thread Chris Hemmings

Dan McCullough wrote:

This one?
http://dev.mysql.com/downloads/other/eventum/

On 7/6/06, Chris Hemmings [EMAIL PROTECTED] wrote:


Can anyone point me in the direction where I can find a place to
download the bug track system that PHP/PEAR  PECL uses.  I seem to
remember it is available but can't find it anymore!

Ta!

Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Cheers Dan,

Looks like the one :-)

http://www.mysqltalk.org/what-software-is-used-by-bugsmysqlcom-vt10767.html

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP5 Soap + .NET Webservice

2005-10-11 Thread Chris Hemmings

Thanks Richard,

I think I might start on a slightly simpler service, it seems MS has 
done its best to complicate everything.


I have managed to get something working, but, god knows why the their 
example web service is sending back schema data as well as the result 
data, quite over the top.  I'm guessing it helps their .NET stuff all 
work together nicely.


Anyway, thanks again.

Chris.

Richard Lynch wrote:

On Mon, October 10, 2005 4:40 am, Chris Hemmings wrote:


Can anyone explain how this works, and, how to fix it.  I'm can't find
any documentation on the problem I am having.



colon-separated name-spaces in XML are a relatively new development.

Your XML parser probably is not up to speed on them yet...

You'd have to upgrade your XML parser, or replace it with one that is
aware of this newer XML format.

I forget the precise terminology for colon-separated name-spaces in
XML, so your first task is to find out what the heck it's called. :-)



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP5 Soap + .NET Webservice

2005-10-10 Thread Chris Hemmings

Hello,

Can anyone explain how this works, and, how to fix it.  I'm can't find 
any documentation on the problem I am having.


I'm using a .NET webservice and a PHP SOAP call using version 5.0.4. 
The returned result does not seem correct because of all the stuff at 
the top, the 'xs' stuff.  This makes the result invalid XML because 
there are two roots to the document, xs:schema and diffgr:diffgram


I use the following call to the service and this seems to work correctly.

?php
$client = new
SoapClient(
http://xxx/authorswebservice/authorsservice.asmx?WSDL;
);
$response=$client-GetAuthors();
$xmls=$response-GetAuthorsResult-any;
?

$xmls then contains:

xs:schema xmlns:mstns=http://www.tempuri.org/authors1.xsd; 
xmlns=http://www.tempuri.org/authors1.xsd; 
xmlns:xs=http://www.w3.org/2001/XMLSchema; 
xmlns:msdata=urn:schemas-microsoft-com:xml-msdata id=authors1 	 
targetNamespace=http://www.tempuri.org/authors1.xsd; 
attributeFormDefault=qualified elementFormDefault=qualified

xs:element name=authors1 msdata:IsDataSet=true msdata:Locale=en-GB
xs:complexType
xs:choice maxOccurs=unbounded
xs:element name=authors
xs:complexType
xs:sequence
xs:element name=au_id type=xs:string /
xs:element name=au_lname type=xs:string /
xs:element name=au_fname type=xs:string /
xs:element name=city type=xs:string minOccurs=0 /
/xs:sequence
/xs:complexType
/xs:element
/xs:choice
/xs:complexType
xs:unique name=Constraint1 msdata:PrimaryKey=true
xs:selector xpath=.//mstns:authors /
xs:field xpath=mstns:au_id /
/xs:unique
/xs:element
/xs:schema
diffgr:diffgram xmlns:msdata=urn:schemas-microsoft-com:xml-msdata 
xmlns:diffgr=urn:schemas-microsoft-com:xml-diffgram-v1

authors1 xmlns=http://www.tempuri.org/authors1.xsd;
authors diffgr:id=authors19 msdata:rowOrder=1
au_id807-91-6654/au_id
au_lnamePanteley/au_lname
au_fnameSylvia/au_fname
cityRockville/city
/authors
authors diffgr:id=authors20 msdata:rowOrder=2
au_id846-92-7186/au_id
au_lnameHunter/au_lname
au_fnameSheryl/au_fname
cityPalo Alto/city
/authors
authors diffgr:id=authors21 msdata:rowOrder=3
au_id893-72-1158/au_id
au_lnameMcBadden/au_lname
au_fnameHeather/au_fname
cityVacaville/city
/authors
authors diffgr:id=authors22 msdata:rowOrder=4
au_id899-46-2035/au_id
au_lnameRinger/au_lname
au_fnameAnne/au_fname
citySalt Lake City/city
/authors
authors diffgr:id=authors23 msdata:rowOrder=5
au_id998-72-3567/au_id
au_lnameRinger/au_lname
au_fnameAlbert/au_fname
citySalt Lake City/city
/authors
/authors1
/diffgr:diffgram

Any thoughts why this is happening, and, how I can get rid of the 'xs' 
stuff.


Thanks,

Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Dynamic PHP

2001-12-05 Thread Chris Hemmings

Hello!

I'm sure I read this somewhere but I'm just not so sure now.  Can you
produce PHP code in a PHP page and then run it.  Kind of like this:

?php
$mycode=echo'Hello';;

# Something here to execute $mycode
?

Is the above possible??

Thanks!

Chris.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] XML Segmentation Fault??

2001-11-27 Thread Chris Hemmings

Hello!

This is my first post, so bare with me.  I'm trying to use PHP together with
some XML files to create an array of elements and values.  This, looking at
the examples seemed fairly reasonable.

After recompiling Apache/PHP using --with-xml everything seems fine.  I am
using Solaris 2.6, Apache 1.3.12 and PHP 4.0.4 and I gather PHP will use
Expat from this version of Apache, All fine!

Now when I run any script that uses the XML parser (My script and any
example ones) I seem to get a segmentation error in the Apache error log.  A
bit of the error log is shown below:

[Tue Nov 27 10:10:26 2001] [notice] child pid 5757 exit signal Segmentation
Fault (11)
[Tue Nov 27 10:10:26 2001] [notice] child pid 5778 exit signal Segmentation
Fault (11)
[Tue Nov 27 10:12:47 2001] [notice] child pid 5780 exit signal Segmentation
Fault (11)
[Tue Nov 27 10:13:56 2001] [notice] child pid 5755 exit signal Segmentation
Fault (11)

Now, to be honest I havn't got a clue 'Segmentation Fault' is, so I can't
really work out how to fix this problem.

Has anybody got any ideas???

Thanks for your help!

Chris






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]