php-general Digest 4 Aug 2010 21:31:25 -0000 Issue 6879

Topics (messages 307309 through 307317):

Re: Encoding for W3C Validation
        307309 by: Carlton Whitehead
        307310 by: Richard Quadling

PHP images server
        307311 by: Jean-Michel Philippon-Nadeau

simpleXML - can't add children - why? - stuck
        307312 by: MEM

multi thread work?
        307313 by: Tontonq Tontonq
        307314 by: Alex Major
        307315 by: Rasmus Lerdorf
        307316 by: Daniel Brown

Re: [site is acting strange] - blank pages, download index.php, or works fine
        307317 by: Tristan

Administrivia:

To subscribe to the digest, e-mail:
        [email protected]

To unsubscribe from the digest, e-mail:
        [email protected]

To post to the list, e-mail:
        [email protected]


----------------------------------------------------------------------
--- Begin Message ---
That is definitely calling out for a loop.

When I scan down the lines of code, the only part I see changing is the x
after $pic_x. You could make an array with all of the picture details and
then replace all of that repeated code with a loop like so:

$pics = array('my_first_picture.jpg', 'my_second_picture.jpg',
'etcetera.jpg');
foreach ($pics as $pic)
{
     if (trim($pic) <> "") { echo "<div class='proddetailpics'><a href='#'
class='color_thumb'> <img src='/imagedir/$pic' alt='$itemgroup
$itemsubgroup' width='60' height='60' onclick=MM_swapImage('
prodimage','','/imagedir/$pic',0) border='0' /></a></div>"; }
}

For the next step, you can just replace all those single quotes in your HTML
with escaped double quotes like so:

if (trim($pic) <> "") { echo "<div class=proddetailpics\"><a href=\"#\"
class=\"color_thumb\"> <img src=\"/imagedir/$pic\" alt=\"$itemgroup
$itemsubgroup\" width=\"60\" height=\"60\" onclick=MM_swapImage(\"
prodimage\",\"\",\"/imagedir/$pic\",0) border=\"0\" /></a></div>"; }

As others have pointed out, you might want to use single quotes for the PHP
value being passed to echo. That would save you from having to escape the
HTML double quotes, but then you can't include $variables inside of single
quoted strings (you have to concatenate them separately).  Pick your poison.

The PHP documentation on strings is pretty good, and it couldn't hurt to
have a look: http://php.net/manual/en/language.types.string.php

Carlton Whitehead



On Tue, Aug 3, 2010 at 3:44 PM, Rick Dwyer <[email protected]> wrote:

>
> On Aug 3, 2010, at 3:36 PM, Ashley Sheridan wrote:
>
> > On Tue, 2010-08-03 at 15:32 -0400, Rick Dwyer wrote:
> >>
> >> On Aug 3, 2010, at 3:15 PM, Sebastian Ewert wrote:
> >>
> >> > Ashley Sheridan wrote:
> >> >> On Tue, 2010-08-03 at 15:00 -0400, Rick Dwyer wrote:
> >> >>
> >> >>> On Aug 3, 2010, at 2:47 PM, Sebastian Ewert wrote:
> >> >>>
> >> >>>> Rick Dwyer wrote:
> >> >>>>> Hello List.
> >> >>>>>
> >> >>>>> In the Alt section of the IMG tag below, the variable $myitem has
> a value of "Who's There".
> >> >>>>>
> >> >>>>> echo "<div class='myclass'><a href='#' class='color_thumb'> <img
> src='/itemimages/$mypic' alt='$myitem' width='60' ....
> >> >>>>>
> >> >>>>> When running through W3C validator, the line errors out because of
> the " ' " in "Who's".
> >> >>>>> I tried:
> >> >>>>> $myitem=(htmlentities($myitem));
> >> >>>>>
> >> >>>>> But this has no affect on "Who's".
> >> >>>>>
> >> >>>>> What's the best way to code this portion so the apostrophe is
> handled correctly?
> >> >>>>>
> >> >>>>>
> >> >>>>> TIA,
> >> >>>>>
> >> >>>>> --Rick
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>> Use it
> >> >>>>
> >> >>>>
> >> >>>> echo '<div class="myclass"><a href="#" class="color_thumb"> <img
> >> >>>> src="/itemimages/'.$mypic.'" alt="'.$myitem.'" width="60" ...'
> >> >>>
> >> >>> Thanks Sebastian.
> >> >>>
> >> >>> In the above, what is the function of the period in front of
> $myitem?
> >> >>>
> >> >>> --Rick
> >> >>>
> >> >>>
> >> >>
> >> >>
> >> >> It is a string concatenation in PHP. But, as my last email on this
> >> >> thread shows, you only need to add ENT_QUOTES to your htmlentities()
> >> >> call and everything will work.
> >> >>
> >> >> Thanks,
> >> >> Ash
> >> >> http://www.ashleysheridan.co.uk
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >> > If you use single quotes you can't use variables inside the string.
> You
> >> > have to combine strings and variables or two strings with a dot.
> >> >
> >> > echo 'foo'.$bar;
> >> >
> >> > http://www.php.net/manual/de/language.types.string.php
> >> >
> >> > I'm not shure but I think to validate xhtml you need the double
> quotes.
> >>
> >> Problem I'm having is I've inherited a PHP page that contains sections
> of PHP/Javascript/HTML/CSS all inside of a PHP echo tag.  My PHP and JS
> skill are rudimentary at best so when it comes to a block of code 40 to 50
> lines in length, it becomes daunting to reverse the ' with ".  Each echo
> block starts with a " and the html inside uses a '.  JS also uses '.
> >>
> >> Below is an actual block in more detail with JS in it.  Is it still
> recommended to switch with " with ' and ' with "?
> >>
> >> --Rick
> >>
> >>
> >>        echo "
> >>        <p>Click on a picture to view that color:</p>";
> >>       If (trim($pic_1) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_1' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_1',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_2) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_2' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_2',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_3) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_3' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_3',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_4) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_4' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_4',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_5) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_5' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_5',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_6) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_6' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_6',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_7) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_7' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_7',0) border='0'
> /></a></div>";}
> >>       If (trim($pic_8) <> "") {echo "<div class='proddetailpics'><a
> href='#' class='color_thumb'> <img src='/imagedir/$pic_8' alt='$itemgroup
> $itemsubgroup' width='60' height='60'
> onclick=MM_swapImage('prodimage','','/imagedir/$pic_8',0) border='0'
> /></a></div>";}
> >>        }
> >>
> >>
> >
> > That's some damn ugly code that I'd consider putting in a loop right
> away!
>
> The whole page is like this.... that's why I said it was daunting : (

--- End Message ---
--- Begin Message ---
On 4 August 2010 13:33, Carlton Whitehead <[email protected]> wrote:
> That is definitely calling out for a loop.
>
> When I scan down the lines of code, the only part I see changing is the x
> after $pic_x. You could make an array with all of the picture details and
> then replace all of that repeated code with a loop like so:
>
> $pics = array('my_first_picture.jpg', 'my_second_picture.jpg',
> 'etcetera.jpg');
> foreach ($pics as $pic)
> {
>     if (trim($pic) <> "") { echo "<div class='proddetailpics'><a href='#'
> class='color_thumb'> <img src='/imagedir/$pic' alt='$itemgroup
> $itemsubgroup' width='60' height='60' onclick=MM_swapImage('
> prodimage','','/imagedir/$pic',0) border='0' /></a></div>"; }
> }
>
> For the next step, you can just replace all those single quotes in your HTML
> with escaped double quotes like so:
>
> if (trim($pic) <> "") { echo "<div class=proddetailpics\"><a href=\"#\"
> class=\"color_thumb\"> <img src=\"/imagedir/$pic\" alt=\"$itemgroup
> $itemsubgroup\" width=\"60\" height=\"60\" onclick=MM_swapImage(\"
> prodimage\",\"\",\"/imagedir/$pic\",0) border=\"0\" /></a></div>"; }
>
> As others have pointed out, you might want to use single quotes for the PHP
> value being passed to echo. That would save you from having to escape the
> HTML double quotes, but then you can't include $variables inside of single
> quoted strings (you have to concatenate them separately).  Pick your poison.
>
> The PHP documentation on strings is pretty good, and it couldn't hurt to
> have a look: http://php.net/manual/en/language.types.string.php
>
> Carlton Whitehead

Maybe heredoc is an even easier option ...


if (trim($pic) <> "") {
 echo <<< END_DIV
<div class="proddetailpics">
  <a href="#" class="color_thumb">
    <img src="/imagedir/$pic" alt="$itemgroup $itemsubgroup"
width="60" height="60" onclick="MM_swapImage('prodimage',
'','/imagedir/$pic', 0);" border="0" />
  </a>
</div>
END_DIV;
}

No escaping of quotes, as long as you use " for html attributes and '
for javascript strings.

--- End Message ---
--- Begin Message ---
Hi List,

My website uses a lot of external images coming from many different
websites. Those images are sometimes small, sometimes big, and to
reduce the loading time of my pages and for better uniformity, I've
built a small PHP images server that resizes to a predefined set of
dimensions the images if necessary. To save on CPU usage, the resized
version is stored on Amazon AWS.

When requesting an image of a specific size, if the resized image
exists on AWS, that image is used. The images server then redirects
the browser to the AWS URL.

I don't believe having 80 redirections is a very clean solution so, my
question is: How can I optimize my process while keeping the load on
Amazon's servers?

Thanks in advance,

-- 
Jean-Michel

--- End Message ---
--- Begin Message ---
Hello all,

I'm struggling here, but no joy so far.

Having this XML file that I'm loading using simplexml_load_file():
http://pastebin.com/JiW3LxWM

I need to add some <domain:create> children nodes after line 8.

What do I need to add?
This:
http://pastebin.com/mT27g3ZN

In order to do so, I have used the following php snipped:
http://pastebin.com/a1gG8tXx

I'm getting this warning and, after it, a fatal error:
Warning: SimpleXMLElement::addChild() [simplexmlelement.addchild]:
Cannot add child. Parent is not a permanent member of the XML tree.
(line number 1 of last paste bin)

Fatal error: Call to a member function addChild() on a non-object
(line number 2 of last paste bin)

Note that:
The constant used is correct. The php version is higher then 5.1.
On the same command, later on this code, I was able to create child
nodes with no issues.

I'm far (veery far) from being a guru, so please, what can I do to
debug this, and find out what's going on?


Thanks a lot,
Márcio

--- End Message ---
--- Begin Message ---
Hi
how to make a script multi task  based like this

<?


for($i=1;$i<=100;$i++)
{


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.facebook.com/ajax/reqs.php?__a=1'
);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Opera/9.80 (Windows NT 5.1; U; tr)
Presto/2.6.22 Version/10.50");
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_REFERER, "http://www.facebook.com/reqs.php";);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8888");
curl_exec($ch);


}
?>


lets say this takes 1000 seconds and it doesnt focus to another curl process
before it finish the previous one

is it possible to let the script focus another curl process without wait
answer of the previous one

i hope if u could understand me ^^

--- End Message ---
--- Begin Message ---
> -----Original Message-----
> From: Tontonq Tontonq [mailto:[email protected]]
> Sent: 04 August 2010 18:21
> To: PHP General Mailing List
> Subject: [PHP] multi thread work?
> 
> Hi
> how to make a script multi task  based like this
> 
> <?
> 
> 
> for($i=1;$i<=100;$i++)
> {
> 
> 
> $ch = curl_init();
> curl_setopt($ch, CURLOPT_URL,
> 'http://www.facebook.com/ajax/reqs.php?__a=1'
> );
> curl_setopt($ch, CURLOPT_POST, 1);
> curl_setopt($ch, CURLOPT_USERAGENT, "Opera/9.80 (Windows NT 5.1; U; tr)
> Presto/2.6.22 Version/10.50");
> curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
> curl_setopt($ch, CURLOPT_REFERER, "http://www.facebook.com/reqs.php";);
> curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
> //curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
> curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
> curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
> curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8888");
> curl_exec($ch);
> 
> 
> }
> ?>
> 
> 
> lets say this takes 1000 seconds and it doesnt focus to another curl
> process
> before it finish the previous one
> 
> is it possible to let the script focus another curl process without
> wait
> answer of the previous one
> 
> i hope if u could understand me ^^

This question has been asked several times over the last week, have a look
over the archive ;).

You need to be looking at something like process forking (
http://php.net/manual/en/function.pcntl-fork.php ).

Alex.


--- End Message ---
--- Begin Message ---
On 8/4/10 10:27 AM, Alex Major wrote:
>> -----Original Message-----
>> From: Tontonq Tontonq [mailto:[email protected]]
>> Sent: 04 August 2010 18:21
>> To: PHP General Mailing List
>> Subject: [PHP] multi thread work?
>>
>> Hi
>> how to make a script multi task  based like this
>>
>> <?
>>
>>
>> for($i=1;$i<=100;$i++)
>> {
>>
>>
>> $ch = curl_init();
>> curl_setopt($ch, CURLOPT_URL,
>> 'http://www.facebook.com/ajax/reqs.php?__a=1'
>> );
>> curl_setopt($ch, CURLOPT_POST, 1);
>> curl_setopt($ch, CURLOPT_USERAGENT, "Opera/9.80 (Windows NT 5.1; U; tr)
>> Presto/2.6.22 Version/10.50");
>> curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
>> curl_setopt($ch, CURLOPT_REFERER, "http://www.facebook.com/reqs.php";);
>> curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
>> //curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
>> curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
>> curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
>> curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8888");
>> curl_exec($ch);
>>
>>
>> }
>> ?>
>>
>>
>> lets say this takes 1000 seconds and it doesnt focus to another curl
>> process
>> before it finish the previous one
>>
>> is it possible to let the script focus another curl process without
>> wait
>> answer of the previous one
>>
>> i hope if u could understand me ^^
> 
> This question has been asked several times over the last week, have a look
> over the archive ;).
> 
> You need to be looking at something like process forking (
> http://php.net/manual/en/function.pcntl-fork.php ).

Definitely not.  You should be looking either at curl_multi or at
something like Gearman.  pcntl is very similar to eval for Web apps.  If
you find yourself using them, you know you have taken a wrong turn
somewhere.

-Rasmus

--- End Message ---
--- Begin Message ---
On Wed, Aug 4, 2010 at 13:21, Tontonq Tontonq <[email protected]> wrote:
> Hi
> how to make a script multi task  based like this
[snip=code]
>
> lets say this takes 1000 seconds and it doesnt focus to another curl process
> before it finish the previous one
>
> is it possible to let the script focus another curl process without wait
> answer of the previous one

    Might want to check into Gearman for this one.

        http://gearman.org/

-- 
</Daniel P. Brown>
UNADVERTISED DEDICATED SERVER SPECIALS
SAME-DAY SETUP
Just ask me what we're offering today!
[email protected] || [email protected]
http://www.parasane.net/ || http://www.pilotpig.net/

--- End Message ---
--- Begin Message ---
The sites are all on the same server. LAMP. no load balancing or anything
really fancy for that matter.

Looking a little closer, here's an error that we uncovered being thrown by
apache

"As we have discussed, I have investigated this further and spoke with your
host. It appears that when the error page appears, the following error
appears in your apache/php error logs:

Broken pipe: core_output_filter: writing data to the network

Which would be causing empty responses (the error being seen in chrome).
Since this appears to be a server side issue, your host is investigating
this further. If your host needs us to take some further action in regards
to this issue, please let us know."

This site has adult content on it btw. Like I said sometimes we won't see
the prob for hrs and sometimes its every other page load.

members.myhomegrown.com
tmm / phpuser


Thanks, T



On Fri, Jul 30, 2010 at 6:51 PM, David Hutto <[email protected]> wrote:

> On Fri, Jul 30, 2010 at 8:50 PM, David Hutto <[email protected]> wrote:
> > On Fri, Jul 30, 2010 at 8:49 PM, David Hutto <[email protected]>
> wrote:
> >> On Fri, Jul 30, 2010 at 2:50 PM, Ashley Sheridan
> >> <[email protected]> wrote:
> >>> On Fri, 2010-07-30 at 13:38 -0400, Adam Richardson wrote:
> >>>
> >>>> On Fri, Jul 30, 2010 at 11:35 AM, Bill Guion <[email protected]>
> wrote:
> >>>>
> >>>> > At 6:45 PM -0600 7/29/10, Tristan wrote:
> >>>> >
> >>>> >  Yeah like i said site works 95% of the time when navigating.
> PHP5.2, Mysql
> >>>> >> 5. The site is completely dynamic so it wouldn't work at all if
> that was
> >>>> >> the
> >>>> >> case of it not being installed right.
> >>>> >>
> >>>> >> so the other 5% of the time is blank pages and download index.php
> files.
> >>>> >> In
> >>>> >> Firefox when you get a blank page, if you click view source it will
> show
> >>>> >> all
> >>>> >> the code that should be there but, I can't tell if it's requesting
> the
> >>>> >> page
> >>>> >> again when you do that. It never fails 2 times in a row. A refresh
> will
> >>>> >> always fix it. When you look in firebug there is no html so it
> leads me to
> >>>> >> believe FF may be doing just that...going for a second request
> instead of
> >>>> >> viewing currently opened source? In IE8 I would get something like
> >>>> >>
> >>>> >> diagnose problem button
> >>>> >>
> >>>> >> more information drop down with
> >>>> >>
> >>>> >> this problem can be caused by a variety of issues..this is a
> completely
> >>>> >> typical M$ error with no valid help
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >> chrome same thing with
> >>>> >>
> >>>> >> web page cannot be displayed
> >>>> >>
> >>>> >> more information etc...
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >> On Thu, Jul 29, 2010 at 6:36 PM, David McGlone <
> [email protected]>
> >>>> >> wrote:
> >>>> >>
> >>>> >>   On Thu, 2010-07-29 at 18:11 -0600, Tristan wrote:
> >>>> >>>  > I have the strangest issue with my host. They can't figure it
> out and
> >>>> >>> I'm
> >>>> >>>  > completely perplexed. We have other sites running on the server
> just
> >>>> >>>  fine.
> >>>> >>>  > However, this new site is acting very weird. Sometimes we get
> blank
> >>>> >>>  pages,
> >>>> >>>  > sometimes we get a blank page and then a dialog pops up asking
> if we
> >>>> >>> want
> >>>> >>>  to
> >>>> >>>  > download index.php, and then sometimes the site is working
> fine. Any
> >>>> >>>  ideas
> >>>> >>>  > on this?
> >>>> >>>  >
> >>>> >>>  > I'm at ends. Appreciate any advice. For authentication we are
> using
> >>>> >>> mysql
> >>>> >>>  > auth module in apache/linux and proxy pass. We removed proxy
> pass to
> >>>> >>> see
> >>>> >>>  if
> >>>> >>>  > that was it but, it wasn't. its a members.domain.com subdomain
> if
> >>>> >>> that
> >>>> >>>  > helps.
> >>>> >>>
> >>>> >>>  Do you have php-mysql installed?
> >>>> >>>
> >>>> >>>
> >>>> >>>  --
> >>>> >>>  Blessings,
> >>>> >>>  David M.
> >>>> >>>
> >>>> >>>
> >>>> >>>
> >>>> > Does the page validate at http://jigsaw.w3.org/css-validator/?
> >>>> >
> >>>> >     -----===== Bill =====-----
> >>>> > --
> >>>> >
> >>>> > Don't find fault. Find a remedy. - Henry Ford
> >>>> >
> >>>> >
> >>>> >
> >>>> > --
> >>>> > PHP General Mailing List (http://www.php.net/)
> >>>> > To unsubscribe, visit: http://www.php.net/unsub.php
> >>>> >
> >>>> >
> >>>> Tristan,
> >>>>
> >>>> The good news is that you're not crazy.  I've had this exact issue (at
> least
> >>>> in terms of symptoms) when working with one of my client's websites.
> >>>>
> >>>> The bad news is that this was long ago, I was using a shared host, and
> I'm
> >>>> not the one who cause or, more importantly, fixed the problem.  That
> said,
> >>>> I've strained my memory to try and recall what might have been said in
> the
> >>>> follow-up from the host, and it seems like there was a mime-type
> handling
> >>>> issue (again, I could be completely wrong, this is just a faint
> memory.)
> >>>>
> >>>> Another faint memory: are you able to see a difference in behavior
> when you
> >>>> view an index file with the file included in the url (
> >>>> http://yoursite.com/index.php) as opposed to when you view the page
> without
> >>>> it in the url (http://yoursite.com)?
> >>>>
> >>>> Sorry, I wish I still had my email exchange with the company to see
> what
> >>>> information they provided after the fix :(
> >>>>
> >>>> Adam
> >>>>
> >>>
> >>> Actually, you just saying that made me think of a similar problem I had
> >>> once with IIS serving up files. It was XML files rather than PHP, but
> >>> the Mime issue does ring a bell!
> >>>
> >>> Is the server you're using IIS Tristan?
> >>>
> >>> Thanks,
> >>> Ash
> >>> http://www.ashleysheridan.co.uk
> >>>
> >>>
> >>>
> >
> >>Forgot to hit reply all:
> I'm not sure if this helps, or even relates, but the one time I had a
> hosting account for a microsoft app named NopCommerce, when I would
> try to visit the page, it seemed to only allow one connection at a
> time, because of some MS DB user limitation or something, and I didn't
> attempt anymore with it.
>
> Might relate, might not.
> >>
> >
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---

Reply via email to