|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
php-general-digest-help
lists.php.net
Date: Fri Apr 11 2008 - 16:34:22 CDT
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
php-general Digest 11 Apr 2008 21:34:22 -0000 Issue 5399
Topics (messages 272868 through 272895):
Re: $_SESSION problem
272868 by: tedd
272870 by: tedd
272888 by: Nathan Nobbe
SERVER_PORT always at 80 ?
272869 by: Julien Pauli
272877 by: Thiago Pojda
Re: PHP GD library installing
272871 by: Luca Paolella
Help with SSH2 persistent connection in php
272872 by: Rodrigo Reis da Rocha
272874 by: Jason Norwood-Young
Re: $_SESSION problem [SOLVED (sort-of)]
272873 by: tedd
272878 by: Ford, Mike
272886 by: Daniel Brown
272889 by: Nathan Nobbe
Quarters
272875 by: tedd
272876 by: Jay Blanchard
272879 by: Andrew Ballard
272880 by: Thiago Pojda
272881 by: Andrew Ballard
272882 by: Jim Lucas
272883 by: Wolf
272885 by: Steve Holmes
Re: Google App Engine needs PHP support
272884 by: Philip Thompson
Job Opportunity for Technical Consultants at Fredhopper (Amsterdam)
272887 by: Vasil Kokareshkov
File Format
272890 by: admin.buskirkgraphics.com
Posting Summary for Week Ending 11 April, 2008: php-general
lists.php.net
272891 by: PostTrack
272892 by: Robert Cummings
272893 by: Daniel Brown
Quarters -- ERRORS --
272894 by: tedd
$_SESSION problem [NOW SOLVED]
272895 by: tedd
Administrivia:
To subscribe to the digest, e-mail:
php-general-digest-subscribe
lists.php.net
To unsubscribe from the digest, e-mail:
php-general-digest-unsubscribe
lists.php.net
To post to the list, e-mail:
php-general
lists.php.net
----------------------------------------------------------------------
attached mail follows:
At 5:10 PM -0600 4/10/08, Nathan Nobbe wrote:
>On Thu, Apr 10, 2008 at 5:05 PM, Nathan Nobbe
><<mailto:quickshiftin
gmail.com>quickshiftin
gmail.com> wrote:
>
>On Thu, Apr 10, 2008 at 4:29 PM, tedd
><<mailto:tedd.sperling
gmail.com>tedd.sperling
gmail.com> wrote:
>
> you might just dump out the session component of the php config on
>each site to ensure theyre the same.
>
>
>on that last note, this could be useful,
>
><?php
>die(var_dump(ini_get_all('session')));
>?>
>
>-nathan
They are identical -- and the same as shown in phpInfo, as I said.
Cheers,
tedd
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
attached mail follows:
At 5:05 PM -0600 4/10/08, Nathan Nobbe wrote:
>On Thu, Apr 10, 2008 at 4:29 PM, tedd
><<mailto:tedd.sperling
gmail.com>tedd.sperling
gmail.com> wrote:
>
>Hi gang:
>
>I'm stumped and in need of some expert explanation.
>
>I have prepared two demos (showing code) for your enjoyment:
>
>[1] <http://www.webbytedd.com/x/index.php>http://www.webbytedd.com/x/index.php
>[2] <http://sperling.com/x/index.php>http://sperling.com/x/index.php
>
>Both of these demos have the exact same code; and are on the same
>server; with exactly the same php-info -- so, why do they behave
>differently re sessions?
>
>Note that [1] will retain the session values throughout the entire
>session, while [2] does not and loses session values.
>
>
>as a sanity check have you dumped out the contents of the session
>after writing to it on [2] ?
>eg.
>
><?php
>// ....
> $_SESSION['q6'] = ( isset($_SESSION['q6']) ? $_SESSION['q6'] : 0);
> $_SESSION['q7'] = ( isset($_SESSION['q7']) ? $_SESSION['q7'] : 0);
>
> $_SESSION['q8'] = ( isset($_SESSION['q8']) ? $_SESSION['q8'] : 0);
> $_SESSION['q9'] = ( isset($_SESSION['q9']) ? $_SESSION['q9'] : 0);
>var_dump($_SESSION);
>
>?>
> you might just dump out the session component of the php config on
>each site to ensure theyre the same.
>
>-nathan
Isn't that what the code is doing?
I'm dumping the results in a print_r($_SESSION) -- isn't that he same thing?
Cheers,
tedd
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
attached mail follows:
On Fri, Apr 11, 2008 at 6:30 AM, tedd <tedd.sperling
gmail.com> wrote:
> Isn't that what the code is doing?
>
> I'm dumping the results in a print_r($_SESSION) -- isn't that he same
> thing?
sorry tedd; obviously i was hasty to post. but i figured just looking for
the obvious would be a good exercise as i cant count the times ive launched
into an exhaustive search for the problem when its really something silly
ive overlooked. that said; i know ur smart and you always post hard
problems for 'the gang' ;)
anyway, taking the cue from some of the other responses, have you looked at
the page on session_write_close() ?
http://us2.php.net/manual/en/function.session-write-close.php
its kind of interesting; it looks like lots of people have run into issues
using the location header to redirect clients to another script after a form
submission. its never happened to me (knock on wood) but anyway some of the
posts on that page may be worth reading.
also, though it wont answer your question about why its happening, i was
thinking you might alter the flow of ur scripts to see if you can get the
same behavior on both sites. heres what i was thinking:
add a hidden input to the form (from index.php)
<input type="hidden" name="formsubmission" value="1" />
then after you call session_start() in index.php, have the following
if(isset($_POST['formsubmission']) && $_POST['formsubmission'] == '1')) {
include('part2.php'); // process form submission
}
then, make the following adjustments to part2.php
remove the call to session_start()
remove the call to header(location ...
remove the call to exit()
i think this will have the effect that the work flow is unaltered, but the
organization of the logic on the back end will be different. effectively
the call to header(location... will be removed so we would be able to tell
if the issue is related to that.
-nathan
attached mail follows:
Hi all, I'm running Windows XP, and here is a piece of my apache (2.2.8)
conf :
--- httpd.conf ---
... ... ...
Listen 81
Listen 80
Listen 8080
LoadModule php5_module "e:/php/php5apache2_2.dll"
LoadModule fastcgi_module modules/mod_fastcgi.dll
AddType application/x-httpd-php .php
... ... ...
--- vhosts.conf ----
NameVirtualHost 127.0.0.1:81
<VirtualHost 127.0.0.1:81>
ServerName myserver
DocumentRoot e:/www
ScriptAlias /php/ "e:/php53/"
Action php5-fastcgi "/php/php-cgi.exe"
AddHandler php5-fastcgi .php
</VirtualHost>
That's a configuration to be able to run both PHP 5.2 (as apache module),
and PHP 5.3 (throught fast-cgi) on the same apache2 instance.
There are no apache rewrite rules in my stuff.
All works right, the only problem is that in both cases,
$_SERVER["SERVER_PORT"] returns 80, even when I'm connected throught port
81.
Is it a fastcgi / Apache bug or does it come from PHP or even me :-) ?
Cheers
Julien.P
attached mail follows:
{Top posting}
What shows your phpinfo() on both ports?
Is it really running your 5.3 in :81?
Regards,
Thiago
-----Mensagem original-----
De: Julien Pauli [mailto:doctorrock83
gmail.com]
Enviada em: sexta-feira, 11 de abril de 2008 09:28
Para: PHP General list
Assunto: [PHP] SERVER_PORT always at 80 ?
Hi all, I'm running Windows XP, and here is a piece of my
apache (2.2.8) conf :
--- httpd.conf ---
... ... ...
Listen 81
Listen 80
Listen 8080
LoadModule php5_module "e:/php/php5apache2_2.dll"
LoadModule fastcgi_module modules/mod_fastcgi.dll AddType
application/x-httpd-php .php ... ... ...
--- vhosts.conf ----
NameVirtualHost 127.0.0.1:81
<VirtualHost 127.0.0.1:81>
ServerName myserver
DocumentRoot e:/www
ScriptAlias /php/ "e:/php53/"
Action php5-fastcgi "/php/php-cgi.exe"
AddHandler php5-fastcgi .php
</VirtualHost>
That's a configuration to be able to run both PHP 5.2 (as
apache module), and PHP 5.3 (throught fast-cgi) on the same
apache2 instance.
There are no apache rewrite rules in my stuff.
All works right, the only problem is that in both cases,
$_SERVER["SERVER_PORT"] returns 80, even when I'm connected
throught port 81.
Is it a fastcgi / Apache bug or does it come from PHP or even me :-) ?
Cheers
Julien.P
attached mail follows:
On Apr 10, 2008, at 5:15 PM, Daniel Brown wrote:
> On Thu, Apr 10, 2008 at 4:54 AM, Luca Paolella <luca.paolella
gmail.com
> > wrote:
>> How do I install/activate the GD library with my existing PHP
>> version? I'm
>> quite sure it isn't already, since I got this error:
>>
>> Fatal error: Call to undefined function imagecreate() in
>> /Volumes/Data/Users/luca/Library/WebServer/Documents/reloadTest/
>> image.php on
>> line 6
>
> First, this is a server to which you have root access, correct?
> You won't be able to install it otherwise, such as if you're on a
> shared web host.
>
> Secondly, what *NIX are you using? It looks to me like a
> BSD-style system.... maybe MacOS?
>
> --
> </Daniel P. Brown>
> Ask me about:
> Dedicated servers starting
$59.99/mo., VPS starting
$19.99/mo.,
> and shared hosting starting
$2.50/mo.
> Unmanaged, managed, and fully-managed!
Yes, it's Mac OSX and I have root access on the machine; I just
checked my mail, so sorry for the delay
attached mail follows:
Hi,
I want to make an persistent connection via ssh2 to a server with php, but
all I can get with the present API is an temporary connection that is lost
at end of the script.
Anyone have an idea of how I can save the Resource and reuse it on future
scripts instead of having to reconnect over and over again?
Thanks,
Rodrigo.
attached mail follows:
On Fri, 2008-04-11 at 10:14 -0300, Rodrigo Reis da Rocha wrote:
> I want to make an persistent connection via ssh2 to a server with php, but
> all I can get with the present API is an temporary connection that is lost
> at end of the script.
> Anyone have an idea of how I can save the Resource and reuse it on future
> scripts instead of having to reconnect over and over again?
Hi Rodrigo
I recently did a little app that maintained persistent connections to a
XMPP server - a similar solution should apply to your problem.
I built a memory-resident app in the middle that received a unique ID
from my PHP page (you could use session_id for instance), assigned that
ID to a connection and created a permanent connection. It also queued
incoming messages so that when the PHP script connected again, it could
send through the queued messages, so that the end-user didn't miss
anything.
Initially I tried using PHP-cli for the memory-resident app but
eventually settled on Twistd Python because it was better at running
resident and handling multiple connections from different users without
blocking anything. On the front-end I used PHP and Ajax to give a
feeling of a "live" connection.
J
attached mail follows:
At 10:12 PM -0400 4/10/08, Eric Wood wrote:
>tedd wrote:
>>
>>[1] http://www.webbytedd.com/x/index.php
>>[2] http://sperling.com/x/index.php
>>
>>Both of these demos have the exact same code; and are on the same
>>server; with exactly the same php-info -- so, why do they behave
>>differently re sessions?
>
>Strange. I've run into issues whenever I use variable names which
>are the same as session variables. It's as if they step on each
>others toes. I try to use uniq var names. I've also recently run
>into customized 401 pages (which you may not see happen, check the
>logs) start up and the session data gets overwrite due to a lack of
>session file locking.
>-eric
-eric:
You didn't provide the reason why, but you did provide a solution.
Changing the variable names to be different than the session names
fixed the problem.
Now, if any php guru would care to tell me why, I would really like to know.
Thanks eric.
Cheers,
tedd
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
attached mail follows:
On 11 April 2008 14:45, tedd advised:
> At 10:12 PM -0400 4/10/08, Eric Wood wrote:
>> tedd wrote:
>>>
>>> [1] http://www.webbytedd.com/x/index.php
>>> [2] http://sperling.com/x/index.php
>>>
>>> Both of these demos have the exact same code; and are on the same
>>> server; with exactly the same php-info -- so, why do they behave
>>> differently re sessions?
>>
>> Strange. I've run into issues whenever I use variable names which
>> are the same as session variables. It's as if they step on each
>> others toes. I try to use uniq var names. I've also recently run
>> into customized 401 pages (which you may not see happen, check the
>> logs) start up and the session data gets overwrite due to a lack of
>> session file locking. -eric
>
>
> -eric:
>
> You didn't provide the reason why, but you did provide a solution.
>
> Changing the variable names to be different than the session names
fixed
> the problem.
>
> Now, if any php guru would care to tell me why, I would
> really like to know.
Sounds like a register_globals=On issue....
--
Mike Ford, Electronic Information Services Adviser,
JG125, The Headingley Library,
James Graham Building, Leeds Metropolitan University,
Headingley Campus, LEEDS, LS6 3QS, United Kingdom
Email: m.ford
leedsmet.ac.uk
Tel: +44 113 812 4730 Fax: +44 113 812 3211
To view the terms under which this email is distributed, please go to http://disclaimer.leedsmet.ac.uk/email.htm
attached mail follows:
On Fri, Apr 11, 2008 at 10:29 AM, Ford, Mike <M.Ford
leedsmet.ac.uk> wrote:
>
> Sounds like a register_globals=On issue....
It does to me, as well. I know, Tedd, that on the php1.net site
that you mentioned to me off-list, I'm about 99% positive that it's
the reason. Shared hosts generally keep register_globals on and leave
it up to the individual customer to turn it off. On that particular
server, though, since it's mostly developers, I may just send out an
email to get feedback and turn it off at the main, and then allow
ya'all to override it on your individual sites.
The thing that makes me wonder (and I haven't checked myself to
verify) is why two sites, on the same server, having the same
phpinfo() output, would have different results.
--
</Daniel P. Brown>
Ask me about:
Dedicated servers starting
$59.99/mo., VPS starting
$19.99/mo.,
and shared hosting starting
$2.50/mo.
Unmanaged, managed, and fully-managed!
attached mail follows:
top posting for the hell of it;
disregard last post; i didnt see the [solved] sort-of thread.
-nathan
On Fri, Apr 11, 2008 at 7:44 AM, tedd <tedd.sperling
gmail.com> wrote:
> At 10:12 PM -0400 4/10/08, Eric Wood wrote:
>
> > tedd wrote:
> >
> > >
> > > [1] http://www.webbytedd.com/x/index.php
> > > [2] http://sperling.com/x/index.php
> > >
> > > Both of these demos have the exact same code; and are on the same
> > > server; with exactly the same php-info -- so, why do they behave differently
> > > re sessions?
> > >
> >
> > Strange. I've run into issues whenever I use variable names which are
> > the same as session variables. It's as if they step on each others toes. I
> > try to use uniq var names. I've also recently run into customized 401 pages
> > (which you may not see happen, check the logs) start up and the session data
> > gets overwrite due to a lack of session file locking.
> > -eric
> >
>
>
> -eric:
>
> You didn't provide the reason why, but you did provide a solution.
>
> Changing the variable names to be different than the session names fixed
> the problem.
>
> Now, if any php guru would care to tell me why, I would really like to
> know.
>
> Thanks eric.
>
> Cheers,
>
> tedd
>
>
> --
> -------
> http://sperling.com http://ancientstones.com http://earthstones.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
attached mail follows:
Hi gang:
Check out my new game:
http://webbytedd.com/quarters/
What do you think?
Cheers,
tedd
PS: I originally wrote the game for the Mac over eight years ago.
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
attached mail follows:
[snip]
Check out my new game:
http://webbytedd.com/quarters/
What do you think?
[/snip]
Cool...but why do quarters keep appearing in other piles?
attached mail follows:
On Fri, Apr 11, 2008 at 9:49 AM, tedd <tedd
sperling.com> wrote:
> Hi gang:
>
> Check out my new game:
>
> http://webbytedd.com/quarters/
>
> What do you think?
>
> Cheers,
>
> tedd
>
> PS: I originally wrote the game for the Mac over eight years ago.
Seems not to work in FF. (At least for me.) I had to (*gasp*) open it
in IE to even see the quarter images instead of a couple rows of
checkboxes.
Andrew
attached mail follows:
Same for me, I was like "hmm ok, checkboxes..."
Just tried IE, now I can see what you're talking about :)
-----Mensagem original-----
De: Andrew Ballard [mailto:aballard
gmail.com]
Enviada em: sexta-feira, 11 de abril de 2008 11:43
Para: PHP General list
Assunto: Re: [PHP] Quarters
On Fri, Apr 11, 2008 at 9:49 AM, tedd <tedd
sperling.com> wrote:
> Hi gang:
>
> Check out my new game:
>
> http://webbytedd.com/quarters/
>
> What do you think?
>
> Cheers,
>
> tedd
>
> PS: I originally wrote the game for the Mac over eight years ago.
Seems not to work in FF. (At least for me.) I had to (*gasp*)
open it in IE to even see the quarter images instead of a
couple rows of checkboxes.
Andrew
--
PHP General Mailing List (http://www.php.net/) To unsubscribe,
visit: http://www.php.net/unsub.php
attached mail follows:
On Fri, Apr 11, 2008 at 10:51 AM, Thiago Pojda
<thiago.pojda
softpartech.com.br> wrote:
> Same for me, I was like "hmm ok, checkboxes..."
>
> Just tried IE, now I can see what you're talking about :)
>
> -----Mensagem original-----
> De: Andrew Ballard [mailto:aballard
gmail.com]
> Enviada em: sexta-feira, 11 de abril de 2008 11:43
> Para: PHP General list
> Assunto: Re: [PHP] Quarters
>
>
>
> On Fri, Apr 11, 2008 at 9:49 AM, tedd <tedd
sperling.com> wrote:
> > Hi gang:
> >
> > Check out my new game:
> >
> > http://webbytedd.com/quarters/
> >
> > What do you think?
> >
> > Cheers,
> >
> > tedd
> >
> > PS: I originally wrote the game for the Mac over eight years ago.
>
> Seems not to work in FF. (At least for me.) I had to (*gasp*)
> open it in IE to even see the quarter images instead of a
> couple rows of checkboxes.
>
> Andrew
For that matter, I get JavaScript errors every time I click on
something in IE, and some of the coins seem to shift around rather
than disappearing.
Andrew
attached mail follows:
tedd wrote:
> Hi gang:
>
> Check out my new game:
>
> http://webbytedd.com/quarters/
>
> What do you think?
>
> Cheers,
>
> tedd
>
> PS: I originally wrote the game for the Mac over eight years ago.
I keep getting JS errors.
I get this when I select a coin, or coins, and click remove coins.
Line: 122
Char: 3
Error: 'countr' is undefined
Code: 0
URL: http://webbytedd.com/quarters/index.php
If I tell the computer to start first, I get a JS error that says this:
Line: 64
Char: 2
Error: 'document.getElementById(...)' is null or not an object
Code: 0
URL: http://webbytedd.com/quarters/index.php
Plus, it seems that it is randomly reloading the page and resetting the game.
I am using IE 6.0.0029.xxxx Pretty much up to date will all patches and
updates. No special add ons.
Got any suggestions?
--
Jim Lucas
"Some men are born to greatness, some achieve greatness,
and some have greatness thrust upon them."
Twelfth Night, Act II, Scene V
by William Shakespeare
attached mail follows:
---- tedd <tedd
sperling.com> wrote:
> Hi gang:
>
> Check out my new game:
>
> http://webbytedd.com/quarters/
>
> What do you think?
>
> Cheers,
>
> tedd
>
> PS: I originally wrote the game for the Mac over eight years ago.
> --
Tedd,
What happened? I got nothing in FIrefox on Ubuntu... And no, I don't have any other browsers loaded...
Tsk, tsk! ;)
Such a shocker as high-class stuff usually comes from Webby Tedd! :)
*looks at Tedd's machine* You playing with Winbloze again?
Wolf
attached mail follows:
Works great in Safari. Except I can't win :-).Steve
On Fri, Apr 11, 2008 at 9:49 AM, tedd <tedd
sperling.com> wrote:
> Hi gang:
>
> Check out my new game:
>
> http://webbytedd.com/quarters/
>
> What do you think?
>
> Cheers,
>
> tedd
>
> PS: I originally wrote the game for the Mac over eight years ago.
> --
> -------
> http://sperling.com http://ancientstones.com http://earthstones.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
There is no greater gift to an insecure leader that quite matches a vague
enemy who can be used to whip up fear and hatred among the population.
-Paul Rusesabagina, humanitarian (b. 1954)
Human beings are perhaps never more frightening than when they are
convinced beyond doubt that they are right. -Laurens van der Post, explorer
and writer (1906-1996)
attached mail follows:
On Apr 10, 2008, at 8:11 PM, Manuel Lemos wrote:
> Hello,
>
> Google App Engine was launched but it does not support PHP. This
> article
> presents some ideas that can help Google adding PHP support sooner
> rather than later.
>
> http://www.phpclasses.org/blog/post/77-Google-App-Engine-needs-PHP-support.html
Wow, this site is ugly!
I'm sorry, I tried to restrain. I closed the first email... but I
couldn't keep it in.
attached mail follows:
TOP SOFTWARE PRODUCT COMPANY OFFERS A UNIQUE LEARNING OPPORTUNITY TO
AMBITIOUS AND TALENTED TECHNICAL CONSULTANTS
Company: Fredhopper, Location: Amsterdam, Position: Full-time
Are you a pragmatic self-starter? Do you have a talent for quickly reducing
complex questions to simple solutions? Are you passionate about making great
ideas reality? Do you thrive within a fast-paced, success-driven, very
international environment?
Fredhopper is looking to expand its product services team with technical
consultants. The product services team is responsible for the full client
cycle from pre-sales workshops to software implementations, customer support
and follow-up assignments. The team often works in co-operation with system
integrators all across Europe. As a technical consultant you play a crucial
role in the implementation of Fredhopper software for clients. Being a team
player, you will work in close co-operation with clients, Fredhopper product
developers and merchandising consultants.
Fredhopper is the â„– 1 provider of Search & Merchandising solutions for
online business in Europe and behind the scenes of many of the largest
online businesses. Customers include many leading international companies
such as Philips Electronics, Karstadt-Quelle, Otto, Conrad, Kingfisher,
Littlewoods-Shopdirect, Thomas Cook, and Woolworths. Fredhopper has offices
in Amsterdam, London, Sofia, Paris and Berlin.
The nature of the issues we’re working on requires a product services team
that yields both excellent analytical and communication skills. We
prioritise talent over experience.
Qualifications
ï‚§ Strong academic background; University Master's degree in Computer Science
or equivalent (last year students will also be considered)
ï‚§ Outstanding communication skills both written and verbal
ï‚§ Good scripting skills (under Win2K/NT, Linux); Java knowledge is a
preference
ï‚§ Hands-on, practical experience in dealing with large amounts of data (XML,
CSV), working with ETL tools and databases
ï‚§ Solid experience in website technology (such as JSP, .NET, AJAX)
ï‚§ Fluent in English; Mastering two other languages is a preference
ï‚§ Self starter with strong drive who mobilises people and gets things done
ï‚§ Affinity with e-commerce, experience in creating e-commerce sites is a
preference
Applications
Interested? Then send your CV to recruiting
fredhopper.com, or contact Vasil
Kokareshkov at +31 20 5300 100. www.fredhopper.com
We are looking to fill positions immediately, therefore apply today!
--
View this message in context: http://www.nabble.com/Job-Opportunity-for-Technical-Consultants-at-Fredhopper-%28Amsterdam%29-tp16627887p16627887.html
Sent from the PHP - General mailing list archive at Nabble.com.
attached mail follows:
Wave editor?
Here is my dilemma.
In php I have written a script to upload a wave file to the server for the C Sharp application to use. No problems on upload or streaming from the file to the web. My issue comes when the format of the wave file is PCM and not CCITT u-Law. The device cannot play a PCM formatted wave file. Problem comes in when the end user just picks a wave file to use for this option and does not have the format correct.
Is there a wave format change option in php?
Has or does anyone know of a solution in php for this?
Is there a way I can check the format of the wave file before uploading?
Richard L. Buskirk
attached mail follows:
Posting Summary for PHP-General List
Week Ending: Friday, 11 April, 2008
Messages | Bytes | Code | Sender
--------------------+--------------------+--------------------+--------------------
295 (100%) 448940 (100%) 7563 (100%) EVERYONE
41 (13.9%) 52314 (11.7%) 0 (0%) Daniel Brown <parasane at gmail dot com>
14 (4.7%) 19152 (4.3%) 366 (4.8%) Nathan Nobbe <quickshiftin at gmail dot com>
13 (4.4%) 24793 (5.5%) 0 (0%) Andrew Ballard <aballard at gmail dot com>
13 (4.4%) 19875 (4.4%) 0 (0%) Zoltán Németh <znemeth at alterationx dot hu>
12 (4.1%) 24308 (5.4%) 0 (0%) Robert Cummings <robert at interjinn dot com>
9 (3.1%) 21586 (4.8%) 805 (10.6%) Jim Lucas <lists at cmsws dot com>
8 (2.7%) 9636 (2.1%) 0 (0%) Wolf <lonewolf at nc dot rr dot com>
7 (2.4%) 12807 (2.9%) 0 (0%) Jason Pruim <japruim at raoset dot com>
7 (2.4%) 8588 (1.9%) 0 (0%) Mark J dot Reed <markjreed at mail dot com>
7 (2.4%) 7337 (1.6%) 0 (0%) Stut <stuttle at gmail dot com>
7 (2.4%) 14956 (3.3%) 0 (0%) Greg Bowser <topnotcher at gmail dot com>
7 (2.4%) 23389 (5.2%) 254 (3.4%) Shawn McKenzie <nospam at mckenzies dot net>
6 (2%) 13266 (3%) 0 (0%) Ryan S <genphp at yahoo dot com>
6 (2%) 5440 (1.2%) 367 (4.9%) tedd <tedd dot sperling at gmail dot com>
6 (2%) 10986 (2.4%) 0 (0%) Casey <heavyccasey at gmail dot com>
5 (1.7%) 8887 (2%) 0 (0%) Thiago Pojda <thiago dot pojda at softpartech dot com dot br>
5 (1.7%) 2602 (0.6%) 0 (0%) Jay Blanchard <jblanchard at pocket dot com>
4 (1.4%) 4193 (0.9%) 0 (0%) Eric Butera <eric dot butera at gmail dot com>
4 (1.4%) 4565 (1%) 0 (0%) Evert Lammerts <evert dot lammerts at gmail dot com>
4 (1.4%) 8123 (1.8%) 474 (6.3%) Steve McGill <steve at bluearena dot com>
4 (1.4%) 5539 (1.2%) 0 (0%) Noah Spitzer-Williams <noahsw at gmail dot com>
3 (1%) 3815 (0.8%) 0 (0%) Michael Stroh <stroh at astroh dot org>
3 (1%) 2356 (0.5%) 19 (0.3%) Tony Collings <tony at tonycollings dot com>
3 (1%) 1133 (0.3%) 0 (0%) hce <webmail dot hce at gmail dot com>
3 (1%) 9715 (2.2%) 0 (0%) Peter Ford <pete at justcroft dot com>
3 (1%) 4317 (1%) 24 (0.3%) Mark Weaver <mdw1982 at mdw1982 dot com>
3 (1%) 6054 (1.3%) 0 (0%) Nitsan Bin-Nun <nitsanbn at gmail dot com>
3 (1%) 2450 (0.5%) 0 (0%) Richard Heyes <richardh at phpguru dot org>
2 (0.7%) 2787 (0.6%) 0 (0%) Jenda Krynicky <Jenda at Krynicky dot cz>
2 (0.7%) 4145 (0.9%) 0 (0%) Arno Kuhl <akuhl at telkomsa dot net>
2 (0.7%) 2588 (0.6%) 0 (0%) Jordi Moles <jordi at cdmon dot com>
2 (0.7%) 6463 (1.4%) 2899 (38.3%) Paul van Brouwershaven <paul at vanbrouwershaven dot com>
2 (0.7%) 4134 (0.9%) 0 (0%) Manuel Lemos <mlemos at acm dot org>
2 (0.7%) 1535 (0.3%) 0 (0%) Per Jessen <per at computer dot org>
2 (0.7%) 2246 (0.5%) 0 (0%) Christoph Boget <christoph dot boget at gmail dot com>
2 (0.7%) 927 (0.2%) 0 (0%) Kevin Waterson <kevin at bigcreative dot com dot au>
2 (0.7%) 3098 (0.7%) 0 (0%) Mr dot Shawn H dot Corey <shawnhcorey at magma dot ca>
2 (0.7%) 1077 (0.2%) 50 (0.7%) John Taylor-Johnston <jt dot johnston at USherbrooke dot ca>
2 (0.7%) 2190 (0.5%) 0 (0%) Julien Pauli <doctorrock83 at gmail dot com>
2 (0.7%) 2386 (0.5%) 0 (0%) Dave M G <martin at autotelic dot com>
2 (0.7%) 4823 (1.1%) 0 (0%) Daniel Kolbo <kolb0057 at umn dot edu>
2 (0.7%) 1408 (0.3%) 0 (0%) Richard Lee <rich dot japh at gmail dot com>
1 (0.3%) 980 (0.2%) 0 (0%) Robin Vickery <robinv at gmail dot com>
1 (0.3%) 849 (0.2%) 0 (0%) Thijs Lensselink <dev at lenss dot nl>
1 (0.3%) 436 (0.1%) 0 (0%) Luca Paolella <luca dot paolella at gmail dot com>
1 (0.3%) 468 (0.1%) 0 (0%) punhsr at hub2 dot nic dot in
1 (0.3%) 735 (0.2%) 0 (0%) David Lidstone <dnews at elocal dot co dot uk>
1 (0.3%) 747 (0.2%) 0 (0%) admin at buskirkgraphics dot com
1 (0.3%) 1695 (0.4%) 0 (0%) Alan Willsher <al dot willsher at googlemail dot com>
1 (0.3%) 968 (0.2%) 0 (0%) Aschwin Wesselius <aschwin at illuminated dot nl>
1 (0.3%) 2675 (0.6%) 0 (0%) steve <iamstever at gmail dot com>
1 (0.3%) 1424 (0.3%) 0 (0%) Bill Guion <bguion at comcast dot net>
1 (0.3%) 1535 (0.3%) 118 (1.6%) Spam Recipient <org dot spam dot recipient at gmail dot com>
1 (0.3%) 1889 (0.4%) 111 (1.5%) Kirk dot Johnson at zootweb dot com
1 (0.3%) 947 (0.2%) 0 (0%) Alain Roger <raf dot news at gmail dot com>
1 (0.3%) 1580 (0.4%) 0 (0%) Ford, Mike <M dot Ford at leedsmet dot ac dot uk>
1 (0.3%) 523 (0.1%) 0 (0%) Rodrigo Reis da Rocha <r3corp at gmail dot com>
1 (0.3%) 3000 (0.7%) 0 (0%) Bey Evenson <grabs at 0deaibbs dot com>
1 (0.3%) 738 (0.2%) 0 (0%) Eric Wood <eric at interplas dot com>
1 (0.3%) 874 (0.2%) 0 (0%) mike <mike503 at gmail dot com>
1 (0.3%) 1256 (0.3%) 0 (0%) Nirmalya Lahiri <nirmalyalahiri at yahoo dot com>
1 (0.3%) 1076 (0.2%) 0 (0%) Dan <frozendice at gmail dot com>
1 (0.3%) 3086 (0.7%) 0 (0%) Swan Rapuano <planetesimal at ascencia dot com>
1 (0.3%) 1063 (0.2%) 0 (0%) Steve Holmes <sholmes42 at mac dot com>
1 (0.3%) 2967 (0.7%) 0 (0%) Vasil Kokareshkov <vasil dot kokareshkov at fredhopper dot com>
1 (0.3%) 980 (0.2%) 0 (0%) Julian Kennedy <julian at juliankennedy dot co dot za>
1 (0.3%) 640 (0.1%) 0 (0%) Jason Norwood-Young <jason at freespeechpub dot co dot za>
1 (0.3%) 1137 (0.3%) 0 (0%) Brice <brice dot favre at gmail dot com>
1 (0.3%) 356 (0.1%) 0 (0%) tedd <tedd at sperling dot com>
1 (0.3%) 937 (0.2%) 11 (0.1%) Iñigo Medina GarcÃa <imedina at diazdesantos dot es>
1 (0.3%) 1250 (0.3%) 0 (0%) Chris <dmagick at gmail dot com>
1 (0.3%) 1510 (0.3%) 32 (0.4%) Lester Caine <lester at lsces dot co dot uk>
1 (0.3%) 463 (0.1%) 0 (0%) Rian Hidayanto <rian dot smart at gmail dot com>
1 (0.3%) 956 (0.2%) 0 (0%) Dan Joseph <dmjoseph at gmail dot com>
1 (0.3%) 558 (0.1%) 0 (0%) Jason Knight <jcknight at gmail dot com>
1 (0.3%) 962 (0.2%) 0 (0%) admin at buskirkgraphics dot com
1 (0.3%) 399 (0.1%) 0 (0%) Paul Johnson <paul at pjcj dot net>
1 (0.3%) 1571 (0.3%) 219 (2.9%) admin at buskirkgraphics dot com
1 (0.3%) 1239 (0.3%) 0 (0%) Kelly Jones <kelly dot terry dot jones at gmail dot com>
1 (0.3%) 965 (0.2%) 95 (1.3%) Philip Thompson <philthathril at gmail dot com>
1 (0.3%) 613 (0.1%) 130 (1.7%) admin at buskirkgraphics dot com
1 (0.3%) 681 (0.2%) 0 (0%) Emil Edeholt <emil at knmedical dot se>
1 (0.3%) 2170 (0.5%) 0 (0%) Larry Garfield <larry at garfieldtech dot com>
1 (0.3%) 1756 (0.4%) 0 (0%) admin at buskirkgraphics dot com
1 (0.3%) 1025 (0.2%) 0 (0%) bddarwin at gmail dot com <bddarwin at gmail dot com>
1 (0.3%) 457 (0.1%) 0 (0%) Dee Ayy <dee dot ayy at gmail dot com>
1 (0.3%) 1278 (0.3%) 0 (0%) Richard S dot Crawford <rscrawford at mossroot dot com>
1 (0.3%) 153 (0%) 0 (0%) news dot php dot net <psr dot 1020 at gmail dot com>
1 (0.3%) 724 (0.2%) 0 (0%) Jochem Maas <jochem at iamjochem dot com>
1 (0.3%) 2128 (0.5%) 274 (3.6%) admin at buskirkgraphics dot com
1 (0.3%) 1856 (0.4%) 664 (8.8%) paragasu <paragasu at gmail dot com>
1 (0.3%) 3880 (0.9%) 651 (8.6%) revDAVE <Cool at hosting4days dot com>
1 (0.3%) 662 (0.1%) 0 (0%) Ian <barnracoon at gmail dot com>
1 (0.3%) 601 (0.1%) 0 (0%) Németh Zoltán <znemeth at alterationx dot hu>
1 (0.3%) 794 (0.2%) 0 (0%) Steven Macintyre <steven at steven dot macintyre dot name>
1 (0.3%) 988 (0.2%) 0 (0%) Németh Zoltán <znemeth at alterationx dot hu>
1 (0.3%) 3406 (0.8%) 0 (0%) Wolf <LoneWolf at nc dot rr dot com>
1 (0.3%) 2025 (0.5%) 0 (0%) Mike Frysinger <vapier dot adi at gmail dot com>
1 (0.3%) 6320 (1.4%) 0 (0%) php-general-help at lists dot php dot net
NOTE: Numbers may not add up to 100% due to protection of names and addresses upon
request, and removal of verified SPAM messages.
DISCLAIMER: If you want your email address omitted from future weekly reports,
please email me privately at parasane
gmail.com and it will be removed from all
future reports immediately.
attached mail follows:
Your script is bust... I wrote code (even if you disregard the joke
stuff :)
Cheers,
Rob.
On Fri, 2008-04-11 at 16:00 -0400, PostTrack wrote:
> Posting Summary for PHP-General List
> Week Ending: Friday, 11 April, 2008
>
> Messages | Bytes | Code | Sender
> --------------------+--------------------+--------------------+--------------------
> 295 (100%) 448940 (100%) 7563 (100%) EVERYONE
> 41 (13.9%) 52314 (11.7%) 0 (0%) Daniel Brown <parasane at gmail dot com>
> 14 (4.7%) 19152 (4.3%) 366 (4.8%) Nathan Nobbe <quickshiftin at gmail dot com>
> 13 (4.4%) 24793 (5.5%) 0 (0%) Andrew Ballard <aballard at gmail dot com>
> 13 (4.4%) 19875 (4.4%) 0 (0%) Zoltán Németh <znemeth at alterationx dot hu>
> 12 (4.1%) 24308 (5.4%) 0 (0%) Robert Cummings <robert at interjinn dot com>
> 9 (3.1%) 21586 (4.8%) 805 (10.6%) Jim Lucas <lists at cmsws dot com>
> 8 (2.7%) 9636 (2.1%) 0 (0%) Wolf <lonewolf at nc dot rr dot com>
> 7 (2.4%) 12807 (2.9%) 0 (0%) Jason Pruim <japruim at raoset dot com>
> 7 (2.4%) 8588 (1.9%) 0 (0%) Mark J dot Reed <markjreed at mail dot com>
> 7 (2.4%) 7337 (1.6%) 0 (0%) Stut <stuttle at gmail dot com>
> 7 (2.4%) 14956 (3.3%) 0 (0%) Greg Bowser <topnotcher at gmail dot com>
> 7 (2.4%) 23389 (5.2%) 254 (3.4%) Shawn McKenzie <nospam at mckenzies dot net>
> 6 (2%) 13266 (3%) 0 (0%) Ryan S <genphp at yahoo dot com>
> 6 (2%) 5440 (1.2%) 367 (4.9%) tedd <tedd dot sperling at gmail dot com>
> 6 (2%) 10986 (2.4%) 0 (0%) Casey <heavyccasey at gmail dot com>
> 5 (1.7%) 8887 (2%) 0 (0%) Thiago Pojda <thiago dot pojda at softpartech dot com dot br>
> 5 (1.7%) 2602 (0.6%) 0 (0%) Jay Blanchard <jblanchard at pocket dot com>
> 4 (1.4%) 4193 (0.9%) 0 (0%) Eric Butera <eric dot butera at gmail dot com>
> 4 (1.4%) 4565 (1%) 0 (0%) Evert Lammerts <evert dot lammerts at gmail dot com>
> 4 (1.4%) 8123 (1.8%) 474 (6.3%) Steve McGill <steve at bluearena dot com>
> 4 (1.4%) 5539 (1.2%) 0 (0%) Noah Spitzer-Williams <noahsw at gmail dot com>
> 3 (1%) 3815 (0.8%) 0 (0%) Michael Stroh <stroh at astroh dot org>
> 3 (1%) 2356 (0.5%) 19 (0.3%) Tony Collings <tony at tonycollings dot com>
> 3 (1%) 1133 (0.3%) 0 (0%) hce <webmail dot hce at gmail dot com>
> 3 (1%) 9715 (2.2%) 0 (0%) Peter Ford <pete at justcroft dot com>
> 3 (1%) 4317 (1%) 24 (0.3%) Mark Weaver <mdw1982 at mdw1982 dot com>
> 3 (1%) 6054 (1.3%) 0 (0%) Nitsan Bin-Nun <nitsanbn at gmail dot com>
> 3 (1%) 2450 (0.5%) 0 (0%) Richard Heyes <richardh at phpguru dot org>
> 2 (0.7%) 2787 (0.6%) 0 (0%) Jenda Krynicky <Jenda at Krynicky dot cz>
> 2 (0.7%) 4145 (0.9%) 0 (0%) Arno Kuhl <akuhl at telkomsa dot net>
> 2 (0.7%) 2588 (0.6%) 0 (0%) Jordi Moles <jordi at cdmon dot com>
> 2 (0.7%) 6463 (1.4%) 2899 (38.3%) Paul van Brouwershaven <paul at vanbrouwershaven dot com>
> 2 (0.7%) 4134 (0.9%) 0 (0%) Manuel Lemos <mlemos at acm dot org>
> 2 (0.7%) 1535 (0.3%) 0 (0%) Per Jessen <per at computer dot org>
> 2 (0.7%) 2246 (0.5%) 0 (0%) Christoph Boget <christoph dot boget at gmail dot com>
> 2 (0.7%) 927 (0.2%) 0 (0%) Kevin Waterson <kevin at bigcreative dot com dot au>
> 2 (0.7%) 3098 (0.7%) 0 (0%) Mr dot Shawn H dot Corey <shawnhcorey at magma dot ca>
> 2 (0.7%) 1077 (0.2%) 50 (0.7%) John Taylor-Johnston <jt dot johnston at USherbrooke dot ca>
> 2 (0.7%) 2190 (0.5%) 0 (0%) Julien Pauli <doctorrock83 at gmail dot com>
> 2 (0.7%) 2386 (0.5%) 0 (0%) Dave M G <martin at autotelic dot com>
> 2 (0.7%) 4823 (1.1%) 0 (0%) Daniel Kolbo <kolb0057 at umn dot edu>
> 2 (0.7%) 1408 (0.3%) 0 (0%) Richard Lee <rich dot japh at gmail dot com>
> 1 (0.3%) 980 (0.2%) 0 (0%) Robin Vickery <robinv at gmail dot com>
> 1 (0.3%) 849 (0.2%) 0 (0%) Thijs Lensselink <dev at lenss dot nl>
> 1 (0.3%) 436 (0.1%) 0 (0%) Luca Paolella <luca dot paolella at gmail dot com>
> 1 (0.3%) 468 (0.1%) 0 (0%) punhsr at hub2 dot nic dot in
> 1 (0.3%) 735 (0.2%) 0 (0%) David Lidstone <dnews at elocal dot co dot uk>
> 1 (0.3%) 747 (0.2%) 0 (0%) admin at buskirkgraphics dot com
> 1 (0.3%) 1695 (0.4%) 0 (0%) Alan Willsher <al dot willsher at googlemail dot com>
> 1 (0.3%) 968 (0.2%) 0 (0%) Aschwin Wesselius <aschwin at illuminated dot nl>
> 1 (0.3%) 2675 (0.6%) 0 (0%) steve <iamstever at gmail dot com>
> 1 (0.3%) 1424 (0.3%) 0 (0%) Bill Guion <bguion at comcast dot net>
> 1 (0.3%) 1535 (0.3%) 118 (1.6%) Spam Recipient <org dot spam dot recipient at gmail dot com>
> 1 (0.3%) 1889 (0.4%) 111 (1.5%) Kirk dot Johnson at zootweb dot com
> 1 (0.3%) 947 (0.2%) 0 (0%) Alain Roger <raf dot news at gmail dot com>
> 1 (0.3%) 1580 (0.4%) 0 (0%) Ford, Mike <M dot Ford at leedsmet dot ac dot uk>
> 1 (0.3%) 523 (0.1%) 0 (0%) Rodrigo Reis da Rocha <r3corp at gmail dot com>
> 1 (0.3%) 3000 (0.7%) 0 (0%) Bey Evenson <grabs at 0deaibbs dot com>
> 1 (0.3%) 738 (0.2%) 0 (0%) Eric Wood <eric at interplas dot com>
> 1 (0.3%) 874 (0.2%) 0 (0%) mike <mike503 at gmail dot com>
> 1 (0.3%) 1256 (0.3%) 0 (0%) Nirmalya Lahiri <nirmalyalahiri at yahoo dot com>
> 1 (0.3%) 1076 (0.2%) 0 (0%) Dan <frozendice at gmail dot com>
> 1 (0.3%) 3086 (0.7%) 0 (0%) Swan Rapuano <planetesimal at ascencia dot com>
> 1 (0.3%) 1063 (0.2%) 0 (0%) Steve Holmes <sholmes42 at mac dot com>
> 1 (0.3%) 2967 (0.7%) 0 (0%) Vasil Kokareshkov <vasil dot kokareshkov at fredhopper dot com>
> 1 (0.3%) 980 (0.2%) 0 (0%) Julian Kennedy <julian at juliankennedy dot co dot za>
> 1 (0.3%) 640 (0.1%) 0 (0%) Jason Norwood-Young <jason at freespeechpub dot co dot za>
> 1 (0.3%) 1137 (0.3%) 0 (0%) Brice <brice dot favre at gmail dot com>
> 1 (0.3%) 356 (0.1%) 0 (0%) tedd <tedd at sperling dot com>
> 1 (0.3%) 937 (0.2%) 11 (0.1%) Iñigo Medina GarcÃa <imedina at diazdesantos dot es>
> 1 (0.3%) 1250 (0.3%) 0 (0%) Chris <dmagick at gmail dot com>
> 1 (0.3%) 1510 (0.3%) 32 (0.4%) Lester Caine <lester at lsces dot co dot uk>
> 1 (0.3%) 463 (0.1%) 0 (0%) Rian Hidayanto <rian dot smart at gmail dot com>
> 1 (0.3%) 956 (0.2%) 0 (0%) Dan Joseph <dmjoseph at gmail dot com>
> 1 (0.3%) 558 (0.1%) 0 (0%) Jason Knight <jcknight at gmail dot com>
> 1 (0.3%) 962 (0.2%) 0 (0%) admin at buskirkgraphics dot com
> 1 (0.3%) 399 (0.1%) 0 (0%) Paul Johnson <paul at pjcj dot net>
> 1 (0.3%) 1571 (0.3%) 219 (2.9%) admin at buskirkgraphics dot com
> 1 (0.3%) 1239 (0.3%) 0 (0%) Kelly Jones <kelly dot terry dot jones at gmail dot com>
> 1 (0.3%) 965 (0.2%) 95 (1.3%) Philip Thompson <philthathril at gmail dot com>
> 1 (0.3%) 613 (0.1%) 130 (1.7%) admin at buskirkgraphics dot com
> 1 (0.3%) 681 (0.2%) 0 (0%) Emil Edeholt <emil at knmedical dot se>
> 1 (0.3%) 2170 (0.5%) 0 (0%) Larry Garfield <larry at garfieldtech dot com>
> 1 (0.3%) 1756 (0.4%) 0 (0%) admin at buskirkgraphics dot com
> 1 (0.3%) 1025 (0.2%) 0 (0%) bddarwin at gmail dot com <bddarwin at gmail dot com>
> 1 (0.3%) 457 (0.1%) 0 (0%) Dee Ayy <dee dot ayy at gmail dot com>
> 1 (0.3%) 1278 (0.3%) 0 (0%) Richard S dot Crawford <rscrawford at mossroot dot com>
> 1 (0.3%) 153 (0%) 0 (0%) news dot php dot net <psr dot 1020 at gmail dot com>
> 1 (0.3%) 724 (0.2%) 0 (0%) Jochem Maas <jochem at iamjochem dot com>
> 1 (0.3%) 2128 (0.5%) 274 (3.6%) admin at buskirkgraphics dot com
> 1 (0.3%) 1856 (0.4%) 664 (8.8%) paragasu <paragasu at gmail dot com>
> 1 (0.3%) 3880 (0.9%) 651 (8.6%) revDAVE <Cool at hosting4days dot com>
> 1 (0.3%) 662 (0.1%) 0 (0%) Ian <barnracoon at gmail dot com>
> 1 (0.3%) 601 (0.1%) 0 (0%) Németh Zoltán <znemeth at alterationx dot hu>
> 1 (0.3%) 794 (0.2%) 0 (0%) Steven Macintyre <steven at steven dot macintyre dot name>
> 1 (0.3%) 988 (0.2%) 0 (0%) Németh Zoltán <znemeth at alterationx dot hu>
> 1 (0.3%) 3406 (0.8%) 0 (0%) Wolf <LoneWolf at nc dot rr dot com>
> 1 (0.3%) 2025 (0.5%) 0 (0%) Mike Frysinger <vapier dot adi at gmail dot com>
> 1 (0.3%) 6320 (1.4%) 0 (0%) php-general-help at lists dot php dot net
>
>
> NOTE: Numbers may not add up to 100% due to protection of names and addresses upon
> request, and removal of verified SPAM messages.
>
> DISCLAIMER: If you want your email address omitted from future weekly reports,
> please email me privately at parasane
gmail.com and it will be removed from all
> future reports immediately.
>
>
--
http://www.interjinn.com
Application and Templating Framework for PHP
attached mail follows:
Top-posting in honor of Friday.
I know. I found a glitch in there on Tuesday or Wednesday, but
have since had to let fixing a hosed Linux installation take priority.
Hopefully I'll get to it this week.
On Fri, Apr 11, 2008 at 4:08 PM, Robert Cummings <robert
interjinn.com> wrote:
> Your script is bust... I wrote code (even if you disregard the joke
> stuff :)
>
> Cheers,
> Rob.
--
</Daniel P. Brown>
Ask me about:
Dedicated servers starting
$59.99/mo., VPS starting
$19.99/mo.,
and shared hosting starting
$2.50/mo.
Unmanaged, managed, and fully-managed!
attached mail follows:
Hi gang:
Sorry for the lame app, but the program worked for Safari (Mac and
Win). However, I did get it to work for FF and a couple of other
browsers (Mac and Win), see again:
http://webbytedd.com/quarters
But the critter is dead in the water for all versions of IE -- if --
I don't figure out a way around the following single statement.
document.getElementById(id).checked = true;
Granted it's javascript, but all that line does is to set a checkbox
variable (id) to 'on'. Surely, $M code can do that, right?
After reading a bunch, it seems that M$ has a better way to do things
(big surprise there, huh?) and thus does not use the
document.getElementById(id) thing that everyone else in the world
uses. Instead, they use something "better" and it's not documented
well as is typical.
Unfortunately, I have not been able to find a M$ work-a-round.
So, what I need is:
if (document.getElementById)
{
document.getElementById(id).checked = true;
}
else
{
<<<<< inset solution here. >>>>>>
}
All the code has to do is to set a simple checkbox to 'on' in IE.
Anyone have any ideas?
Cheers,
tedd
PS: I'm going to post this on a js list as well.
PPS: You have to wonder how much more technically advanced we would
be if we weren't always held back by the "what's in it for me"
shortsightedness of M$.
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
attached mail follows:
At 11:33 AM -0400 4/11/08, Daniel Brown wrote:
>On Fri, Apr 11, 2008 at 10:29 AM, Ford, Mike <M.Ford
leedsmet.ac.uk> wrote:
>>
>> Sounds like a register_globals=On issue....
>
> It does to me, as well. I know, Tedd, that on the php1.net site
>that you mentioned to me off-list, I'm about 99% positive that it's
>the reason. Shared hosts generally keep register_globals on and leave
>it up to the individual customer to turn it off. On that particular
>server, though, since it's mostly developers, I may just send out an
>email to get feedback and turn it off at the main, and then allow
>ya'all to override it on your individual sites.
>
> The thing that makes me wonder (and I haven't checked myself to
>verify) is why two sites, on the same server, having the same
Hey!
I found it and you were right.
On my webbytedd.com site, I had a htaccess file that read:
AddDefaultCharset utf-8
php_value register_globals 0
php_value magic_quotes_gpc 0
php_value magic_quotes_sybase 0
php_value magic_quotes_runtime 0
And I didn't have that htaccess file on my sperling.com site.
However, what fooled me was in both scripts I had:
ini_set( 'register_globals', '0' );
So, I thought that was the same, but apparently it's not. Maybe
because my server had safe_mode ON it won't allow it -- I don't know.
Another question for another time.
Thanks a bunch guys!
Cheers,
tedd
PS: I did try the session_write_close and several other suggestions,
but none worked.
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]