php-general Digest 20 Jun 2011 11:17:13 -0000 Issue 7367

2011-06-20 Thread php-general-digest-help

php-general Digest 20 Jun 2011 11:17:13 - Issue 7367

Topics (messages 313608 through 313612):

Re: Submit Using An Image Form Processing
313608 by: Ashley Sheridan
313609 by: tedd
313610 by: Jason Pruim
313611 by: Shawn McKenzie

Re: Doctrine madness!
313612 by: Ford, Mike

Administrivia:

To subscribe to the digest, e-mail:
php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
php-gene...@lists.php.net


--
---BeginMessage---


tedd tedd.sperl...@gmail.com wrote:

At 6:34 PM -0500 6/18/11, Shawn McKenzie wrote:

Get method is for retrieval only.  It is not for anything that has a
consequence (insert, update, delete, send email, etc.).  Use only post
for those.

--
Thanks!
-Shawn


Why?

Cheers,

tedd

--
---
http://sperling.com/

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

That's just the http spec. It's because browsers and servers know how to 
correctly handle the different types of connections.

Some browsers make multiple connections for get, which is one of the main 
reasons for people having problems with multiple hits on a page being 
registered when only one was expected.

Ashley Sheridan
http://www.ashleysheridan.co.uk
--
Sent from my Android phone with K-9 Mail. Please excuse my brevity.
---End Message---
---BeginMessage---

At 11:54 AM -0400 6/18/11, Ron Piggott wrote:
I am writing a shopping cart using the PayPal API.  Shopping cart 
works.  Just adding additional functionality. 

From the shopping cart contents I am trying to make it so the user 
may click on a picture of a trash can to delete the item.  I wrote 
the following line of code:


INPUT TYPE=image 
SRC=http://www.theverseoftheday.info/store-images/trash_can.png; 
WIDTH=20  HEIGHT=20 style=float: right;boarder: 0; alt=Remove 
Product From Shopping Cart name=remove_product value=1 /


But when I have do:

echo $remove_product;

I am not getting anything.  Is there a correct way of passing a 
variable through an image?  The value in this above example is the 
auto_increment value of the product.  From this I could remove the 
item from the shopping cart. 


OR

Is there a better way to pass a variable through a graphic?  I am 
hoping for the shopping cart contents to be just 1 form where users 
will have several options (change quantities, delete specific 
items).  I can't use a hidden field. 


Thank you for your help.

Ron


Ron:

You don't need to pass a value. What you need is simply a trigger to 
do something. As such, you can use lot's of things.


In this case, a button should work.

http://www.htmlcodetutorial.com/forms/_BUTTON.html

However, I would take all the styling (including dimensions) out of 
it and place those in a css sheet.


Also, what's wrong with a hidden field?

Cheers,

tedd

--
---
http://sperling.com/
---End Message---
---BeginMessage---
On Jun 18, 2011, at 7:34 PM, Shawn McKenzie wrote:

 On 06/18/2011 11:06 AM, Jason Pruim wrote:
 
 On Jun 18, 2011, at 11:54 AM, Ron Piggott ron.pigg...@actsministries.org 
 wrote:
 
 INPUT TYPE=image 
 SRC=http://www.theverseoftheday.info/store-images/trash_can.png; 
 WIDTH=20  HEIGHT=20 style=float: right;boarder: 0; alt=Remove 
 Product From Shopping Cart name=remove_product value=1 /
 
 I would wrap the image in a link like so:
 a href=mypage.php?id={$autoincrementnum}img src=blah/a
 
 And then have a get look for that variable:
 
 $id=$_get[id];
 
 If (isset($id)) {
 
 //delete code here
 }
 
 Check all that before you run it I'm writing from my smart phone and 
 it's all untested. Hopefully it gives you a start though. 
 
 Jason Pruim 
 
 Get method is for retrieval only.  It is not for anything that has a
 consequence (insert, update, delete, send email, etc.).  Use only post
 for those.

I've actually used $_GET in the way I described because then it doesn't require 
submitting a form to be able to delete something from a list.

with $_POST you would have to submit the form, so you would need to build an 
array of check boxes to store what ones you want to delete, and then go through 
and process the array to remove all the proper items.

But with the $_GET you can process it one at a time. I had a system up and 
working for maintaining a address database for quite awhile and it worked great 
for me.---End Message---
---BeginMessage---
On 06/19/2011 07:26 AM, tedd wrote:
 At 6:34 PM -0500 6/18/11, Shawn McKenzie wrote:

 Get method is for retrieval only.  It is not for anything that has a
 consequence (insert, update, delete, send email, etc.).  Use only post
 for those.

 -- 
 Thanks!
 -Shawn
 
 
 Why?
 
 Cheers,
 
 tedd
 

The convention has been established that the GET and HEAD methods SHOULD
NOT have the significance of taking an action other than 

php-general Digest 21 Jun 2011 03:22:07 -0000 Issue 7368

2011-06-20 Thread php-general-digest-help

php-general Digest 21 Jun 2011 03:22:07 - Issue 7368

Topics (messages 313613 through 313625):

mysqlnd and LOAD DATA INFILE
313613 by: Marten Lehmann
313614 by: Shawn McKenzie
313616 by: Marten Lehmann
313617 by: Shawn McKenzie
313618 by: Marten Lehmann

Re: Doctrine madness!
313615 by: Nathan Nobbe

Updating to 5.3.6
313619 by: Bruno Coelho
313620 by: Sean Greenslade
313621 by: Bruno Coelho

php 5.3.6
313622 by: Fatih P.
313623 by: Daniel Brown
313624 by: Fatih P.

$B!Z(BN$B5i!(B S$B5i!(BAAA$B5i(B $B:bI[!%P%C%0!*$B![!Z%V%i%s%I4[![
313625 by: $B!AwNAL5NA!%V%i%s%I7c0B;Tl

Administrivia:

To subscribe to the digest, e-mail:
php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
php-gene...@lists.php.net


--
---BeginMessage---

Hello,

we recently updated our mysql client libs to mysql-5.5.13 and since it 
was impossible to rebuild PHP 5.2.x and PHP 5.3.x with this new mysql 
release, we rebuilt PHP with --with-mysql=mysqlnd and 
---with-mysqli=mysqlnd.


General mysql commands work fine, but one of our clients reported, that 
the command LOAD DATA INFILE isn't working any longer.


As the setup of the mysql server hasn't changed and as on the webserver 
only PHP was rebuilt, I assume that the problem is in mysqlnd?!


How does mysqlnd handle LOAD DATA INFILE? And if the problem is not in 
mysqlnd, what else could it be?


Kind regards
Marten
---End Message---
---BeginMessage---
On 06/20/2011 07:51 AM, Marten Lehmann wrote:
 isn't working any longer

What does that mean?  It generates an error?  It executes without error
but the data isn't loaded?  Try a test on the command line and see what
you get.

-- 
Thanks!
-Shawn
http://www.spidean.com
---End Message---
---BeginMessage---

Hello,


What does that mean?  It generates an error?  It executes without error
but the data isn't loaded?  Try a test on the command line and see what
you get.


when calling mysql_error() the message The used
command is not allowed with this MySQL version is returned.

I thought maybe knows between this and mysqlnd? Because recompiling PHP 
with --with-mysql=mysqlnd is the only difference to the previous PHP 
build, where LOAD DATA INFILE worked.


Kind regards
Marten
---End Message---
---BeginMessage---
On 06/20/2011 10:53 AM, Marten Lehmann wrote:
 Hello,
 
 What does that mean?  It generates an error?  It executes without error
 but the data isn't loaded?  Try a test on the command line and see what
 you get.
 
 when calling mysql_error() the message The used
 command is not allowed with this MySQL version is returned.
 
 I thought maybe knows between this and mysqlnd? Because recompiling PHP
 with --with-mysql=mysqlnd is the only difference to the previous PHP
 build, where LOAD DATA INFILE worked.
 
 Kind regards
 Marten

This is a PHP list, but most likely run: mysql_fix_privilege_tables and
then restart mysql.

-- 
Thanks!
-Shawn
http://www.spidean.com
---End Message---
---BeginMessage---

This is a PHP list


Exactly. And it is the switch from --with-mysql=/usr to 
--with-mysql=mysqlnd (the PHP native MySQL driver) during the build that 
caused the problem. And there is no alternative to building current PHP 
versions with mysql support than with mysqlnd, because the mysql 5.5.x 
libraries don't work against PHP 5.2 and PHP 5.3, although they are out 
for months.



but most likely run: mysql_fix_privilege_tables and then restart mysql.


As I said: The problem is not at the MySQL server, it must be at the 
client side.


Kind regards
Marten
---End Message---
---BeginMessage---
On Mon, Jun 20, 2011 at 5:16 AM, Ford, Mike m.f...@leedsmet.ac.uk wrote:

  -Original Message-
  From: Nathan Nobbe [mailto:quickshif...@gmail.com]
  Sent: 16 June 2011 17:51

 [...]

  Here's what's going on, I instantiate a model object for the product
  table
  from my application
 
  $newRecord = new Product();
 
  at this point memory usage goes up noticeably.  I don't really care
  though
  because I figure I can delete it, but look at this madness I have
  going
  (which *fails* to free up the memory)
 
  $newRecord-clearRelated();
  $newRecord-free();
  unset($newRecord);
  gc_collect_cycles();
 
  after all of this memory consumption is still dramatically higher
  than prior
  to the first call creating the object above.  This I've verified
  through
  memory_get_usage().
 
  here's the output from the memory_get_usage() calls
 
  int(166461440) // before new Product()
  int(169345024) // directly after new Product()
  int(169345024) // after madness trying to free memory used by new
  Product()

 I know nothing about Doctrine, but after all the unrelated
 discussion and your renewed plea for someone to address the 

RE: [PHP] Doctrine madness!

2011-06-20 Thread Ford, Mike
 -Original Message-
 From: Nathan Nobbe [mailto:quickshif...@gmail.com]
 Sent: 16 June 2011 17:51

[...]
 
 Here's what's going on, I instantiate a model object for the product
 table
 from my application
 
 $newRecord = new Product();
 
 at this point memory usage goes up noticeably.  I don't really care
 though
 because I figure I can delete it, but look at this madness I have
 going
 (which *fails* to free up the memory)
 
 $newRecord-clearRelated();
 $newRecord-free();
 unset($newRecord);
 gc_collect_cycles();
 
 after all of this memory consumption is still dramatically higher
 than prior
 to the first call creating the object above.  This I've verified
 through
 memory_get_usage().
 
 here's the output from the memory_get_usage() calls
 
 int(166461440) // before new Product()
 int(169345024) // directly after new Product()
 int(169345024) // after madness trying to free memory used by new
 Product()

I know nothing about Doctrine, but after all the unrelated
discussion and your renewed plea for someone to address the issue,
I decided to write conduct some simple tests.

So I wrote a very simple class that basically just hogs some memory
when instantiated, and tried some simple instantiations and
releases.

At each stage, I measured current and peak memory usage, and the
results were:

  Initial
Usage = 262,144
Peak  = 262,144

  After single instantiation ($a = new Hog();)
Usage = 3,932,160
Peak  = 3,932,160

  After resetting that to NULL ($a = NULL;)
Usage = 524,288
Peak  = 3,932,160

  After second single instantiation ($b = new Hog();)
Usage = 3,932,160
Peak  = 3,932,160

  After instantiating 3 more
Usage = 15,728,640
Peak  = 15,728,640

  After resetting all those to NULL
Usage = 1,310,720
Peak  = 15,728,640

  After 4 instantiations again
Usage = 15,728,640
Peak  = 15,728,640

This seems to be pretty much what I (and you!) would expect,
indicating that the memory used by objects can be recovered by PHP
when the object is released. This being the case, I would suggest
that something in your script is not freeing things up the way it
should, the prime candidate being the clearRelated() method. Either
that, or you have circular references that the gc_collect_cycles()
function is unable to recover. But, bottom line, I'd say you're
right that it's probably a Doctrine-related issue as the underlying
PHP functionality seems to work reasonably well.

Cheers!

Mike

-- 
Mike Ford,
Electronic Information Developer, Libraries and Learning Innovation,  
Leeds Metropolitan University, 507 Portland Building, City Campus, 
Portland Way, LEEDS,  LS1 3HE,  United Kingdom 
E: m.f...@leedsmet.ac.uk T: +44 113 812 4730





To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm


[PHP] mysqlnd and LOAD DATA INFILE

2011-06-20 Thread Marten Lehmann

Hello,

we recently updated our mysql client libs to mysql-5.5.13 and since it 
was impossible to rebuild PHP 5.2.x and PHP 5.3.x with this new mysql 
release, we rebuilt PHP with --with-mysql=mysqlnd and 
---with-mysqli=mysqlnd.


General mysql commands work fine, but one of our clients reported, that 
the command LOAD DATA INFILE isn't working any longer.


As the setup of the mysql server hasn't changed and as on the webserver 
only PHP was rebuilt, I assume that the problem is in mysqlnd?!


How does mysqlnd handle LOAD DATA INFILE? And if the problem is not in 
mysqlnd, what else could it be?


Kind regards
Marten

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



[PHP] Re: mysqlnd and LOAD DATA INFILE

2011-06-20 Thread Shawn McKenzie
On 06/20/2011 07:51 AM, Marten Lehmann wrote:
 isn't working any longer

What does that mean?  It generates an error?  It executes without error
but the data isn't loaded?  Try a test on the command line and see what
you get.

-- 
Thanks!
-Shawn
http://www.spidean.com

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



Re: [PHP] Doctrine madness!

2011-06-20 Thread Nathan Nobbe
On Mon, Jun 20, 2011 at 5:16 AM, Ford, Mike m.f...@leedsmet.ac.uk wrote:

  -Original Message-
  From: Nathan Nobbe [mailto:quickshif...@gmail.com]
  Sent: 16 June 2011 17:51

 [...]

  Here's what's going on, I instantiate a model object for the product
  table
  from my application
 
  $newRecord = new Product();
 
  at this point memory usage goes up noticeably.  I don't really care
  though
  because I figure I can delete it, but look at this madness I have
  going
  (which *fails* to free up the memory)
 
  $newRecord-clearRelated();
  $newRecord-free();
  unset($newRecord);
  gc_collect_cycles();
 
  after all of this memory consumption is still dramatically higher
  than prior
  to the first call creating the object above.  This I've verified
  through
  memory_get_usage().
 
  here's the output from the memory_get_usage() calls
 
  int(166461440) // before new Product()
  int(169345024) // directly after new Product()
  int(169345024) // after madness trying to free memory used by new
  Product()

 I know nothing about Doctrine, but after all the unrelated
 discussion and your renewed plea for someone to address the issue,
 I decided to write conduct some simple tests.

 So I wrote a very simple class that basically just hogs some memory
 when instantiated, and tried some simple instantiations and
 releases.

 At each stage, I measured current and peak memory usage, and the
 results were:

  Initial
Usage = 262,144
Peak  = 262,144

  After single instantiation ($a = new Hog();)
Usage = 3,932,160
Peak  = 3,932,160

  After resetting that to NULL ($a = NULL;)
Usage = 524,288
Peak  = 3,932,160

  After second single instantiation ($b = new Hog();)
Usage = 3,932,160
Peak  = 3,932,160

  After instantiating 3 more
Usage = 15,728,640
Peak  = 15,728,640

  After resetting all those to NULL
Usage = 1,310,720
Peak  = 15,728,640

  After 4 instantiations again
Usage = 15,728,640
Peak  = 15,728,640

 This seems to be pretty much what I (and you!) would expect,
 indicating that the memory used by objects can be recovered by PHP
 when the object is released. This being the case, I would suggest
 that something in your script is not freeing things up the way it
 should, the prime candidate being the clearRelated() method. Either
 that, or you have circular references that the gc_collect_cycles()
 function is unable to recover. But, bottom line, I'd say you're
 right that it's probably a Doctrine-related issue as the underlying
 PHP functionality seems to work reasonably well.


Mike, thanks for your time here.  I have been able to develop a workaround
and it actually does run fast enough to work for now.  Actually, I'd love to
pin down the issue w/ Doctrine, I just have a lot of clients right now and
can't justify the time, so the hacky solution will have to suffice.

I did just find a bug in PHPUnit about a week ago, but that was easy to
isolate.  In order to isolate the issue with Doctrine it will take me a few
hours.  So even though today is a rainy one, I won't be able to work on it
because I have too much other stuff going on that actually pays the bills,
lol.

-nathan


Re: [PHP] Re: mysqlnd and LOAD DATA INFILE

2011-06-20 Thread Marten Lehmann

Hello,


What does that mean?  It generates an error?  It executes without error
but the data isn't loaded?  Try a test on the command line and see what
you get.


when calling mysql_error() the message The used
command is not allowed with this MySQL version is returned.

I thought maybe knows between this and mysqlnd? Because recompiling PHP 
with --with-mysql=mysqlnd is the only difference to the previous PHP 
build, where LOAD DATA INFILE worked.


Kind regards
Marten

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



Re: [PHP] Re: mysqlnd and LOAD DATA INFILE

2011-06-20 Thread Marten Lehmann

This is a PHP list


Exactly. And it is the switch from --with-mysql=/usr to 
--with-mysql=mysqlnd (the PHP native MySQL driver) during the build that 
caused the problem. And there is no alternative to building current PHP 
versions with mysql support than with mysqlnd, because the mysql 5.5.x 
libraries don't work against PHP 5.2 and PHP 5.3, although they are out 
for months.



but most likely run: mysql_fix_privilege_tables and then restart mysql.


As I said: The problem is not at the MySQL server, it must be at the 
client side.


Kind regards
Marten

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



Re: [PHP] Re: mysqlnd and LOAD DATA INFILE

2011-06-20 Thread Shawn McKenzie
On 06/20/2011 10:53 AM, Marten Lehmann wrote:
 Hello,
 
 What does that mean?  It generates an error?  It executes without error
 but the data isn't loaded?  Try a test on the command line and see what
 you get.
 
 when calling mysql_error() the message The used
 command is not allowed with this MySQL version is returned.
 
 I thought maybe knows between this and mysqlnd? Because recompiling PHP
 with --with-mysql=mysqlnd is the only difference to the previous PHP
 build, where LOAD DATA INFILE worked.
 
 Kind regards
 Marten

This is a PHP list, but most likely run: mysql_fix_privilege_tables and
then restart mysql.

-- 
Thanks!
-Shawn
http://www.spidean.com

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



[PHP] Updating to 5.3.6

2011-06-20 Thread Bruno Coelho

I realize this is a basic matter, but I've installed PHP 5.3.1 with XAMPP for 
Mac OS. 
How can I update my PHP version now? 


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



Re: [PHP] Updating to 5.3.6

2011-06-20 Thread Sean Greenslade
How did you install it? Why can't you just uninstall it and reinstall with
the new version?
On Jun 20, 2011 12:52 PM, Bruno Coelho brunocsncoe...@gmail.com wrote:

 I realize this is a basic matter, but I've installed PHP 5.3.1 with XAMPP
for Mac OS.
 How can I update my PHP version now?


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



Re: [PHP] Updating to 5.3.6

2011-06-20 Thread Bruno Coelho

I've installed through XAMPP. The latest version of XAMPP still has PHP 5.3.1


A 2011/06/20, às 18:50, Sean Greenslade escreveu:

 How did you install it? Why can't you just uninstall it and reinstall with 
 the new version?
 
 On Jun 20, 2011 12:52 PM, Bruno Coelho brunocsncoe...@gmail.com wrote:
  
  I realize this is a basic matter, but I've installed PHP 5.3.1 with XAMPP 
  for Mac OS. 
  How can I update my PHP version now? 
  
  
  Thanks. 
  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
  



[PHP] php 5.3.6

2011-06-20 Thread Fatih P.
Hi Guys,

installed php 5.3.6 TS VC9 and apache 2.2.19 OpenSSL 1.0 compiled with VC9
on windows 2003 R2 but now having strange problem that post variables are
not parsed.

i have tried file_gets_contents(php://input); this problems is there
especially when i post strings starting with capital letters containing
!@#$%^*

nothing logged that i can see as exception.

any ideas ?

Fatih


Re: [PHP] php 5.3.6

2011-06-20 Thread Daniel Brown
On Mon, Jun 20, 2011 at 15:09, Fatih P. fatihpirist...@gmail.com wrote:
 Hi Guys,

 installed php 5.3.6 TS VC9 and apache 2.2.19 OpenSSL 1.0 compiled with VC9
 on windows 2003 R2 but now having strange problem that post variables are
 not parsed.

 i have tried file_gets_contents(php://input); this problems is there
 especially when i post strings starting with capital letters containing
 !@#$%^*

 nothing logged that i can see as exception.

 any ideas ?

Are you missing a P in variables_order in your php.ini?  For
production systems, you'll probably want:

variables_order = GPCS

-- 
/Daniel P. Brown
Network Infrastructure Manager
http://www.php.net/

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



Re: [PHP] php 5.3.6

2011-06-20 Thread Fatih P.
P variable is there, i checked all the possible things that came to me. but
still nothing

the config file was used in 5.3.3 in production just applied changes for
5.3.6

variables_order = GPCS
request_order = GP
register_globals = Off ; tried with On nothing changed
post_max_size = 8M





On Mon, Jun 20, 2011 at 9:15 PM, Daniel Brown danbr...@php.net wrote:

 On Mon, Jun 20, 2011 at 15:09, Fatih P. fatihpirist...@gmail.com wrote:
  Hi Guys,
 
  installed php 5.3.6 TS VC9 and apache 2.2.19 OpenSSL 1.0 compiled with
 VC9
  on windows 2003 R2 but now having strange problem that post variables are
  not parsed.
 
  i have tried file_gets_contents(php://input); this problems is there
  especially when i post strings starting with capital letters containing
  !@#$%^*
 
  nothing logged that i can see as exception.
 
  any ideas ?

 Are you missing a P in variables_order in your php.ini?  For
 production systems, you'll probably want:

variables_order = GPCS

 --
 /Daniel P. Brown
 Network Infrastructure Manager
 http://www.php.net/



Re: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

2011-06-20 Thread Sharl.Jimh.Tsin
On 2011年06月21日 11:21, ◆送料無料◆ブランド激安市場 wrote:
 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

 日本最大級コピーブランド激安市場 ☆*.http://www.special-price.biz/  ☆*.
 ■主要取扱商品: バッグ、財布、腕時計、ベルト、ライタ!
 ≡≡≡
 海外ブランド品安心ショッピング バッグや財布等がお買得!

 【新作入荷】●●●【超人気質屋】◆最新作 ヴィトン 財布新品、新素材入荷

 ① ★GUCCI 2011年新作バッグ大量入荷超人気 ★
 http://www.special-price.biz/ 


 ② ★LOUIS VUITTON 2011年新作バッグ大量入荷超人気 ★
 http://www.special-price.biz/ 


 ③ ★LOUIS VUITTON 2011年新作財布大量入荷 !!!
 http://www.special-price.biz/ 


 【News】★ROLEX -ロレックスN級最高等級時計大量入荷超人気 ★
 http://www.special-price.biz/ 


 ■宜しくお願い申し上げます。
 ≡≡≡
 ◆誠実な接待、長い間取引する友達(^o^)

 ■URL:http://www.special-price.biz/ 
 ■店長:『ブランド激安市場』 土田健一

 ≡◆送料無料◆
Advertisement?!

-- 
Best regards,
Sharl.Jimh.Tsin (From China *Obviously Taiwan INCLUDED*)

Using Gmail? Please read this important notice: 
http://www.fsf.org/campaigns/jstrap/gmail?10073.



RE: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

2011-06-20 Thread admin
I see that it is actually from rjck...@gmail.com
I am not bilingual in Japanese but this is what I can make out it is an
Advertisement.


(A/the N class, S class, AAA class purse, bag!  ) (A/the brand mansion)
Japanese highest level copy brand 激 cheap market ☆*.
http://www.special-price.biz/ ☆*.
Main operation merchandise: a/the bag, purse, wrist watch, belt, writer!

A foreign country brand-name goods safe shopping bag and purse etc. be a/the
good buy!
(New work arrival) ● ● ● (an ultra popular pawnshop)   Most new work
Vitton purse new article, new material arrival
① ★ GUCCI in 2011 new work bag voluminous arrival ultra popular ★
② ★ LOUIS VUITTON in 2011 new work bag voluminous arrival ultra popular ★
3 ★ Louis 2011 Vuitton new large fiscal the Dutch! !  !
(News) ★ ROLEX-ロレックス N class highest grade clock voluminous arrival
ultra popular ★

Manager: 'a brand 激 cheap market' Tsuchida Kenichi
I request it very much.
Friend who deals, for long sincere reception (^o^)
≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡   The carriage free   ≡ ≡ ≡ ≡ ≡
≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡







Richard L. Buskirk

-Original Message-
From: Sharl.Jimh.Tsin [mailto:amoiz.sh...@gmail.com]
Sent: Monday, June 20, 2011 11:28 PM
To: php-general@lists.php.net
Subject: Re: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

・EURー葦・ぢ年06月21日 11:21, ◆送料無料◆ブランド激安市場 wrote:
 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

 日本最大級コピーブランド激安市場 ☆*.http://www.special-price.biz/  ☆*.
 ■主要取扱商品: バッグ、財布、腕時計、ベルト、ライタ!
 ≡≡≡
 海外ブランド品安心ショッピング バッグや財布等がお買得!

 【新作入荷】●●●【超人気質屋】◆最新作 ヴィトン 財布新品、新素材入荷

 ① ★GUCCI 2011年新作バッグ大量入荷超人気 ★
 http://www.special-price.biz/


 ② ★LOUIS VUITTON 2011年新作バッグ大量入荷超人気 ★
 http://www.special-price.biz/


 ③ ★LOUIS VUITTON 2011年新作財布大量入荷 !!!
 http://www.special-price.biz/


 【News】★ROLEX -ロレックスN級最高等級時計大量入荷超人気 ★
 http://www.special-price.biz/


 ■宜しくお願い申し上げます。
 ≡≡≡
 ◆誠実な接待、長い間取引する友達(^o^)

 ■URL:http://www.special-price.biz/
 ■店長:『ブランド激安市場』 土田健一

 ≡◆送料無料◆
Advertisement?!

--
Best regards,
Sharl.Jimh.Tsin (From China *Obviously Taiwan INCLUDED*)

Using Gmail? Please read this important notice:
http://www.fsf.org/campaigns/jstrap/gmail?10073.



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



Re: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

2011-06-20 Thread Fatih P.
ban it :)

2011/6/21 ad...@buskirkgraphics.com

 I see that it is actually from rjck...@gmail.com
 I am not bilingual in Japanese but this is what I can make out it is an
 Advertisement.


 (A/the N class, S class, AAA class purse, bag!  ) (A/the brand mansion)
 Japanese highest level copy brand 激 cheap market ☆*.
 http://www.special-price.biz/ ☆*.
 Main operation merchandise: a/the bag, purse, wrist watch, belt, writer!

 A foreign country brand-name goods safe shopping bag and purse etc. be
 a/the
 good buy!
 (New work arrival) ● ● ● (an ultra popular pawnshop)   Most new work
 Vitton purse new article, new material arrival
 ① ★ GUCCI in 2011 new work bag voluminous arrival ultra popular ★
 ② ★ LOUIS VUITTON in 2011 new work bag voluminous arrival ultra popular ★
 3 ★ Louis 2011 Vuitton new large fiscal the Dutch! !  !
 (News) ★ ROLEX-ロレックス N class highest grade clock voluminous arrival
 ultra popular ★

 Manager: 'a brand 激 cheap market' Tsuchida Kenichi
 I request it very much.
 Friend who deals, for long sincere reception (^o^)
 ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡   The carriage free   ≡ ≡ ≡ ≡ ≡
 ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡







 Richard L. Buskirk

 -Original Message-
 From: Sharl.Jimh.Tsin [mailto:amoiz.sh...@gmail.com]
 Sent: Monday, June 20, 2011 11:28 PM
 To: php-general@lists.php.net
 Subject: Re: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

 ・EURー葦・ぢ年06月21日 11:21, ◆送料無料◆ブランド激安市場 wrote:
  【N級、 S級、AAA級 財布、バッグ!】【ブランド館】
 
  日本最大級コピーブランド激安市場 ☆*.http://www.special-price.biz/  ☆*.
  ■主要取扱商品: バッグ、財布、腕時計、ベルト、ライタ!
  ≡≡≡
  海外ブランド品安心ショッピング バッグや財布等がお買得!
 
  【新作入荷】●●●【超人気質屋】◆最新作 ヴィトン 財布新品、新素材入荷
 
  ① ★GUCCI 2011年新作バッグ大量入荷超人気 ★
  http://www.special-price.biz/
 
 
  ② ★LOUIS VUITTON 2011年新作バッグ大量入荷超人気 ★
  http://www.special-price.biz/
 
 
  ③ ★LOUIS VUITTON 2011年新作財布大量入荷 !!!
  http://www.special-price.biz/
 
 
  【News】★ROLEX -ロレックスN級最高等級時計大量入荷超人気 ★
  http://www.special-price.biz/
 
 
  ■宜しくお願い申し上げます。
  ≡≡≡
  ◆誠実な接待、長い間取引する友達(^o^)
 
  ■URL:http://www.special-price.biz/
  ■店長:『ブランド激安市場』 土田健一
 
  ≡◆送料無料◆
 Advertisement?!

 --
 Best regards,
 Sharl.Jimh.Tsin (From China *Obviously Taiwan INCLUDED*)

 Using Gmail? Please read this important notice:
 http://www.fsf.org/campaigns/jstrap/gmail?10073.



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




[PHP] Parent Limits?

2011-06-20 Thread Brian Smither

The following works (three parents):
include(../../../includes/ini.inc.php);
require_once(../../../includes/ini.inc.php);

The following works (four parents):
include(../../../../includes/ini.inc.php);

The following does not work (four parents):
require_once(../../../../includes/ini.inc.php);

That is, require_once() with four parents has been reported to have been 
disabled for security purposes. But apparently, not disabled is include() with 
four parents.

The device or setting which is causing the problem is not known to me. It may 
be just the four parents (and include() is getting the data from this file 
elsewhere) or it may be the combination.

It has been reported this is not a limit within open_basedir. So, what is it? 
What module or php.ini setting would have this effect?

Thank you.






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



Re: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

2011-06-20 Thread xucheng
interesting ...

2011/6/21 Fatih P. fatihpirist...@gmail.com:
 ban it :)

 2011/6/21 ad...@buskirkgraphics.com

 I see that it is actually from rjck...@gmail.com
 I am not bilingual in Japanese but this is what I can make out it is an
 Advertisement.


 (A/the N class, S class, AAA class purse, bag!  ) (A/the brand mansion)
 Japanese highest level copy brand 激 cheap market ☆*.
 http://www.special-price.biz/ ☆*.
 Main operation merchandise: a/the bag, purse, wrist watch, belt, writer!

 A foreign country brand-name goods safe shopping bag and purse etc. be
 a/the
 good buy!
 (New work arrival) ● ● ● (an ultra popular pawnshop)   Most new work
 Vitton purse new article, new material arrival
 ① ★ GUCCI in 2011 new work bag voluminous arrival ultra popular ★
 ② ★ LOUIS VUITTON in 2011 new work bag voluminous arrival ultra popular ★
 3 ★ Louis 2011 Vuitton new large fiscal the Dutch! !  !
 (News) ★ ROLEX-ロレックス N class highest grade clock voluminous arrival
 ultra popular ★

 Manager: 'a brand 激 cheap market' Tsuchida Kenichi
 I request it very much.
 Friend who deals, for long sincere reception (^o^)
 ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡   The carriage free   ≡ ≡ ≡ ≡ ≡
 ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡ ≡







 Richard L. Buskirk

 -Original Message-
 From: Sharl.Jimh.Tsin [mailto:amoiz.sh...@gmail.com]
 Sent: Monday, June 20, 2011 11:28 PM
 To: php-general@lists.php.net
 Subject: Re: [PHP] 【N級、 S級、AAA級 財布、バッグ!】【ブランド館】

 ・EURー葦・ぢ年06月21日 11:21, ◆送料無料◆ブランド激安市場 wrote:
  【N級、 S級、AAA級 財布、バッグ!】【ブランド館】
 
  日本最大級コピーブランド激安市場 ☆*.http://www.special-price.biz/  ☆*.
  ■主要取扱商品: バッグ、財布、腕時計、ベルト、ライタ!
  ≡≡≡
  海外ブランド品安心ショッピング バッグや財布等がお買得!
 
  【新作入荷】●●●【超人気質屋】◆最新作 ヴィトン 財布新品、新素材入荷
 
  ① ★GUCCI 2011年新作バッグ大量入荷超人気 ★
  http://www.special-price.biz/
 
 
  ② ★LOUIS VUITTON 2011年新作バッグ大量入荷超人気 ★
  http://www.special-price.biz/
 
 
  ③ ★LOUIS VUITTON 2011年新作財布大量入荷 !!!
  http://www.special-price.biz/
 
 
  【News】★ROLEX -ロレックスN級最高等級時計大量入荷超人気 ★
  http://www.special-price.biz/
 
 
  ■宜しくお願い申し上げます。
  ≡≡≡
  ◆誠実な接待、長い間取引する友達(^o^)
 
  ■URL:http://www.special-price.biz/
  ■店長:『ブランド激安市場』 土田健一
 
  ≡◆送料無料◆
 Advertisement?!

 --
 Best regards,
 Sharl.Jimh.Tsin (From China *Obviously Taiwan INCLUDED*)

 Using Gmail? Please read this important notice:
 http://www.fsf.org/campaigns/jstrap/gmail?10073.



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





RE: [PHP] Parent Limits?

2011-06-20 Thread admin
Why not set a constants for a base path and then you do not have to do that?

define('BASE_PATH','C:\\inetpub\\vhosts\\yourwebsite.com\\httpdocs\\');
--windows format for path
define('DIR_INCLUDES', './includes');

require_once(BASE_PATH.DIR_INCLUDES.'ini.inc.php');



Richard L. Buskirk


-Original Message-
From: Brian Smither [mailto:bhsmit...@gmail.com] 
Sent: Tuesday, June 21, 2011 12:35 AM
To: php-general@lists.php.net
Subject: [PHP] Parent Limits?


The following works (three parents):
include(../../../includes/ini.inc.php);
require_once(../../../includes/ini.inc.php);

The following works (four parents):
include(../../../../includes/ini.inc.php);

The following does not work (four parents):
require_once(../../../../includes/ini.inc.php);

That is, require_once() with four parents has been reported to have been
disabled for security purposes. But apparently, not disabled is include()
with four parents.

The device or setting which is causing the problem is not known to me. It
may be just the four parents (and include() is getting the data from this
file elsewhere) or it may be the combination.

It has been reported this is not a limit within open_basedir. So, what is
it? What module or php.ini setting would have this effect?

Thank you.






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


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