Jochen Schultz wrote:
> AFAIK Apache 2 doesn't support virtual hosts for SSL.
>
I think it does now - there was even a c't article on the topic not long
ago. I'll see if I can find it.
/Per
--
Per Jessen, Zürich (-4.0°C)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, vi
Daniel Egeberg wrote:
> On Mon, Mar 8, 2010 at 23:21, Skip Evans
> wrote:
>> D'oh!
>>
>> ...and I suppose there is just no way around that, eh?
>>
>> Skip
>
> You can use SNI, but it's not supported by all web servers and
> browsers.
>
> http://en.wikipedia.org/wiki/Server_Name_Indication
>
I
Per Jessen wrote:
> Jochen Schultz wrote:
>
>> AFAIK Apache 2 doesn't support virtual hosts for SSL.
>>
>
> I think it does now - there was even a c't article on the topic not
> long ago. I'll see if I can find it.
http://www.heise.de/kiosk/archiv/ct/2009/23/174_kiosk (download for a
fee)
Per Jessen wrote:
> Daniel Egeberg wrote:
>
>> On Mon, Mar 8, 2010 at 23:21, Skip Evans
>> wrote:
>>> D'oh!
>>>
>>> ...and I suppose there is just no way around that, eh?
>>>
>>> Skip
>>
>> You can use SNI, but it's not supported by all web servers and
>> browsers.
>>
>> http://en.wikipedia.or
Thanks Per,
well here is a short translation of this article:
http://www.tech-nerds.de/blog/2009/02/apache2-mit-mehreren-ssl-virtualhosts/
If you havn't installed apache2-threaded-dev:
You need the current verion of gnutls (download from gnu.org)
Download, unpack, compile and install as usual. T
Having worked at a decent sized, respectable ISP with 100,000+ customers
sending email via Iron Ports (email scanners), even they would get put
on a blacklist on a monthly basis. Hell it wouldn't surprise me if
Gmail's SMTP servers got put on a black list at some point.
There's seemingly hundred
Hi,
In a hobby project I'm relying on the order in which the following piece
of PHP code is executed:
$client->system->multiCall(
$client->methodOne(),
$client->methodTwo()
);
Currently PHP always resolves $client->system (and executes the __get on
$client) before resolving the arguments
2010/3/10 Auke van Slooten
>
> Hi,
>
> In a hobby project I'm relying on the order in which the following piece of
> PHP code is executed:
>
> $client->system->multiCall(
> $client->methodOne(),
> $client->methodTwo()
> );
>
> Currently PHP always resolves $client->system (and executes the __ge
From: Auke van Slooten
> In a hobby project I'm relying on the order in which the following
piece
> of PHP code is executed:
>
> $client->system->multiCall(
>$client->methodOne(),
>$client->methodTwo()
> );
>
> Currently PHP always resolves $client->system (and executes the __get
on
>
Hi,
I have the code as shown in the following that I am trying to create the
image of based on the file loaded into the file and additional edits. The
problem here appears to be that no matter what value I have in the
$distance_to_destination variable, it does not affect any changes on the
Bruno Fajardo wrote:
2010/3/10 Auke van Slooten
Hi,
In a hobby project I'm relying on the order in which the following piece of PHP
code is executed:
$client->system->multiCall(
$client->methodOne(),
$client->methodTwo()
);
Can't you call the methods $client->methodOne() and
$client->met
2010.03.10. 14:41 keltezéssel, Bob McConnell írta:
From: Auke van Slooten
In a hobby project I'm relying on the order in which the following
piece
of PHP code is executed:
$client->system->multiCall(
$client->methodOne(),
$client->methodTwo()
);
Currently PHP always
On Wed, 2010-03-10 at 15:20 +0100, Sándor Tamás wrote:
>
> 2010.03.10. 14:41 keltezéssel, Bob McConnell írta:
> > From: Auke van Slooten
> >
> >
> >> In a hobby project I'm relying on the order in which the following
> >>
> > piece
> >
> >> of PHP code is executed:
> >>
> >> $client
Bob McConnell wrote:
From: Auke van Slooten
In a hobby project I'm relying on the order in which the following
piece
of PHP code is executed:
$client->system->multiCall(
$client->methodOne(),
$client->methodTwo()
);
Think about it from the parser's point of view. It has to evaluate
From: Sándor Tamás
> 2010.03.10. 14:41 keltezéssel, Bob McConnell írta:
>> From: Auke van Slooten
>>
>>> In a hobby project I'm relying on the order in which the following
>>>
>> piece
>>
>>> of PHP code is executed:
>>>
>>> $client->system->multiCall(
>>> $client->methodOne(),
>>>
Hi,
I have two arrays here that I have combined into a new array, as shown here:
$from = explode("-", $from);
$change = explode("-",$change);
$new_array = array_combine($from,$change);
I then tried reading it from a file and do string matches, trying to find out
the "key" using the array_sea
Auke van Slooten wrote:
Bob McConnell wrote:
From: Auke van Slooten
In a hobby project I'm relying on the order in which the following
piece
of PHP code is executed:
$client->system->multiCall(
$client->methodOne(),
$client->methodTwo()
);
Think about it from the parser's point of v
2010/3/10 Auke van Slooten :
> Bruno Fajardo wrote:
>>
>> 2010/3/10 Auke van Slooten
>>>
>>> Hi,
>>>
>>> In a hobby project I'm relying on the order in which the following piece
>>> of PHP code is executed:
>>>
>>> $client->system->multiCall(
>>> $client->methodOne(),
>>> $client->methodTwo()
>>
On Wed, Mar 10, 2010 at 9:54 AM, Bruno Fajardo wrote:
[snip]
> 2010/3/10 Auke van Slooten :
>> This is not what I meant. I should perhaps mention that it's an xml-rpc
>> client and the method calls are remote method calls. The multiCall method
>> gathers multiple method calls into a single request
2010/3/10 Andrew Ballard :
> On Wed, Mar 10, 2010 at 9:54 AM, Bruno Fajardo wrote:
> [snip]
>> 2010/3/10 Auke van Slooten :
>>> This is not what I meant. I should perhaps mention that it's an xml-rpc
>>> client and the method calls are remote method calls. The multiCall method
>>> gathers multiple
Alice Wei wrote:
> Hi,
>
> I have two arrays here that I have combined into a new array, as shown here:
>
> $from = explode("-", $from);
> $change = explode("-",$change);
> $new_array = array_combine($from,$change);
>
> I then tried reading it from a file and do string matches, trying to find
Andrew Ballard wrote:
I'm not sure you would want to assign null to $client->system. After
all, __set() might not be defined.
I agree with Rob here. If order is really crucial, then call the
statements in the correct order:
system;
/**
* You should add some handling here to make sure that
*
> Date: Wed, 10 Mar 2010 10:09:54 -0600
> From: nos...@mckenzies.net
> To: aj...@alumni.iu.edu
> CC: php-general@lists.php.net
> Subject: Re: Array Search Not Working?
>
> Alice Wei wrote:
> > Hi,
> >
> > I have two arrays here that I have combined into a new array, as shown
> > here:
> >
>
From: aj...@alumni.iu.edu
To: nos...@mckenzies.net
CC: php-general@lists.php.net
Subject: RE: Array Search Not Working?
Date: Wed, 10 Mar 2010 11:21:26 -0500
> Date: Wed, 10 Mar 2010 10:09:54 -0600
> From: nos...@mckenzies.net
> To: aj...@alumni.iu.edu
> CC: php-general@lists.php.net
> Sub
Alice Wei wrote:
> From: aj...@alumni.iu.edu
> To: nos...@mckenzies.net
> CC: php-general@lists.php.net
> Subject: RE: Array Search Not Working?
> Date: Wed, 10 Mar 2010 11:21:26 -0500
I'm still a little foggy on what you're doing, but doing, but does this
help?
$from = explode("-", $from);
$stat
>
> I'm still a little foggy on what you're doing, but doing, but does this
> help?
>
> $from = explode("-", $from);
> $state_colors = explode("-", $state_colors);
> $change = explode("-", $change);
>
> $old = array_combine($from, $state_colors);
> $new = array_combine($from, $change);
>
> //s
did you read the help for those functions on php.net?
On Wed, Mar 10, 2010 at 4:12 PM, Alice Wei wrote:
>
> Hi,
>
> I have the code as shown in the following that I am trying to create the
> image of based on the file loaded into the file and additional edits. The
> problem here appears to be
>
> did you read the help for those functions on php.net?
Yes, I found a "recursive" way to find out the "index" like I wanted, by doing
something like
$from = explode("-", $from);
$state_colors= explode("-", $state_colors);
$change = explode("-",$change);
$count = count($new_array);
$i=0;
f
t "
Payment
NumberBalance
PaymentInterestPrincipal
";
# Call recursive function
amortizationTable($paymentNumber, $periodicPayment, $balance,
$monthlyInterest);
# Close table
print "";
?>
__ Information from E
$periodicPayment, $balance,
$monthlyInterest);
# Close table
print "";
?>
__ Information from ESET Smart Security, version of virus signature
database 4932 (20100310) __
The message was checked by ESET Smart Security.
http://www.eset.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Wed, Mar 10, 2010 at 14:41, Bob McConnell wrote:
> From: Auke van Slooten
>
>> In a hobby project I'm relying on the order in which the following
> piece
>> of PHP code is executed:
>>
>> $client->system->multiCall(
>> $client->methodOne(),
>> $client->methodTwo()
>> );
>>
>> Currently PH
ars.
>>$termLength =($_POST['loan_term']);
>>
>># Number of payments per year.
>>$paymentsPerYear = 12;
>>
>># Payment iteration
>>$paymentNumber =($_POST['loan_term']);
>>
>># Perform preliminary
Op 3/10/10 1:29 PM, Auke van Slooten schreef:
> Hi,
>
> In a hobby project I'm relying on the order in which the following piece
> of PHP code is executed:
>
> $client->system->multiCall(
> $client->methodOne(),
> $client->methodTwo()
> );
>
> Currently PHP always resolves $client->system (a
gt;>
>># Term length of the loan, in years.
>>$termLength =($_POST['loan_term']);
>>
>># Number of payments per year.
>>$paymentsPerYear = 12;
>>
>># Payment iteration
>>$paymentNumber =($_POST['loan_term']);
>
On Wed, Mar 10, 2010 at 22:27, Jochem Maas wrote:
> Op 3/10/10 6:23 PM, Joseph Thayne schreef:
>> Looks to me like you are closing your form before you put anything in
>> it. Therefore, the loan_amount is not set making the value 0. Follow
>> the math, and you are dividing by 1-1.
>>
>> Change t
Hi Jochem,
Jochem Maas wrote:
Op 3/10/10 6:23 PM, Joseph Thayne schreef:
Looks to me like you are closing your form before you put anything in
it. Therefore, the loan_amount is not set making the value 0. Follow
the math, and you are dividing by 1-1.
Change this line:
to:
this is a XS
On Wed, Mar 10, 2010 at 23:44, Dmitry Ruban wrote:
> Hi Jochem,
>
> Jochem Maas wrote:
>>
>> Op 3/10/10 6:23 PM, Joseph Thayne schreef:
>>>
>>> Looks to me like you are closing your form before you put anything in
>>> it. Therefore, the loan_amount is not set making the value 0. Follow
>>> the m
Hello,
I've got what is probably a very simple question, probably something
having to do with quotes single vs. double, but the answer is
frustrating elusive, I keep getting a syntax error.
I'm trying to customize a wordpress theme a friend sent me. We're both
using apache as web server and php5, b
Try this:
'';
On Wed, Mar 10, 2010 at 7:15 PM, David Mehler wrote:
> Hello,
> I've got what is probably a very simple question, probably something
> having to do with quotes single vs. double, but the answer is
> frustrating elusive, I keep getting a syntax error.
> I'm trying to customize a wo
On Wed, 2010-03-10 at 19:33 -0500, Adam Richardson wrote:
> Try this:
>
> ' .'/wp-content/themes/themestyle/white.css" rel="stylesheet" type="text/css"
> />';
>
> On Wed, Mar 10, 2010 at 7:15 PM, David Mehler wrote:
>
> > Hello,
> > I've got what is probably a very simple question, probably so
On Thu, Mar 11, 2010 at 01:17:57AM +, Ashley Sheridan wrote:
>
> You're using single quotes in your string, so you can't have PHP parse
> the string for variables to extend into their corresponding values. If
> you wish to do that, use either double-quoted strings or heredoc/nowdoc
> syntax
On Wed, 10 Mar 2010 09:52:30 -0500, aj...@alumni.iu.edu (Alice Wei) wrote:
>
>Hi,
>
> I have two arrays here that I have combined into a new array, as shown here:
>
>$from = explode("-", $from);
>$change = explode("-",$change);
>$new_array = array_combine($from,$change);
>
>I then tried reading i
(almost) all the tricks are in the comments of the help page for a
function, on php.net
but all functions accept only a given (and usually documented) set of
parameter(type)s, so you'll probably have to prepare the var, or even
call the function in a loop, outputting to yet another descriptively
n
You may not care about this, but from a readability perspective, i
think relying on $client->system being as special as you describe, is
not very readable.
If i'd had to read code that does what you describe, i'd be much
happier to see a datastructure be passed as was suggested elsewhere in
this t
$var = 'bla'.$var2.'doh'.$var3['index'].'argh'.$var4[$var4index];
is so much more readable in any editor that does syntax highlighting,
and parses quicker too.
On Thu, Mar 11, 2010 at 1:15 AM, David Mehler wrote:
> Hello,
> I've got what is probably a very simple question, probably something
> h
45 matches
Mail list logo