You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(3) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
(8) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Adriano C. <ad...@ad...> - 2011-03-23 09:44:50
|
Hi, Under translations, the GUI says it’s “listing 1 to 9 of 9” but then insists “There are no translations visible at the current location”. I can see 9 translations in the sqlite db and I can manipulate them via the command line. Unfortunately I really need the GUI to insert multi—line translations with accented characters. Any idea why it’s not showing my translations? Cheers, AD -- |
|
From: Adriano C. <ad...@ad...> - 2011-03-23 08:19:00
|
Ignore that. Got it working in the end. It was an issue with PHP’s sessions config on my localhost. Adriano Castro wrote: > Hi, me again, > > After successfully logging in to the GUI I get the following unhelpful > error message: > > [23-Mar-2011 00:22:59] PHP Fatal error: Exception thrown without a > stack frame in Unknown on line 0 > > I’m assuming it’ll have something to do with saving the session details > because everything I do takes me back to the login page claiming > “session timed out”. > > Any idea of what’s wrong? > > Thank, > AD > -- |
|
From: Adriano C. <ad...@ad...> - 2011-03-23 07:25:49
|
Hi, me again, After successfully logging in to the GUI I get the following unhelpful error message: [23-Mar-2011 00:22:59] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0 I’m assuming it’ll have something to do with saving the session details because everything I do takes me back to the login page claiming “session timed out”. Any idea of what’s wrong? Thank, AD -- |
|
From: Mark N. F. <no...@ca...> - 2011-03-22 10:37:27
|
> Just wanted to maximise code reuse. Which is understandable. The thing you have to remember is that this is only the thin part of a very huge wedge. Right now, you're putting a class on one of two items, depending upon the intl. Sure, that's easy enough to do it with an if/else. Now imagine you've got fifteen intls, and five of them need different code entirely. That's when having it in code hurts. I recall a beautiful example from Bill Hails (hidden somewhere on the Yahoo! twiki) which illustrates the problem -- a complex if/else/else/else chain, with a bug/typo in the middle. Practically impossible to debug in that way, but it became obvious once the code was specialised to the intl level. -- Norm. |
|
From: Adriano C. <ad...@ad...> - 2011-03-21 21:05:53
|
Mark Norman Francis wrote: > On 21 Mar 2011, at 18:19, Adriano Castro<ad...@ad...> wrote: >> I considered specialising the template to each intl but it seems a bit >> overkill for such a simple task. > > Why? It's exactly what template specialisation is for. The code needs to be different in each intl, so you specialise it to the intl level and change it. Just wanted to maximise code reuse. I bit the bullet and went for template specialisation. My teeth hurt. Tks, AD -- |
|
From: Mark N. F. <no...@ca...> - 2011-03-21 20:35:59
|
On 21 Mar 2011, at 18:19, Adriano Castro <ad...@ad...> wrote: > I considered specialising the template to each intl but it seems a bit > overkill for such a simple task. Why? It's exactly what template specialisation is for. The code needs to be different in each intl, so you specialise it to the intl level and change it. -- Norm. |
|
From: Adriano C. <ad...@ad...> - 2011-03-21 18:35:54
|
Hi,
Considering this setup:
$ r3 inheritance list template
product:
dbml
intl:
generic_intl
es_mx
en_us
Given the following html snippet which I’ve promoted to a separate template:
<ul>
<li class="active">en_us</li>
<li>es_mx</li>
</ul>
What’s the best way to apply the active class the correct intl?
I considered specialising the template to each intl but it seems a bit
overkill for such a simple task. I then thought of leaving the template
at the most generic level, querying the intl and using cphp to switch on
that. Unfortunately I can’t figure out how to do that. I’ve found
$context->location() and $context->getTarget() both hold the info I need
but can’t get anything that just returns the intl dimension.
Thanks,
AD
--
|
|
From: Mark N. F. <no...@ca...> - 2010-02-20 14:42:07
|
Howdy, Is there any chance that the command "r3 target templates <target>" could list the templates in the actual order that they are first used when generating the target, rather than alphabetical order? -- Norm. |
|
From: Mark N. F. <no...@ca...> - 2009-07-22 09:22:26
|
You might be interested in following a couple of my github repos. I'm re-starting my website stuff (and using r3 properly) and keeping it public: * <http://github.com/norm/generic-templates> - separated out my generic templates, so I can share them between different r3 installs. * <http://github.com/norm/r3-templates> - the main bulk of my r3 templates, to be used for most of my hobbyist sites and blogs. * <http://github.com/norm/r3-bash-completion> - tab completion for r3 commands -- Norm. |
|
From: Mark N. F. <no...@ca...> - 2009-07-22 09:21:34
|
> 1. $context->getDimension($dimension_name); (return a string
> representing the dimension name)
Agreed. Would also like it to return an associative array of all
dimensions when no argument is given.
> 2. $context->getTarget(); (return a parse_path structure
> representing the location)
Also could be handy.
> The first would be really use full for doing stuff like
> <HTML lang="<r3:cphp>print $context->getDimension("intl");</
> r3:cphp>">
I currently use vars for this (eg. "r3 var set usingr3.org/all site
usingr3.org"). A hack, but a simple one.
> The latter would be cool for creating "smart" components that could
> alter presentation based on which target they where being generated
> into.
Isn't that the point of specialising templates? It's offloading
dimensional logic from the r3 (the dimensional tool) to the templates.
-- Norm.
|
|
From: Tim H. <tim...@me...> - 2009-07-22 07:21:51
|
I have a number of circumstances where it would be good to to be able
to extract various elements from the context. In particular
1. The name of a particular dimension that is currently being generated
2. The name of the current target
Lets imagine that there was two functions
1. $context->getDimension($dimension_name); (return a string
representing the dimension name)
2. $context->getTarget(); (return a parse_path structure
representing the location)
The first would be really use full for doing stuff like
<HTML lang="<r3:cphp>print $context->getDimension("intl");</r3:cphp>">
The latter would be cool for creating "smart" components that could
alter presentation based on which target they where being generated
into.
It may be possible to do tis already, but i cant find any documented
way to do it.
Any Ideas?.
|
|
From: Mark N. F. <no...@ca...> - 2009-07-20 13:17:42
|
> When I install the r3 GUI, it bumps me back to the login window after > every > single action with "session timed out". FYI - solved it, the web server didn't have write permission to the r3_datadir and/or the sqlite db. -- Norm. |
|
From: Mark N. F. <no...@ca...> - 2009-07-17 16:09:27
|
Hi, When I install the r3 GUI, it bumps me back to the login window after every single action with "session timed out". It's running at the user "www", which has full write access to the r3static directory (user and group www, chmod 775). There anything I can easily do to debug this? :) P.S. On http://sourceforge.net/projects/rthree/support: > Unfortunately, this project hasn't indicated the best way to get help. > Contact the project's administrators to find out how to get help. -- Norm. |
|
From: Tim H. <tim...@me...> - 2009-06-17 11:24:37
|
I noticed an issue with r3 relating to mixed cases in dimension entity names. Scenario I setup r3 to work on a site we have and initially created an intl entity called "en-gb", after creating some targets and tagging them, I created an XLIFF file for the translations, and discovered that the tool i was using did not recognise the intl becuase it was expecting "en-GB". So I thought since i have no specialisation's in this dimension yet, i will just delete this entity with "r3 dimension intl delete en-gb" and create an new one called "en-GB" instead. Having done that, everything seemed to work , however when I went to generate an output target I got the error Cannot find intl#en-gb (interestingly if i did an "r3 gen -a") it seemed to work, I only get the error when doing a gen on a specific locations such as "r3 gen producta/en-US/mockpage.php", The use of en-US is not a typo, this is because i get the same error about en-gb regardless of which intl entity i try to generate against. I suspect this is because its the first of the mislabled entries in the tum table. Looking thought the sqllite database the only reference I can find to the deleted intl entity is in the "tum" table, where there are container_start entries that still have the older (lowercase) enity name. In fact there are a mixture of entries in that table that contain both en-gb and en-GB in the container start feilds. Its also of note is the the generated output in htdocs has "en-gb" as the folder name for the intl, not "en-GB", which is not an issue on windows or Mac OSX which are case insensative, but is certainly a problem on linux/unix. |
|
From: Matt Z. <zan...@ya...> - 2009-01-23 22:37:11
|
Contextual information contains the target object. In this case
genfilter_OutputGenObserver::notifyGenerateTarget() gets a
r3core_GenerateTargetEvent object. You can extract the Target object
from this.
I do this here, and add a static method so the output handler can get at
the target:
class genfilter_OutputGenObserver extends r3core_GenObserverImpl {
static $filtered = false;
static $target;
static function getTarget() {
return self::$target;
}
function notifyGenerateTarget( r3core_GenerateTargetEvent
$genevent ) {
self::$target = $genevent->getTarget();
//...
And here's an amended genfilter_OutputFilter::close() method that
accesses the target, and extracts its name:
function close( ) {
$target =
genfilter_OutputGenObserver::getTarget()->getName()->toString();
$this->localbuffer = "---({$target})--+ {$this->localbuffer}
*-----";
$this->wrapped->output( $this->localbuffer );
$this->localbuffer = "";
return $this->wrapped->close( );
}
Hope that helps!
Best
Matt
On Fri, 2009-01-23 at 15:25 +0800, Chi-BiN Hsiao wrote:
> Thank you. Matt, With your instruction, the plugin works very well.
>
> Still have another question is how I can get the target's name or
> suffix? The js/css file and the html file will apply diffrent filter
> rule.
>
> regards,
>
> On 1/23/09, Matt Zandstra <zan...@ya...> wrote:
> > Hi
> >
> > So output handlers are called on an ongoing basis. However the close()
> > method is always called at the end of a write to a target. So you can
> > use this to implement a local buffer in OutputFilter.php.. Here's how:
> >
> > class genfilter_OutputFilter extends r3_generate_Output {
> > private $wrapped;
> > private $localbuffer="";
> >
> > function __construct( r3_generate_Output $output ) {
> > $this->wrapped = $output;
> > }
> >
> > function output( $str ) {
> > // do nothing but append to local buffer
> > $this->localbuffer .= $str;
> > }
> >
> > function close( ) {
> > // here's where you can amend your entire target string
> > // I just add some garbage
> > $this->localbuffer = "-----+ {$this->localbuffer} *-----";
> >
> >
> > $this->wrapped->output( $this->localbuffer );
> > $this->localbuffer = "";
> > return $this->wrapped->close( );
> > }
> > //...
> >
> > The close() method is moved up from the delegation methods, the rest of
> > the class is unchanged.
> >
> > Hope that helps!
> >
> > Matt
> >
> > On Thu, 2009-01-22 at 18:23 +0800, Chi-BiN Hsiao wrote:
> > > Hi Matt,
> > >
> > > Thanks for your help agagin! The filter works, Great!!
> > >
> > > Now another situation that get me troubled: I include some modules
> > > into a template, then I run "r3 generate ...". yes, the filter works.
> > > But the genfilter_OutputFilter::output() was been called to each
> > > module, that's not what I wanted. I wanted the filter be effectived on
> > > the main template but not the modules.
> > >
> > > If you can give me some advise it will be more helpful.
> > >
> > > Thanks and regards,
> > >
> >
> >
>
>
|
|
From: Chi-BiN H. <chi...@gm...> - 2009-01-23 07:25:48
|
Thank you. Matt, With your instruction, the plugin works very well.
Still have another question is how I can get the target's name or
suffix? The js/css file and the html file will apply diffrent filter
rule.
regards,
On 1/23/09, Matt Zandstra <zan...@ya...> wrote:
> Hi
>
> So output handlers are called on an ongoing basis. However the close()
> method is always called at the end of a write to a target. So you can
> use this to implement a local buffer in OutputFilter.php.. Here's how:
>
> class genfilter_OutputFilter extends r3_generate_Output {
> private $wrapped;
> private $localbuffer="";
>
> function __construct( r3_generate_Output $output ) {
> $this->wrapped = $output;
> }
>
> function output( $str ) {
> // do nothing but append to local buffer
> $this->localbuffer .= $str;
> }
>
> function close( ) {
> // here's where you can amend your entire target string
> // I just add some garbage
> $this->localbuffer = "-----+ {$this->localbuffer} *-----";
>
>
> $this->wrapped->output( $this->localbuffer );
> $this->localbuffer = "";
> return $this->wrapped->close( );
> }
> //...
>
> The close() method is moved up from the delegation methods, the rest of
> the class is unchanged.
>
> Hope that helps!
>
> Matt
>
> On Thu, 2009-01-22 at 18:23 +0800, Chi-BiN Hsiao wrote:
> > Hi Matt,
> >
> > Thanks for your help agagin! The filter works, Great!!
> >
> > Now another situation that get me troubled: I include some modules
> > into a template, then I run "r3 generate ...". yes, the filter works.
> > But the genfilter_OutputFilter::output() was been called to each
> > module, that's not what I wanted. I wanted the filter be effectived on
> > the main template but not the modules.
> >
> > If you can give me some advise it will be more helpful.
> >
> > Thanks and regards,
> >
>
>
--
Chi-BiN Hsiao
|
|
From: Matt Z. <zan...@ya...> - 2009-01-22 22:37:44
|
Hi
So output handlers are called on an ongoing basis. However the close()
method is always called at the end of a write to a target. So you can
use this to implement a local buffer in OutputFilter.php.. Here's how:
class genfilter_OutputFilter extends r3_generate_Output {
private $wrapped;
private $localbuffer="";
function __construct( r3_generate_Output $output ) {
$this->wrapped = $output;
}
function output( $str ) {
// do nothing but append to local buffer
$this->localbuffer .= $str;
}
function close( ) {
// here's where you can amend your entire target string
// I just add some garbage
$this->localbuffer = "-----+ {$this->localbuffer} *-----";
$this->wrapped->output( $this->localbuffer );
$this->localbuffer = "";
return $this->wrapped->close( );
}
//...
The close() method is moved up from the delegation methods, the rest of
the class is unchanged.
Hope that helps!
Matt
On Thu, 2009-01-22 at 18:23 +0800, Chi-BiN Hsiao wrote:
> Hi Matt,
>
> Thanks for your help agagin! The filter works, Great!!
>
> Now another situation that get me troubled: I include some modules
> into a template, then I run "r3 generate ...". yes, the filter works.
> But the genfilter_OutputFilter::output() was been called to each
> module, that's not what I wanted. I wanted the filter be effectived on
> the main template but not the modules.
>
> If you can give me some advise it will be more helpful.
>
> Thanks and regards,
>
|
|
From: Chi-BiN H. <chi...@gm...> - 2009-01-22 10:24:28
|
Hi Matt, Thanks for your help agagin! The filter works, Great!! Now another situation that get me troubled: I include some modules into a template, then I run "r3 generate ...". yes, the filter works. But the genfilter_OutputFilter::output() was been called to each module, that's not what I wanted. I wanted the filter be effectived on the main template but not the modules. If you can give me some advise it will be more helpful. Thanks and regards, -- Chi-BiN Hsiao On 1/22/09, Matt Zandstra <zan...@ya...> wrote: > Hi > > Yes, we don't have adequate documentation for either building plugins or > exploiting the r3 API. We will try to put that right soon. > > In the meantime, the attached archive contains what stickleback calls a > pluginset directory. > > The included plugin, OutputGenObserver.php, extends the > GenObserverManager host. It can be notified of all sorts of generation > events, but only implements a method invoked as targets are generated. > > The method checks for > > <user> > <filteroutput>yes</filteroutput> > </user> > > in the configuration file in order to operate. > > Also included in the pluginset is a class file: OutputFilter.php. This > wraps whatever output handler is nominated by the CLI or GUI. You can > amend genfilter_OutputFilter::output() in order to filter the generated > text -- at the moment it simply adds some characters. > > To try this out, unpack the archive and put the genfilter directory into > $R3HOME/plugins/ > > By default nothing will happen. Once you've amended your conf file, you > should see the placeholder transformation. > > Hope that's of some use. > > Matt > > > On Mon, 2009-01-19 at 14:17 +0800, Chi-BiN Hsiao wrote: > > First of all, thanks for everyone who works at r3. > > > > And I want to add a plugin to r3. I hope, with this plugin, we can > > strip html comments and unnecessary while-space when we run "r3 > > generate ..." to complile *.ros to *.html file. If we can add a config > > flag to control the filter to enabled/disabled is more perfect. > > > > But it seems, there was no document tell us how to crate plugin for > > r3? Can any one tell me how does this work? Thank you. > > > > Best Reguards. > > > > |
|
From: Chi-BiN H. <chi...@gm...> - 2009-01-22 05:49:25
|
Hi Matt and Stone, Thank you kindly. I will try it later. On 1/22/09, Matt Zandstra <zan...@ya...> wrote: > Hi > > Yes, we don't have adequate documentation for either building plugins or > exploiting the r3 API. We will try to put that right soon. > > In the meantime, the attached archive contains what stickleback calls a > pluginset directory. > > The included plugin, OutputGenObserver.php, extends the > GenObserverManager host. It can be notified of all sorts of generation > events, but only implements a method invoked as targets are generated. > > The method checks for > > <user> > <filteroutput>yes</filteroutput> > </user> > > in the configuration file in order to operate. > > Also included in the pluginset is a class file: OutputFilter.php. This > wraps whatever output handler is nominated by the CLI or GUI. You can > amend genfilter_OutputFilter::output() in order to filter the generated > text -- at the moment it simply adds some characters. > > To try this out, unpack the archive and put the genfilter directory into > $R3HOME/plugins/ > > By default nothing will happen. Once you've amended your conf file, you > should see the placeholder transformation. > > Hope that's of some use. > > Matt > > > On Mon, 2009-01-19 at 14:17 +0800, Chi-BiN Hsiao wrote: > > First of all, thanks for everyone who works at r3. > > > > And I want to add a plugin to r3. I hope, with this plugin, we can > > strip html comments and unnecessary while-space when we run "r3 > > generate ..." to complile *.ros to *.html file. If we can add a config > > flag to control the filter to enabled/disabled is more perfect. > > > > But it seems, there was no document tell us how to crate plugin for > > r3? Can any one tell me how does this work? Thank you. > > > > Best Reguards. > > > > -- Chi-BiN Hsiao |
|
From: Matt Z. <zan...@ya...> - 2009-01-22 00:51:26
|
Hi
Yes, we don't have adequate documentation for either building plugins or
exploiting the r3 API. We will try to put that right soon.
In the meantime, the attached archive contains what stickleback calls a
pluginset directory.
The included plugin, OutputGenObserver.php, extends the
GenObserverManager host. It can be notified of all sorts of generation
events, but only implements a method invoked as targets are generated.
The method checks for
<user>
<filteroutput>yes</filteroutput>
</user>
in the configuration file in order to operate.
Also included in the pluginset is a class file: OutputFilter.php. This
wraps whatever output handler is nominated by the CLI or GUI. You can
amend genfilter_OutputFilter::output() in order to filter the generated
text -- at the moment it simply adds some characters.
To try this out, unpack the archive and put the genfilter directory into
$R3HOME/plugins/
By default nothing will happen. Once you've amended your conf file, you
should see the placeholder transformation.
Hope that's of some use.
Matt
On Mon, 2009-01-19 at 14:17 +0800, Chi-BiN Hsiao wrote:
> First of all, thanks for everyone who works at r3.
>
> And I want to add a plugin to r3. I hope, with this plugin, we can
> strip html comments and unnecessary while-space when we run "r3
> generate ..." to complile *.ros to *.html file. If we can add a config
> flag to control the filter to enabled/disabled is more perfect.
>
> But it seems, there was no document tell us how to crate plugin for
> r3? Can any one tell me how does this work? Thank you.
>
> Best Reguards.
>
|
|
From: Stone Yi Li <yi...@ya...> - 2009-01-21 03:08:23
|
Hi Chi-BiN, We will give you a sample of filter plugin shortly that shows you the proof of concept. In the meanwhile, we will compile a quick reference for building r3 plugins. Please stay tuned. Thanks for using r3. Stone Chi-BiN Hsiao wrote: > First of all, thanks for everyone who works at r3. > > And I want to add a plugin to r3. I hope, with this plugin, we can > strip html comments and unnecessary while-space when we run "r3 > generate ..." to complile *.ros to *.html file. If we can add a config > flag to control the filter to enabled/disabled is more perfect. > > But it seems, there was no document tell us how to crate plugin for > r3? Can any one tell me how does this work? Thank you. > > Best Reguards. > |
|
From: Chi-BiN H. <chi...@gm...> - 2009-01-19 06:17:45
|
First of all, thanks for everyone who works at r3. And I want to add a plugin to r3. I hope, with this plugin, we can strip html comments and unnecessary while-space when we run "r3 generate ..." to complile *.ros to *.html file. If we can add a config flag to control the filter to enabled/disabled is more perfect. But it seems, there was no document tell us how to crate plugin for r3? Can any one tell me how does this work? Thank you. Best Reguards. -- Chi-BiN Hsiao |
|
From: Stone Yi Li <yi...@ya...> - 2008-10-10 20:11:47
|
have a good weekend. |
|
From: Matt Z. <zan...@ya...> - 2008-10-10 20:02:35
|
Thanks for this report, Kévin We are consulting with the Symfony team to see if this is a known issue with them. We may come back to you for more info if that bears no fruit. mz On Thu, 2008-10-09 at 12:47 +0200, Kévin Dunglas wrote: > Hello, > I try to use the Yahoo! R3 plugin for Symfony (ysfR3Plugin) but I > cannot have it working. > > I have installed stickleback-1.4.0 and r3-1.4.1 PEAR packages and > properly set Yahoo! Dimension and R3 for Symfony but I've an error at > stratup (probably caused by the Stickelback's plugin autoloading > feature) : |
|
From: K. D. <du...@gm...> - 2008-10-09 11:00:00
|
Hello,
I try to use the Yahoo! R3 plugin for Symfony (ysfR3Plugin) but I
cannot have it working.
I have installed stickleback-1.4.0 and r3-1.4.1 PEAR packages and
properly set Yahoo! Dimension and R3 for Symfony but I've an error at
stratup (probably caused by the Stickelback's plugin autoloading
feature) :
( ! ) ReflectionException: Class sbplug does not exist in
/usr/share/php/stickleback/PluginResolver.php on line 118
Call Stack
# Time Memory Function Location
1 0.0001 50368 {main}( ) ../index.php:0
2 0.0013 139084 sfProjectConfiguration::getApplicationConfiguration(
) ../index.php:5
3 0.0125 716760 sfApplicationConfiguration->__construct(
) ../sfProjectConfiguration.class.php:342
4 0.0144 756888 sfApplicationConfiguration->initConfiguration(
) ../sfApplicationConfiguration.class.php:49
5 0.0164 1015512 sfConfigCache->checkConfig(
) ../sfApplicationConfiguration.class.php:113
6 0.0166 1022128 ysfR3ApplicationConfiguration->getConfigPaths(
) ../sfConfigCache.class.php:163
7 0.0169 1024252 ysfR3ApplicationConfiguration->updatePathForI18nCache(
) ../ysfR3ApplicationConfiguration.class.php:171
8 0.0172 1025388 r3_simple->__construct(
) ../ysfR3ApplicationConfiguration.class.php:230
9 0.0558 1129112 stickleback_PluginRegistryImpl->findPlugins( ) ../Simple.php:42
10 0.0558 1129460 stickleback_PluginResolver->findPlugins(
) ../PluginRegistryImpl.php:296
11 0.0571 1144300 stickleback_PluginResolver->checkDescriptorAgainstFileSystem(
) ../PluginResolver.php:97
12 0.0571 1144300 ReflectionClass->__construct( ) ../PluginResolver.php:118
(This is a XDebug trace).
Can you help me to fix it ? I do not find anything on the net about an
error like that.
Thanks.
Here is my config :
phpinfo()
PHP Version => 5.2.4-2ubuntu5.3
System => Linux durruti 2.6.24-19-generic #1 SMP Wed Aug 20 22:56:21
UTC 2008 i686
Build Date => Jul 23 2008 06:42:38
Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (php.ini) Path => /etc/php5/cli
Loaded Configuration File => /etc/php5/cli/php.ini
Scan this dir for additional .ini files => /etc/php5/cli/conf.d
additional .ini files parsed => /etc/php5/cli/conf.d/curl.ini,
/etc/php5/cli/conf.d/mysql.ini,
/etc/php5/cli/conf.d/mysqli.ini,
/etc/php5/cli/conf.d/pdo.ini,
/etc/php5/cli/conf.d/pdo_mysql.ini,
/etc/php5/cli/conf.d/xcache.ini,
/etc/php5/cli/conf.d/xdebug.ini
PHP API => 20041225
PHP Extension => 20060613
Zend Extension => 220060519
Debug Build => no
Thread Safety => disabled
Zend Memory Manager => enabled
IPv6 Support => enabled
Registered PHP Streams => zip, php, file, data, http, ftp,
compress.bzip2, compress.zlib, https, ftps
Registered Stream Socket Transports => tcp, udp, unix, udg, ssl,
sslv3, sslv2, tls
Registered Stream Filters => string.rot13, string.toupper,
string.tolower, string.strip_tags, convert.*, consumed,
convert.iconv.*, bzip2.*, zlib.*
This server is protected with the Suhosin Patch 0.9.6.2
Copyright (c) 2006 Hardened-PHP Project
This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
with Xdebug v2.0.2, Copyright (c) 2002-2007, by Derick Rethans
_______________________________________________________________________
Configuration
PHP Core
Directive => Local Value => Master Value
allow_call_time_pass_reference => On => On
allow_url_fopen => On => On
allow_url_include => Off => Off
always_populate_raw_post_data => Off => Off
arg_separator.input => & => &
arg_separator.output => & => &
asp_tags => Off => Off
auto_append_file => no value => no value
auto_globals_jit => On => On
auto_prepend_file => no value => no value
browscap => no value => no value
default_charset => no value => no value
default_mimetype => text/html => text/html
define_syslog_variables => Off => Off
disable_classes => no value => no value
disable_functions => no value => no value
display_errors => STDOUT => STDOUT
display_startup_errors => Off => Off
doc_root => no value => no value
docref_ext => no value => no value
docref_root => no value => no value
enable_dl => Off => Off
error_append_string => no value => no value
error_log => no value => no value
error_prepend_string => no value => no value
error_reporting => 6135 => 6135
expose_php => On => On
extension_dir => /usr/lib/php5/20060613+lfs => /usr/lib/php5/20060613+lfs
file_uploads => On => On
highlight.bg => <font style="color: #FFFFFF">#FFFFFF</font> => <font
style="color: #FFFFFF">#FFFFFF</font>
highlight.comment => <font style="color: #FF8000">#FF8000</font> =>
<font style="color: #FF8000">#FF8000</font>
highlight.default => <font style="color: #0000BB">#0000BB</font> =>
<font style="color: #0000BB">#0000BB</font>
highlight.html => <font style="color: #000000">#000000</font> => <font
style="color: #000000">#000000</font>
highlight.keyword => <font style="color: #007700">#007700</font> =>
<font style="color: #007700">#007700</font>
highlight.string => <font style="color: #DD0000">#DD0000</font> =>
<font style="color: #DD0000">#DD0000</font>
html_errors => Off => Off
ignore_repeated_errors => Off => Off
ignore_repeated_source => Off => Off
ignore_user_abort => Off => Off
implicit_flush => On => On
include_path => .:/usr/share/php:/usr/share/pear =>
.:/usr/share/php:/usr/share/pear
log_errors => Off => Off
log_errors_max_len => 1024 => 1024
magic_quotes_gpc => On => On
magic_quotes_runtime => Off => Off
magic_quotes_sybase => Off => Off
mail.force_extra_parameters => no value => no value
max_execution_time => 0 => 0
max_input_nesting_level => 64 => 64
max_input_time => -1 => -1
memory_limit => 32M => 32M
open_basedir => no value => no value
output_buffering => 0 => 0
output_handler => no value => no value
post_max_size => 8M => 8M
precision => 12 => 12
realpath_cache_size => 16K => 16K
realpath_cache_ttl => 120 => 120
register_argc_argv => On => On
register_globals => Off => Off
register_long_arrays => On => On
report_memleaks => On => On
report_zend_debug => Off => Off
safe_mode => Off => Off
safe_mode_exec_dir => no value => no value
safe_mode_gid => Off => Off
safe_mode_include_dir => no value => no value
sendmail_from => no value => no value
sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i
serialize_precision => 100 => 100
short_open_tag => On => On
SMTP => localhost => localhost
smtp_port => 25 => 25
sql.safe_mode => Off => Off
suhosin.log.phpscript => 0 => 0
suhosin.log.phpscript.is_safe => Off => Off
suhosin.log.phpscript.name => no value => no value
suhosin.log.sapi => no value => no value
suhosin.log.script => no value => no value
suhosin.log.script.name => no value => no value
suhosin.log.syslog => no value => no value
suhosin.log.syslog.facility => no value => no value
suhosin.log.syslog.priority => no value => no value
suhosin.log.use-x-forwarded-for => Off => Off
track_errors => Off => Off
unserialize_callback_func => no value => no value
upload_max_filesize => 2M => 2M
upload_tmp_dir => no value => no value
user_dir => no value => no value
variables_order => EGPCS => EGPCS
xmlrpc_error_number => 0 => 0
xmlrpc_errors => Off => Off
y2k_compliance => On => On
zend.ze1_compatibility_mode => Off => Off
bcmath
BCMath support => enabled
bz2
BZip2 Support => Enabled
Stream Wrapper support => compress.bz2://
Stream Filter support => bzip2.decompress, bzip2.compress
BZip2 Version => 1.0.4, 20-Dec-2006
calendar
Calendar support => enabled
ctype
ctype functions => enabled
curl
cURL support => enabled
cURL Information => libcurl/7.18.0 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.1
date
date/time support => enabled
"Olson" Timezone Database Version => 2007.6
Timezone Database => internal
Default timezone => Europe/Berlin
Directive => Local Value => Master Value
date.default_latitude => 31.7667 => 31.7667
date.default_longitude => 35.2333 => 35.2333
date.sunrise_zenith => 90.583333 => 90.583333
date.sunset_zenith => 90.583333 => 90.583333
date.timezone => no value => no value
dba
DBA support => enabled
Supported handlers => cdb cdb_make db4 inifile flatfile
dom
DOM/XML => enabled
DOM/XML API Version => 20031129
libxml Version => 2.6.31
HTML Support => enabled
XPath Support => enabled
XPointer Support => enabled
Schema Support => enabled
RelaxNG Support => enabled
exif
EXIF Support => enabled
EXIF Version => 1.4 $Id: exif.c,v 1.173.2.5.2.20 2007/06/10 20:12:45 iliaa Exp $
Supported EXIF Version => 0220
Supported filetypes => JPEG,TIFF
filter
Input Validation and Filtering => enabled
Revision => $Revision: 1.52.2.39 $
Directive => Local Value => Master Value
filter.default => unsafe_raw => unsafe_raw
filter.default_flags => no value => no value
ftp
FTP support => enabled
gettext
GetText Support => enabled
hash
hash support => enabled
Hashing Engines => md2 md4 md5 sha1 sha256 sha384 sha512 ripemd128
ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3
tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32
crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3
haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5
haval160,5 haval192,5 haval224,5 haval256,5
iconv
iconv support => enabled
iconv implementation => glibc
iconv library version => 2.7
Directive => Local Value => Master Value
iconv.input_encoding => ISO-8859-1 => ISO-8859-1
iconv.internal_encoding => ISO-8859-1 => ISO-8859-1
iconv.output_encoding => ISO-8859-1 => ISO-8859-1
json
json support => enabled
json version => 1.2.1
libxml
libXML support => active
libXML Version => 2.6.31
libXML streams => enabled
mbstring
Multibyte Support => enabled
Multibyte string engine => libmbfl
Multibyte (japanese) regex support => enabled
Multibyte regex (oniguruma) version => 4.4.4
Multibyte regex (oniguruma) backtrack check => On
mbstring extension makes use of "streamable kanji code filter and
converter", which is distributed under the GNU Lesser General Public
License version 2.1.
Directive => Local Value => Master Value
mbstring.detect_order => no value => no value
mbstring.encoding_translation => Off => Off
mbstring.func_overload => 0 => 0
mbstring.http_input => pass => pass
mbstring.http_output => pass => pass
mbstring.internal_encoding => ISO-8859-1 => no value
mbstring.language => neutral => neutral
mbstring.strict_detection => Off => Off
mbstring.substitute_character => no value => no value
mcrypt
mcrypt support => enabled
Version => 2.5.7
Api No => 20021217
Supported ciphers => cast-128 gost rijndael-128 twofish arcfour
cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des
rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes => cbc cfb ctr ecb ncfb nofb ofb stream
Directive => Local Value => Master Value
mcrypt.algorithms_dir => no value => no value
mcrypt.modes_dir => no value => no value
mime_magic
mime_magic support => invalid magic file, disabled
Directive => Local Value => Master Value
mime_magic.debug => Off => Off
mime_magic.magicfile => /usr/share/file/magic.mime => /usr/share/file/magic.mime
mysql
MySQL Support => enabled
Active Persistent Links => 0
Active Links => 0
Client API version => 5.0.51a
MYSQL_MODULE_TYPE => external
MYSQL_SOCKET => /var/run/mysqld/mysqld.sock
MYSQL_INCLUDE => -I/usr/include/mysql
MYSQL_LIBS => -L/usr/lib -lmysqlclient
Directive => Local Value => Master Value
mysql.allow_persistent => On => On
mysql.connect_timeout => 60 => 60
mysql.default_host => no value => no value
mysql.default_password => no value => no value
mysql.default_port => no value => no value
mysql.default_socket => no value => no value
mysql.default_user => no value => no value
mysql.max_links => Unlimited => Unlimited
mysql.max_persistent => Unlimited => Unlimited
mysql.trace_mode => Off => Off
mysqli
MysqlI Support => enabled
Client API library version => 5.0.51a
Client API header version => 5.0.51a
MYSQLI_SOCKET => /var/run/mysqld/mysqld.sock
Directive => Local Value => Master Value
mysqli.default_host => no value => no value
mysqli.default_port => 3306 => 3306
mysqli.default_pw => no value => no value
mysqli.default_socket => no value => no value
mysqli.default_user => no value => no value
mysqli.max_links => Unlimited => Unlimited
mysqli.reconnect => Off => Off
ncurses
ncurses support => enabled
ncurses library version => 5.6
color support => yes
openssl
OpenSSL support => enabled
OpenSSL Version => OpenSSL 0.9.8g 19 Oct 2007
pcntl
pcntl support => enabled
pcre
PCRE (Perl Compatible Regular Expressions) Support => enabled
PCRE Library Version => 7.4 2007-09-21
Directive => Local Value => Master Value
pcre.backtrack_limit => 100000 => 100000
pcre.recursion_limit => 100000 => 100000
PDO
PDO support => enabled
PDO drivers => mysql
pdo_mysql
PDO Driver for MySQL, client library version => 5.0.51a
posix
Revision => $Revision: 1.70.2.3.2.16 $
Reflection
Reflection => enabled
Version => $Id: php_reflection.c,v 1.164.2.33.2.45 2007/08/20 17:01:22
sebastian Exp $
session
Session Support => enabled
Registered save handlers => files user
Registered serializer handlers => php php_binary wddx
Directive => Local Value => Master Value
session.auto_start => Off => Off
session.bug_compat_42 => On => On
session.bug_compat_warn => On => On
session.cache_expire => 180 => 180
session.cache_limiter => nocache => nocache
session.cookie_domain => no value => no value
session.cookie_httponly => Off => Off
session.cookie_lifetime => 0 => 0
session.cookie_path => / => /
session.cookie_secure => Off => Off
session.entropy_file => no value => no value
session.entropy_length => 0 => 0
session.gc_divisor => 100 => 100
session.gc_maxlifetime => 1440 => 1440
session.gc_probability => 0 => 0
session.hash_bits_per_character => 4 => 4
session.hash_function => 0 => 0
session.name => PHPSESSID => PHPSESSID
session.referer_check => no value => no value
session.save_handler => files => files
session.save_path => /var/lib/php5 => /var/lib/php5
session.serialize_handler => php => php
session.use_cookies => On => On
session.use_only_cookies => Off => Off
session.use_trans_sid => 0 => 0
shmop
shmop support => enabled
SimpleXML
Simplexml support => enabled
Revision => $Revision: 1.151.2.22.2.35 $
Schema support => enabled
soap
Soap Client => enabled
Soap Server => enabled
Directive => Local Value => Master Value
soap.wsdl_cache => 1 => 1
soap.wsdl_cache_dir => /tmp => /tmp
soap.wsdl_cache_enabled => 1 => 1
soap.wsdl_cache_limit => 5 => 5
soap.wsdl_cache_ttl => 86400 => 86400
sockets
Sockets Support => enabled
SPL
SPL support => enabled
Interfaces => Countable, OuterIterator, RecursiveIterator,
SeekableIterator, SplObserver, SplSubject
Classes => AppendIterator, ArrayIterator, ArrayObject,
BadFunctionCallException, BadMethodCallException, CachingIterator,
DirectoryIterator, DomainException, EmptyIterator, FilterIterator,
InfiniteIterator, InvalidArgumentException, IteratorIterator,
LengthException, LimitIterator, LogicException, NoRewindIterator,
OutOfBoundsException, OutOfRangeException, OverflowException,
ParentIterator, RangeException, RecursiveArrayIterator,
RecursiveCachingIterator, RecursiveDirectoryIterator,
RecursiveFilterIterator, RecursiveIteratorIterator,
RecursiveRegexIterator, RegexIterator, RuntimeException,
SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage,
SplTempFileObject, UnderflowException, UnexpectedValueException
standard
Regex Library => Bundled library enabled
Dynamic Library Support => enabled
Path to sendmail => /usr/sbin/sendmail -t -i
Directive => Local Value => Master Value
assert.active => 1 => 1
assert.bail => 0 => 0
assert.callback => no value => no value
assert.quiet_eval => 0 => 0
assert.warning => 1 => 1
auto_detect_line_endings => 0 => 0
default_socket_timeout => 60 => 60
safe_mode_allowed_env_vars => PHP_ => PHP_
safe_mode_protected_env_vars => LD_LIBRARY_PATH => LD_LIBRARY_PATH
url_rewriter.tags =>
a=href,area=href,frame=src,input=src,form=,fieldset= =>
a=href,area=href,frame=src,input=src,form=,fieldset=
user_agent => no value => no value
sysvmsg
sysvmsg support => enabled
Revision => $Revision: 1.20.2.3.2.6 $
tokenizer
Tokenizer Support => enabled
wddx
WDDX Support => enabled
WDDX Session Serializer => enabled
XCache
XCache Support => enabled
Version => 1.2.1
Modules Built => cacher
Readonly Protection => N/A
Opcode Cache => enabled, 16,777,216 bytes, 1 split(s), with 8192 slots each
Variable Cache => disabled
Shared Memory Schemes => malloc, mmap
Directive => Local Value => Master Value
xcache.admin.enable_auth => On => On
xcache.cacher => On => On
xcache.coredump_directory => no value => no value
xcache.count => 1 => 1
xcache.gc_interval => 0 => 0
xcache.mmap_path => /dev/zero => /dev/zero
xcache.readonly_protection => no value => no value
xcache.shm_scheme => mmap => mmap
xcache.size => 16M => 16M
xcache.slots => 8K => 8K
xcache.stat => On => On
xcache.test => no value => no value
xcache.ttl => 0 => 0
xcache.var_count => 1 => 1
xcache.var_gc_interval => 300 => 300
xcache.var_maxttl => 0 => 0
xcache.var_size => 0M => 0M
xcache.var_slots => 8K => 8K
xcache.var_ttl => 0 => 0
xdebug
xdebug support => enabled
Version => 2.0.2
Supported protocols => Revision
DBGp - Common DeBuGger Protocol => $Revision: 1.125.2.2 $
GDB - GNU Debugger protocol => $Revision: 1.87 $
PHP3 - PHP 3 Debugger protocol => $Revision: 1.22 $
Directive => Local Value => Master Value
xdebug.auto_trace => Off => Off
xdebug.collect_includes => On => On
xdebug.collect_params => 0 => 0
xdebug.collect_return => Off => Off
xdebug.collect_vars => Off => Off
xdebug.default_enable => On => On
xdebug.dump.COOKIE => no value => no value
xdebug.dump.ENV => no value => no value
xdebug.dump.FILES => no value => no value
xdebug.dump.GET => no value => no value
xdebug.dump.POST => no value => no value
xdebug.dump.REQUEST => no value => no value
xdebug.dump.SERVER => no value => no value
xdebug.dump.SESSION => no value => no value
xdebug.dump_globals => On => On
xdebug.dump_once => On => On
xdebug.dump_undefined => Off => Off
xdebug.extended_info => On => On
xdebug.idekey => keyes => no value
xdebug.manual_url => http://www.php.net => http://www.php.net
xdebug.max_nesting_level => 100 => 100
xdebug.profiler_aggregate => Off => Off
xdebug.profiler_append => Off => Off
xdebug.profiler_enable => Off => Off
xdebug.profiler_enable_trigger => Off => Off
xdebug.profiler_output_dir => /tmp => /tmp
xdebug.profiler_output_name => cachegrind.out.%p => cachegrind.out.%p
xdebug.remote_autostart => Off => Off
xdebug.remote_enable => Off => Off
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => no value => no value
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000
xdebug.show_exception_trace => Off => Off
xdebug.show_local_vars => Off => Off
xdebug.show_mem_delta => Off => Off
xdebug.trace_format => 0 => 0
xdebug.trace_options => 0 => 0
xdebug.trace_output_dir => /tmp => /tmp
xdebug.trace_output_name => trace.%c => trace.%c
xdebug.var_display_max_children => 128 => 128
xdebug.var_display_max_data => 512 => 512
xdebug.var_display_max_depth => 3 => 3
xml
XML Support => active
XML Namespace Support => active
libxml2 Version => 2.6.31
xmlreader
XMLReader => enabled
xmlwriter
XMLWriter => enabled
zip
Zip => enabled
Extension Version => $Id: php_zip.c,v 1.1.2.38 2007/08/06 22:02:32 bjori Exp $
Zip version => 2.0.0
Libzip version => 0.7.1
zlib
ZLib Support => enabled
Stream Wrapper support => compress.zlib://
Stream Filter support => zlib.inflate, zlib.deflate
Compiled Version => 1.2.1.1
Linked Version => 1.2.3.3
Directive => Local Value => Master Value
zlib.output_compression => Off => Off
zlib.output_compression_level => -1 => -1
zlib.output_handler => no value => no value
Additional Modules
Module Name
readline
sysvsem
sysvshm
Environment
Variable => Value
GPG_AGENT_INFO => /tmp/seahorse-dzSTZb/S.gpg-agent:5699:1
SHELL => /bin/bash
DESKTOP_STARTUP_ID =>
TERM => xterm
XDG_SESSION_COOKIE =>
85250190c568cd675074ce6948e5d223-1223533064.825738-1092112225
GTK_RC_FILES => /etc/gtk/gtkrc:/home/keyes/.gtkrc-1.2-gnome2
WINDOWID => 56649200
USER => keyes
LS_COLORS => no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.svgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:
SSH_AUTH_SOCK => /tmp/keyring-XOQAcW/ssh
GNOME_KEYRING_SOCKET => /tmp/keyring-XOQAcW/socket
SESSION_MANAGER => local/durruti:/tmp/.ICE-unix/5590
USERNAME => keyes
PATH => /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
DESKTOP_SESSION => default
GDM_XSERVER_LOCATION => local
PWD => /home/keyes/Documents/Projets/culture3
LANG => fr_FR.UTF-8
GNOME_KEYRING_PID => 5589
GDM_LANG => fr_FR.UTF-8
GDMSESSION => default
HISTCONTROL => ignoredups
SHLVL => 1
HOME => /home/keyes
GNOME_DESKTOP_SESSION_ID => Default
LOGNAME => keyes
XDG_DATA_DIRS => /usr/local/share/:/usr/share/:/usr/share/gdm/
DBUS_SESSION_BUS_ADDRESS =>
unix:abstract=/tmp/dbus-HmhNftiFrG,guid=333ffb345360575fcfc4fac548eda20a
LESSOPEN => | /usr/bin/lesspipe %s
WINDOWPATH => 7
DISPLAY => :0.0
LESSCLOSE => /usr/bin/lesspipe %s %s
COLORTERM => gnome-terminal
XAUTHORITY => /home/keyes/.Xauthority
_ => /usr/bin/php
OLDPWD => /home/keyes
PHP Variables
Variable => Value
_SERVER["GPG_AGENT_INFO"] => /tmp/seahorse-dzSTZb/S.gpg-agent:5699:1
_SERVER["SHELL"] => /bin/bash
_SERVER["DESKTOP_STARTUP_ID"] =>
_SERVER["TERM"] => xterm
_SERVER["XDG_SESSION_COOKIE"] =>
85250190c568cd675074ce6948e5d223-1223533064.825738-1092112225
_SERVER["GTK_RC_FILES"] => /etc/gtk/gtkrc:/home/keyes/.gtkrc-1.2-gnome2
_SERVER["WINDOWID"] => 56649200
_SERVER["USER"] => keyes
_SERVER["LS_COLORS"] =>
no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.svgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:
_SERVER["SSH_AUTH_SOCK"] => /tmp/keyring-XOQAcW/ssh
_SERVER["GNOME_KEYRING_SOCKET"] => /tmp/keyring-XOQAcW/socket
_SERVER["SESSION_MANAGER"] => local/durruti:/tmp/.ICE-unix/5590
_SERVER["USERNAME"] => keyes
_SERVER["PATH"] =>
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
_SERVER["DESKTOP_SESSION"] => default
_SERVER["GDM_XSERVER_LOCATION"] => local
_SERVER["PWD"] => /home/keyes/Documents/Projets/culture3
_SERVER["LANG"] => fr_FR.UTF-8
_SERVER["GNOME_KEYRING_PID"] => 5589
_SERVER["GDM_LANG"] => fr_FR.UTF-8
_SERVER["GDMSESSION"] => default
_SERVER["HISTCONTROL"] => ignoredups
_SERVER["SHLVL"] => 1
_SERVER["HOME"] => /home/keyes
_SERVER["GNOME_DESKTOP_SESSION_ID"] => Default
_SERVER["LOGNAME"] => keyes
_SERVER["XDG_DATA_DIRS"] => /usr/local/share/:/usr/share/:/usr/share/gdm/
_SERVER["DBUS_SESSION_BUS_ADDRESS"] =>
unix:abstract=/tmp/dbus-HmhNftiFrG,guid=333ffb345360575fcfc4fac548eda20a
_SERVER["LESSOPEN"] => | /usr/bin/lesspipe %s
_SERVER["WINDOWPATH"] => 7
_SERVER["DISPLAY"] => :0.0
_SERVER["LESSCLOSE"] => /usr/bin/lesspipe %s %s
_SERVER["COLORTERM"] => gnome-terminal
_SERVER["XAUTHORITY"] => /home/keyes/.Xauthority
_SERVER["_"] => /usr/bin/php
_SERVER["OLDPWD"] => /home/keyes
_SERVER["PHP_SELF"] => -
_SERVER["SCRIPT_NAME"] => -
_SERVER["SCRIPT_FILENAME"] =>
_SERVER["PATH_TRANSLATED"] =>
_SERVER["DOCUMENT_ROOT"] =>
_SERVER["REQUEST_TIME"] => 1223549079
_SERVER["argv"] => Array
(
[0] => -
)
_SERVER["argc"] => 1
_ENV["GPG_AGENT_INFO"] => /tmp/seahorse-dzSTZb/S.gpg-agent:5699:1
_ENV["SHELL"] => /bin/bash
_ENV["DESKTOP_STARTUP_ID"] =>
_ENV["TERM"] => xterm
_ENV["XDG_SESSION_COOKIE"] =>
85250190c568cd675074ce6948e5d223-1223533064.825738-1092112225
_ENV["GTK_RC_FILES"] => /etc/gtk/gtkrc:/home/keyes/.gtkrc-1.2-gnome2
_ENV["WINDOWID"] => 56649200
_ENV["USER"] => keyes
_ENV["LS_COLORS"] =>
no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.svgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:
_ENV["SSH_AUTH_SOCK"] => /tmp/keyring-XOQAcW/ssh
_ENV["GNOME_KEYRING_SOCKET"] => /tmp/keyring-XOQAcW/socket
_ENV["SESSION_MANAGER"] => local/durruti:/tmp/.ICE-unix/5590
_ENV["USERNAME"] => keyes
_ENV["PATH"] =>
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
_ENV["DESKTOP_SESSION"] => default
_ENV["GDM_XSERVER_LOCATION"] => local
_ENV["PWD"] => /home/keyes/Documents/Projets/culture3
_ENV["LANG"] => fr_FR.UTF-8
_ENV["GNOME_KEYRING_PID"] => 5589
_ENV["GDM_LANG"] => fr_FR.UTF-8
_ENV["GDMSESSION"] => default
_ENV["HISTCONTROL"] => ignoredups
_ENV["SHLVL"] => 1
_ENV["HOME"] => /home/keyes
_ENV["GNOME_DESKTOP_SESSION_ID"] => Default
_ENV["LOGNAME"] => keyes
_ENV["XDG_DATA_DIRS"] => /usr/local/share/:/usr/share/:/usr/share/gdm/
_ENV["DBUS_SESSION_BUS_ADDRESS"] =>
unix:abstract=/tmp/dbus-HmhNftiFrG,guid=333ffb345360575fcfc4fac548eda20a
_ENV["LESSOPEN"] => | /usr/bin/lesspipe %s
_ENV["WINDOWPATH"] => 7
_ENV["DISPLAY"] => :0.0
_ENV["LESSCLOSE"] => /usr/bin/lesspipe %s %s
_ENV["COLORTERM"] => gnome-terminal
_ENV["XAUTHORITY"] => /home/keyes/.Xauthority
_ENV["_"] => /usr/bin/php
_ENV["OLDPWD"] => /home/keyes
PHP License
This program is free software; you can redistribute it and/or modify
it under the terms of the PHP License as published by the PHP Group
and included in the distribution in the file: LICENSE
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
If you did not receive a copy of the PHP license, or have any
questions about PHP licensing, please contact li...@ph....
--
Kévin Dunglas
http://lapin-blanc.net
|