php-general Digest 13 Oct 2010 21:56:18 -0000 Issue 6986
Topics (messages 308669 through 308686):
Re: poll of 'public framework or roll your own'
308669 by: Steve Staples
Re: Google Calendar
308670 by: Floyd Resler
308671 by: Govinda
308680 by: Tommy Pham
Eclipse, Komodo, Netbeans, Zend Studio, PHP Storm, other?
308672 by: Hansen, Mike
308673 by: Shreyas Agasthya
308674 by: James Diamond
308675 by: Floyd Resler
308676 by: Bastien Koert
308677 by: Matt Giddings
308678 by: Ashley Sheridan
308679 by: Floyd Resler
308681 by: musicdev.gmail.com
308682 by: Ashley Sheridan
http://www.mytrash.mail.ua spam
308683 by: Ashley Sheridan
308684 by: Joshua Kehn
308686 by: Daniel P. Brown
Re: Zend studio location Cross-Domain Scripting Vulnerability
308685 by: Daevid Vincent
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
----------------------------------------------------------------------
--- Begin Message ---
I must have missed this poll.... but let me chime in (you've prolly
already stopped reading now... :P )
to make a long story short, i use a custom variant that started life as
cakephp. well, not even anywhere close. I started to comprehend how
cakephp started/configured itself, and then wrote my own, and reduced a
lot of the "extra" stuff it did that I didn't need.
So, what I use is my own custom "switchboard/index" file, that does my
magic, and then utilizes:
smarty templates
pchart (for graphs)
fpdf (for pdf generation)
pear mdb2
pear mailer (or sometimes phpmailer)
jquery
that is about all I use for every site i develop now. I am still fine
tuning my classes/functions so that everything is more manageable and
stream lined. my custom "switchboard/index" uses mod-rewrites, and does
prolly a lot more than it needs to do, but i find it works quite nicely.
-Steve
On Tue, 2010-10-12 at 15:14 -0700, Daevid Vincent wrote:
> That was my poll! :)
>
> Do you use a public framework or roll your own?
> I personally find most frameworks to be either too generic or too
> restricting. To do some tasks you have to jump through many hoops. I see
> the benefit and certainly for prototypes they may have use, but I tend to
> find that building a custom framework using some basic tools like a DB
> wrapper, debug routines, selectbox routines, dynamic menu creation,
> headers, footers, etc. gives all the MVC power I need. What do you do?
>
> What's a framework?
> 1 (1.9%)
> I don't use any framework (by choice or policy).
> 9 (16.7%)
> I use my own custom framework.
> 33 (61.1%)
> I use a public framework like Zend, Symfony, Cake, etc.
> 11 (20.4%
>
> P.s. the link works fine for me...
> http://www.rapidpoll.net/8opnt1e
>
> And here are two more of interest maybe:
> http://www.rapidpoll.net/show.aspx?id=awp1ocy
> http://www.rapidpoll.net/show.aspx?id=arc1opy
>
> > -----Original Message-----
> > From: Tommy Pham [mailto:tommy...@gmail.com]
> > Sent: Friday, October 08, 2010 6:47 AM
> > To: PHP
> > Subject: [PHP] poll of 'public framework or roll your own'
> >
> > Hi,
> >
> > Does anyone know/remember what's the results of that old poll
> > back in mid(?)
> > January?
> > http://marc.info/?l=php-general&m=126455173203450&w=2
> >
> > I can't seem to access http://www.rapidpoll.net/8opnt1e.
> >
> > Thanks,
> > Tommy
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
>
--- End Message ---
--- Begin Message ---
I turned on E_ALL & E_STRICT and I still don't receive any type of error
message. My code simply stops. I'm not sure what the problem is but I found a
Google Calendar wrapper that suits my needs and doesn't require Zend.
Thanks!
Floyd
On Oct 12, 2010, at 10:22 PM, Kranthi Krishna wrote:
> The exact error message will help understand your situation
>
> Most probable reason is Zend is not included in your include path
>
> develop with error_reporting set to E_ALL & E_STRICT that will help
> you understand many trivial errors
--- End Message ---
--- Begin Message ---
in this case when you put a tab before the closing heredoc it is not
an error in itself. Its equivalent to removing the closing heredoc. so
PHP treats the rest of the code as part of the string.
A Parse error is reported when ?> OR end of the file is reached
OK, to be sure I understand.. if I get only a blank white screen (not
a single char back from the server), then what does that mean? Do we
call that "fatal error"?
(as distinct from "parse error" - which always does give some error
message if E_ALL & E_STRICT are on?)
And if I never close my heredoc, then does that produce a parse error
or a fatal error? ..and will that script ever reach "end of file"?
------------
Govinda
--- End Message ---
--- Begin Message ---
> -----Original Message-----
> From: Floyd Resler [mailto:fres...@adex-intl.com]
> Sent: Wednesday, October 13, 2010 7:07 AM
> To: PHP
> Subject: Re: [PHP] Google Calendar
>
> I turned on E_ALL & E_STRICT and I still don't receive any type of error
> message. My code simply stops. I'm not sure what the problem is but I
> found a Google Calendar wrapper that suits my needs and doesn't require
> Zend.
>
> Thanks!
> Floyd
>
> On Oct 12, 2010, at 10:22 PM, Kranthi Krishna wrote:
>
> > The exact error message will help understand your situation
> >
> > Most probable reason is Zend is not included in your include path
> >
> > develop with error_reporting set to E_ALL & E_STRICT that will help
> > you understand many trivial errors
>
>
Shouldn't it be E_ALL | E_STRICT ?
Regards,
Tommy
--- End Message ---
--- Begin Message ---
I'm about to do a lot of work on an existing code base and I think I'd like to
try an IDE. I currently use VIM for most editing.
What IDE are you using?
What do you like about the one you are using?
Which ones have you tried?
Mike
--- End Message ---
--- Begin Message ---
Eclipse Ganymede or Galileo.
The support for plug-ins is what I like.
I have tried NetBeans and found it to be OK.
--Shreyas
On Wed, Oct 13, 2010 at 10:28 PM, Hansen, Mike <mike.han...@atmel.com>wrote:
> I'm about to do a lot of work on an existing code base and I think I'd like
> to try an IDE. I currently use VIM for most editing.
>
> What IDE are you using?
>
> What do you like about the one you are using?
>
> Which ones have you tried?
>
> Mike
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Regards,
Shreyas Agasthya
--- End Message ---
--- Begin Message ---
Hey Mike,
I use zend eclipse, love it.
What I love about it is what I love about any IDE, code complete, project
configurations, customizable preferences of the editor, etc.
I have used Eclipse (Pre-Zend), Zend Eclipse, Zend Studio, Komodo, and
Easyclipse.
James
On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
> I'm about to do a lot of work on an existing code base and I think I'd like
> to try an IDE. I currently use VIM for most editing.
>
> What IDE are you using?
>
> What do you like about the one you are using?
>
> Which ones have you tried?
>
> Mike
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---
--- Begin Message ---
On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
> I'm about to do a lot of work on an existing code base and I think I'd like
> to try an IDE. I currently use VIM for most editing.
>
> What IDE are you using?
>
> What do you like about the one you are using?
>
> Which ones have you tried?
>
> Mike
>
Good question. I've tried Zend Studio Beta 8, Eclipse, Komodo, and Netbeans on
my MacBook Pro. Netbeans is probably the only one that I haven't gotten very
frustrated with. They are all very good but eventually all but Netbeans starts
to grind to a halt. I love the layout of the Eclipsed-based ones and would
love to use Zend Studio or Eclipse. But, when I spend more time waiting for
the busy cursor to go away than coding, those nice tools don't do me any good!
That being said, does anyone else use a Mac and have similar problems?
Take care,
Floyd
--- End Message ---
--- Begin Message ---
On Wed, Oct 13, 2010 at 1:40 PM, James Diamond <djdiam...@gmail.com> wrote:
> Hey Mike,
>
> I use zend eclipse, love it.
>
> What I love about it is what I love about any IDE, code complete, project
> configurations, customizable preferences of the editor, etc.
>
> I have used Eclipse (Pre-Zend), Zend Eclipse, Zend Studio, Komodo, and
> Easyclipse.
>
> James
>
>
> On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
>
>> I'm about to do a lot of work on an existing code base and I think I'd like
>> to try an IDE. I currently use VIM for most editing.
>>
>> What IDE are you using?
>>
>> What do you like about the one you are using?
>>
>> Which ones have you tried?
>>
>> Mike
>>
>>
>>
>> --
>> 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
>
>
Netbeans and Notepad++
--
Bastien
Cat, the other other white meat
--- End Message ---
--- Begin Message ---
I've tried Eclipse and Netbeans and have found Netbeans to fit my needs
well.
On Wed, Oct 13, 2010 at 1:40 PM, James Diamond <djdiam...@gmail.com> wrote:
> Hey Mike,
>
> I use zend eclipse, love it.
>
> What I love about it is what I love about any IDE, code complete, project
> configurations, customizable preferences of the editor, etc.
>
> I have used Eclipse (Pre-Zend), Zend Eclipse, Zend Studio, Komodo, and
> Easyclipse.
>
> James
>
>
> On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
>
> > I'm about to do a lot of work on an existing code base and I think I'd
> like to try an IDE. I currently use VIM for most editing.
> >
> > What IDE are you using?
> >
> > What do you like about the one you are using?
> >
> > Which ones have you tried?
> >
> > Mike
> >
> >
> >
> > --
> > 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
>
>
--- End Message ---
--- Begin Message ---
On Wed, 2010-10-13 at 14:09 -0400, Floyd Resler wrote:
> On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
>
> > I'm about to do a lot of work on an existing code base and I think I'd like
> > to try an IDE. I currently use VIM for most editing.
> >
> > What IDE are you using?
> >
> > What do you like about the one you are using?
> >
> > Which ones have you tried?
> >
> > Mike
> >
>
> Good question. I've tried Zend Studio Beta 8, Eclipse, Komodo, and Netbeans
> on my MacBook Pro. Netbeans is probably the only one that I haven't gotten
> very frustrated with. They are all very good but eventually all but Netbeans
> starts to grind to a halt. I love the layout of the Eclipsed-based ones and
> would love to use Zend Studio or Eclipse. But, when I spend more time
> waiting for the busy cursor to go away than coding, those nice tools don't do
> me any good!
>
> That being said, does anyone else use a Mac and have similar problems?
>
> Take care,
> Floyd
>
>
Netbeans is the only IDE I've used, but I have to say, it does what I
need with a minimal of fuss. It has great integration with SVN (via a
downloadable plugin if you're unfortunate enough to still be using
Windows to develop) and the only slowdowns I've seen were where the SVN
server was difficult to reach.
I like the fact that it has good front-end integration too, and not only
recognises and code hints for those, but it also recognises things like
jQuery.
Also, it can automatically insert phpDoc comments with a prompt, which
makes it easy to produce standard project documentation.
Aside from Netbeans, Kate as a text editor is very good. It's part of
the KDE package, and you can get it on Windows as well (although not
sure about MacOS)
Thanks,
Ash
http://www.ashleysheridan.co.uk
--- End Message ---
--- Begin Message ---
On Oct 13, 2010, at 2:20 PM, Ashley Sheridan wrote:
> On Wed, 2010-10-13 at 14:09 -0400, Floyd Resler wrote:
>
>> On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
>>
>>> I'm about to do a lot of work on an existing code base and I think I'd like
>>> to try an IDE. I currently use VIM for most editing.
>>>
>>> What IDE are you using?
>>>
>>> What do you like about the one you are using?
>>>
>>> Which ones have you tried?
>>>
>>> Mike
>>>
>>
>> Good question. I've tried Zend Studio Beta 8, Eclipse, Komodo, and Netbeans
>> on my MacBook Pro. Netbeans is probably the only one that I haven't gotten
>> very frustrated with. They are all very good but eventually all but
>> Netbeans starts to grind to a halt. I love the layout of the Eclipsed-based
>> ones and would love to use Zend Studio or Eclipse. But, when I spend more
>> time waiting for the busy cursor to go away than coding, those nice tools
>> don't do me any good!
>>
>> That being said, does anyone else use a Mac and have similar problems?
>>
>> Take care,
>> Floyd
>>
>>
>
> Netbeans is the only IDE I've used, but I have to say, it does what I
> need with a minimal of fuss. It has great integration with SVN (via a
> downloadable plugin if you're unfortunate enough to still be using
> Windows to develop) and the only slowdowns I've seen were where the SVN
> server was difficult to reach.
>
> I like the fact that it has good front-end integration too, and not only
> recognises and code hints for those, but it also recognises things like
> jQuery.
>
> Also, it can automatically insert phpDoc comments with a prompt, which
> makes it easy to produce standard project documentation.
>
> Aside from Netbeans, Kate as a text editor is very good. It's part of
> the KDE package, and you can get it on Windows as well (although not
> sure about MacOS)
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>
Another cool thing about Netbeans is that it can connect to a bugzilla service
and you can view bug reports right within the IDE. Where's the phpDoc comments
ability? I haven't run across that yet.
Thanks!
Floyd
--- End Message ---
--- Begin Message ---
I currently use Netbeans and definitely has been the tool I've adopted. I
like the features and plugins which make the work less stressful. I like
the integration of several tools as well, which make Netbeans a 1-stop shop,
so to speak. I use x-debug for debbugging and mercurial for versioning and
I love working with Netbeans with these tools integrated. I do, however,
notice that after I've been working on a project for at least 4/5 days,
Netbeans begins to get a bit "slow". But I attribute it to the number of
files in the project, mercurial and my box which has only 1GB of ram.
I've also used Zend and Komodo. Komodo I liked allot, but Netbeans stole me
away from it. Zend is excellent but the price-tag forced me to go with
Netbeans.
--------------------------------------------------
From: "Floyd Resler" <fres...@adex-intl.com>
Sent: Wednesday, October 13, 2010 2:09 PM
To: "PHP" <php-gene...@lists.php.net>
Subject: Re: [PHP] Eclipse, Komodo, Netbeans, Zend Studio, PHP Storm, other?
On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
I'm about to do a lot of work on an existing code base and I think I'd
like to try an IDE. I currently use VIM for most editing.
What IDE are you using?
What do you like about the one you are using?
Which ones have you tried?
Mike
Good question. I've tried Zend Studio Beta 8, Eclipse, Komodo, and
Netbeans on my MacBook Pro. Netbeans is probably the only one that I
haven't gotten very frustrated with. They are all very good but
eventually all but Netbeans starts to grind to a halt. I love the layout
of the Eclipsed-based ones and would love to use Zend Studio or Eclipse.
But, when I spend more time waiting for the busy cursor to go away than
coding, those nice tools don't do me any good!
That being said, does anyone else use a Mac and have similar problems?
Take care,
Floyd
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
On Wed, 2010-10-13 at 14:31 -0400, Floyd Resler wrote:
> On Oct 13, 2010, at 2:20 PM, Ashley Sheridan wrote:
>
> > On Wed, 2010-10-13 at 14:09 -0400, Floyd Resler wrote:
> >
> >> On Oct 13, 2010, at 12:58 PM, Hansen, Mike wrote:
> >>
> >>> I'm about to do a lot of work on an existing code base and I think I'd
> >>> like to try an IDE. I currently use VIM for most editing.
> >>>
> >>> What IDE are you using?
> >>>
> >>> What do you like about the one you are using?
> >>>
> >>> Which ones have you tried?
> >>>
> >>> Mike
> >>>
> >>
> >> Good question. I've tried Zend Studio Beta 8, Eclipse, Komodo, and
> >> Netbeans on my MacBook Pro. Netbeans is probably the only one that I
> >> haven't gotten very frustrated with. They are all very good but
> >> eventually all but Netbeans starts to grind to a halt. I love the layout
> >> of the Eclipsed-based ones and would love to use Zend Studio or Eclipse.
> >> But, when I spend more time waiting for the busy cursor to go away than
> >> coding, those nice tools don't do me any good!
> >>
> >> That being said, does anyone else use a Mac and have similar problems?
> >>
> >> Take care,
> >> Floyd
> >>
> >>
> >
> > Netbeans is the only IDE I've used, but I have to say, it does what I
> > need with a minimal of fuss. It has great integration with SVN (via a
> > downloadable plugin if you're unfortunate enough to still be using
> > Windows to develop) and the only slowdowns I've seen were where the SVN
> > server was difficult to reach.
> >
> > I like the fact that it has good front-end integration too, and not only
> > recognises and code hints for those, but it also recognises things like
> > jQuery.
> >
> > Also, it can automatically insert phpDoc comments with a prompt, which
> > makes it easy to produce standard project documentation.
> >
> > Aside from Netbeans, Kate as a text editor is very good. It's part of
> > the KDE package, and you can get it on Windows as well (although not
> > sure about MacOS)
> >
> > Thanks,
> > Ash
> > http://www.ashleysheridan.co.uk
> >
> >
>
> Another cool thing about Netbeans is that it can connect to a bugzilla
> service and you can view bug reports right within the IDE. Where's the
> phpDoc comments ability? I haven't run across that yet.
>
> Thanks!
> Floyd
>
>
>
Above a class method for example, just type /** and hit enter, and it
auto fills based on the arguments for that method. It even has a good
pop at getting the correct type for a return object when it returns a
non scaler or array type.
Thanks,
Ash
http://www.ashleysheridan.co.uk
--- End Message ---
--- Begin Message ---
I know this isn't PHP related, but every day I post to this list I get a
message back from "mytr...@mail.ua" <mytr...@mail.ua> which is an
auto-responder.
It is rather annoying, and makes little sense for whoever is using this
service to sign up to a mailing list and not make this service aware of
the mailing list at all.
Please could whomsoever is responsible please try to figure something
out with it. It's ironic, because while it appears to be aimed at
preventing spam, it is actually creating spam for me, and doubtless many
others.
Thanks,
Ash
http://www.ashleysheridan.co.uk
--- Begin Message ---
(see english version below)
(дивіться українську версію нижче)
Я использую антиспам-систему, которая не позволяет принимать письма
от незнакомых отправителей, не внесенных в мою адресную книгу ("белый список"),
поэтому ваше письмо было помещено в папку "Спам".
Для того чтобы переместить ваше письмо в папку "Входящие сообщения",
перейдите по этой ссылке:
http://www.mytrash.mail.ua/confirm/1286994421.H636465P22409.mx.mail.ua
После этого ваш адрес будет автоматически добавлен в мою адресную книгу,
и вы сможете отправлять мне письма с адреса "Ashley Sheridan"
<a...@ashleysheridan.co.uk>
без дополнительных проверок.
Вы также можете отправлять мне сообщения в любой момент с моей персональной
страницы:
http://www.mytrash.mail.ua
Спасибо за понимание,
sender owner mytr...@mail.ua
-------------------------- english -------------------------------
Confirmation is required to send your message to mytr...@mail.ua
My antispam system detected your message as possible SPAM,
because your address is not listed in my address book ("white list").
To confirm that your message is not a spam, please open the following link:
http://www.mytrash.mail.ua/confirm/1286994421.H636465P22409.mx.mail.ua
After that your address will be automatically added into
my address book and you will be able to send me messages from
"Ashley Sheridan" <a...@ashleysheridan.co.uk> without any additional checks.
You can also use my personal webpage and send me a message anytime:
http://www.mytrash.mail.ua.
Thank you,
sender owner mytr...@mail.ua
-------------------------- українська -------------------------------
Потрібне підтвердження відправки Вашого листа для mytr...@mail.ua
Я використовую антиспам-систему, яка не дозволяє приймати листи
від незнайомих відправників, не внесених у мою адресну книгу ("білий список"),
тому ваш лист був поміщений у папку "Спам".
Для того, щоб перенести ваш лист до "Вхідних повідомлень",
перейдіть по цьому посиланню:
http://www.mytrash.mail.ua/confirm/1286994421.H636465P22409.mx.mail.ua
Після цього ваша адреса буде автоматично додана в мою адресну книгу,
і ви зможете відправляти мені листи з вашої адреси "Ashley Sheridan"
<a...@ashleysheridan.co.uk>
без жодних додаткових перевірок.
Ви також можете відправляти мені повідомлення в будь-який момент з моєї
персональної сторінки:
http://www.mytrash.mail.ua.
Дякую вам за розуміння,
sender owner mytr...@mail.ua
--- End Message ---
--- End Message ---
--- Begin Message ---
I get the same thing but wrote it off as someone's autoresponder. I didn't
check the email address.
Regards,
-Josh
____________________________________
Joshua Kehn | josh.k...@gmail.com
http://joshuakehn.com
On Oct 13, 2010, at 2:52 PM, Ashley Sheridan wrote:
> I know this isn't PHP related, but every day I post to this list I get a
> message back from "mytr...@mail.ua" <mytr...@mail.ua> which is an
> auto-responder.
>
> It is rather annoying, and makes little sense for whoever is using this
> service to sign up to a mailing list and not make this service aware of the
> mailing list at all.
>
> Please could whomsoever is responsible please try to figure something out
> with it. It's ironic, because while it appears to be aimed at preventing
> spam, it is actually creating spam for me, and doubtless many others.
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>
>
> From: "mytr...@mail.ua" <mytr...@mail.ua>
> Date: October 13, 2010 2:28:04 PM EDT
> To: "Ashley Sheridan" <a...@ashleysheridan.co.uk>
> Subject: Требуется подтверждение отправки Вашего письма для mytr...@mail.ua
> Reply-To: "mytr...@mail.ua" <mytr...@mail.ua>
>
>
> (see english version below)
> (дивіться українську версію нижче)
>
>
> Я использую антиспам-систему, которая не позволяет принимать письма
> от незнакомых отправителей, не внесенных в мою адресную книгу ("белый
> список"),
> поэтому ваше письмо было помещено в папку "Спам".
>
> Для того чтобы переместить ваше письмо в папку "Входящие сообщения",
> перейдите по этой ссылке:
> http://www.mytrash.mail.ua/confirm/1286994421.H636465P22409.mx.mail.ua
>
> После этого ваш адрес будет автоматически добавлен в мою адресную книгу,
> и вы сможете отправлять мне письма с адреса "Ashley Sheridan"
> <a...@ashleysheridan.co.uk>
> без дополнительных проверок.
>
> Вы также можете отправлять мне сообщения в любой момент с моей персональной
> страницы:
> http://www.mytrash.mail.ua
>
> Спасибо за понимание,
> sender owner mytr...@mail.ua
>
>
> -------------------------- english -------------------------------
>
> Confirmation is required to send your message to mytr...@mail.ua
>
>
> My antispam system detected your message as possible SPAM,
> because your address is not listed in my address book ("white list").
>
> To confirm that your message is not a spam, please open the following link:
> http://www.mytrash.mail.ua/confirm/1286994421.H636465P22409.mx.mail.ua
>
> After that your address will be automatically added into
> my address book and you will be able to send me messages from
> "Ashley Sheridan" <a...@ashleysheridan.co.uk> without any additional checks.
>
> You can also use my personal webpage and send me a message anytime:
> http://www.mytrash.mail.ua.
>
> Thank you,
> sender owner mytr...@mail.ua
>
>
> -------------------------- українська -------------------------------
>
> Потрібне підтвердження відправки Вашого листа для mytr...@mail.ua
>
>
> Я використовую антиспам-систему, яка не дозволяє приймати листи
> від незнайомих відправників, не внесених у мою адресну книгу ("білий список"),
> тому ваш лист був поміщений у папку "Спам".
>
> Для того, щоб перенести ваш лист до "Вхідних повідомлень",
> перейдіть по цьому посиланню:
> http://www.mytrash.mail.ua/confirm/1286994421.H636465P22409.mx.mail.ua
>
> Після цього ваша адреса буде автоматично додана в мою адресну книгу,
> і ви зможете відправляти мені листи з вашої адреси "Ashley Sheridan"
> <a...@ashleysheridan.co.uk>
> без жодних додаткових перевірок.
>
> Ви також можете відправляти мені повідомлення в будь-який момент з моєї
> персональної сторінки:
> http://www.mytrash.mail.ua.
>
> Дякую вам за розуміння,
> sender owner mytr...@mail.ua
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
2010/10/13 Ashley Sheridan <a...@ashleysheridan.co.uk>
>
> I know this isn't PHP related, but every day I post to this list I get a
> message back from "mytr...@mail.ua" <mytr...@mail.ua> which is an
> auto-responder.
>
> It is rather annoying, and makes little sense for whoever is using this
> service to sign up to a mailing list and not make this service aware of the
> mailing list at all.
>
> Please could whomsoever is responsible please try to figure something out
> with it. It's ironic, because while it appears to be aimed at preventing
> spam, it is actually creating spam for me, and doubtless many others.
I'll drop them from the list if I get the chance later. If I
don't, and you keep getting them, bitch at us on the webmaster list
(php-webmas...@lists.php.net).
--
</Daniel P. Brown>
Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting
(866-) 725-4321
http://www.parasane.net/
--- End Message ---
--- Begin Message ---
> -----Original Message-----
> From: Thijs Lensselink [mailto:d...@lenss.nl]
> Sent: Tuesday, October 12, 2010 9:26 PM
> To: php-gene...@lists.php.net
> Subject: Re: [PHP] Zend studio location Cross-Domain
> Scripting Vulnerability
>
> On 10/13/2010 12:19 AM, Daevid Vincent wrote:
> > http://80vul.com/Zend%20studio/Zend%20studio%20location%20Cross.htm
> >
> > Interesting. A co-worker and I were JUST noticing how our
> PHPDoc comments
> > were being parsed pretty much verbatim including<b> tags
> and links and
> > stuff and thought, "wow, that's stupid, that's just a XSS
> or injection
> > waiting to happen". LOL. Guess someone's ears were burning. ;-)
> >
> >
>
> Why didn't you inform Zend before you went full disclosure?
>
> It's a nasty bug though!!
You misunderstand. *I* did not write that web page. It was just coincidence
that *I* encountered the same thing the other day and then someone on
Reddit posted that URL. That's all. Timing.
Thought I'd share with the PHP community here though since many of us use
Zend (and perhaps PDT and Aptana have the same issue?)
d
--- End Message ---