Re: [PHP] RSA implementation

2003-02-21 Thread José León Serna
El jue, 20-02-2003 a las 18:51, Matt Vos escribió:
 So forward the ports (80,443) to a box that u can run a webserver on, then
 you can user SSL.
It's an stand-alone firewall product, it's a box to be placed on a
customer, it's not a custom solution, so I cannot relay on another
machine. I need it for the Firewall Administration Utility ;-)

Regards.


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




Re: [PHP] RSA implementation

2003-02-20 Thread José León Serna
El lun, 17-02-2003 a las 19:17, Matt Vos escribió:
 I don't care what you say, all you need is Secure-Socket-Layer
I know, but I cannot use SSL
 contrary to what you may believe, you don't need a beefy server to implement
 it. I had apache+ssl+php+mysql running quite well on a 486 DX4/100 with 64MB
 ram.
The device running the web server is a firewall, not normal a pc. When I
said, I cannot use SSL meant I cannot use SSL ;-)

Regards and thanks for your help.


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




Re: [PHP] RSA implementation

2003-02-17 Thread José León Serna
El mié, 12-02-2003 a las 16:27, Chris Hewitt escribió:
 Or it could be an MD5 hash.
 Current password hash compared with what is in the database, if OK then 
 store new password hash.
 I'm just suggesting that its possible to use MD5 and not a two-way 
 encryption/decryption. I have no experience of using RSA, I'd have to 
 leave it to others to help.
 I'm not trying to *log the user* this is already done with MD5, what
I'm trying is to allow the user to change it's own password. I need
decryption.

Regards.


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




Re: [PHP] RSA implementation

2003-02-17 Thread José León Serna
El mié, 12-02-2003 a las 18:47, Matt Vos escribió:
 Why not try this:
I'm not trying to log in the user, this is already done with MD5, I'm
trying to allow the user to change its own password, so I need
encryption/decryption.

Regards.


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




Re: [PHP] RSA implementation

2003-02-17 Thread José León Serna
El lun, 17-02-2003 a las 15:33, Jason Sheets escribió:
 If all you are doing is trying to allow a user to change their password
 you do not need decryption, all you need to do is md5 the new password
 and update the database.
And what happens if this MD5 is sniffed? Any one can make a POST again
the login script and authenticate. I don't use SSL, due hardware
restrictions, it's a lightweight server and I need log this way:

-I generate the login script with a random key
-When the user submits the form, the password is encrypted using
javascript this way: sent_pass=md5(entered_pass+random_key).
-This random key is stored on the server, so I can md5 again with the
plain text user password and the random key to authenticate. In any
case (ok or not) I regenerate the random key, so this data is sniffed,
it's not useful

Now I want to enable the user change the password, so I need decription
on the sever, because I need to know the password in plain text.

Regards.



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




Re: [PHP] RSA implementation

2003-02-12 Thread José León Serna
El mar, 11-02-2003 a las 18:49, Chris Hewitt escribió:
 Have you considered using on one-way MD5 hash instead? 
That's how I'm doing it now, but I would like to allow the user to
change it's password, and I want to encrypt it, of course ;-)

The procedure here will be to:

-Encrypt the new password with javascript on the client's browser using
RSA and the public key
-Decode the entered password on the server using the private key

Any idea?

Regards.




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




[PHP] RSA implementation

2003-02-11 Thread José León Serna
Hello:
  I'm looking for an RSA implementation, the ones I have found are
really slow, and I just want to:

generatekey
decrypt

the encryptfunction will be done in javascript, it's for a login system
without SSL.

Regards.


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




[PHP] PHP WSDL Generator??

2002-12-09 Thread José León Serna
Hello:
  I'm looking for a WSDL generator for PHP, it must parse the PHP code
and generate WSDL file from the functions on a source file. Do you know
of any?

Regards.
-- 
XPde :: XP-like desktop environment (developed with Kylix ;-)
http://www.xpde.com





signature.asc
Description: This is a digitally signed message part


RE: [PHP] Creating a report in PHP

2002-12-09 Thread José León Serna
El lun, 09-12-2002 a las 16:39, Jon Haworth escribió:
 Hi Todd,
 
  Is there a report generator that will give me the 
  flexibility to use fonts and fontfaces that works with 
  PHP and MySQL?
 
 I don't know of a PHP-based report generator (although a hunt round
 sourceforge might turn something up), but you can:
After are long, long, long search on the inet, I came to the conclusion
that there is no *decent* report generator for PHP. So I started to
write my own. You can find it at:

http://developer.berlios.de/projects/phpgrid/

I recommend you to use the CVS version, basically is a powerful grid to
make easier the table management and after that, you can use the data
dictionary generated (field names, calculated fields, etc) to generate a
report both in HTML and PDF. It works for my and the company I work for,
I don't know if it will fit your needs, feel free to contact with me for
any question.

Regards.
-- 
XPde :: XP-like desktop environment (developed with Kylix ;-)
http://www.xpde.com

QaDRAM Studio :: RAD development for the Web
http://studio.qadram.com



signature.asc
Description: This is a digitally signed message part


[PHP] ANN: Security Data S.A. releases PHPGrid under GPL license

2002-10-28 Thread José León Serna
Security Data S.A is proud to announce the inmediate availability of
PHPGrid under GPL license. PHPGrid is a PHP object that allows to
browse/add/edit/search/delete records in a database table. Is based on
ADOdb and incorporates features not found on similar products, for
exaple, manage unlimited relationships or allow create calculated
fields. We have designed it for internal use in our intranet, but we
have decided to release it as OpenSource to share it with the PHP
Community and let others contribute to its development.

PHPGrid
http://phpgrid.berlios.de

PHPGrid - Userguide
https://developer.berlios.de/docman/display_doc.php?docid=158group_id=556

Screenshot1
http://phpgrid.berlios.de/shot1.jpg

Screenshot2
http://phpgrid.berlios.de/shot2.jpg

In the next weeks, we will publish an online demonstration and we will
setup the BerliOS website to start collaborative development,
bugtracking and mailing lists, if you want to collaborate, feel free to
contact with us.

About Security Data S.A.
Security Data S.A is a computer security company which produces it's own
integrated security solution, SD3, integrating a hardware Firewall,
Remote Backup and Antivirus, to know more, visit http://www.security.es
and http://portal.securitydata.es.




signature.asc
Description: This is a digitally signed message part


RE: [PHP] Re: PHP XML

2002-10-16 Thread José León Serna

El mié, 16-10-2002 a las 10:22, Joshua Alexander escribió:
 I have to agree with Simon. I am at a loss when it comes to seeing 
 any benefit to XML that doesn't involve data exchange between at 
 least two parties.
 
 I've spent the last two years building database-backed websites, so 
 I'm constantly trying to improve how I build them in order to make 
 design and maintenance easier... I used to rely heavily on SSI for 
 this, and now I rely more on PHP... if XML would make things easier, 
 believe me, I would LOVE to know how... but I just don't see it.
Let's imagine you create a website of an online magazine, this magazine
publishes in HTML, PDF, TXT, PS, etc, etc, etc. How would you do it?

I would use XML to write the articles and then stylesheets to transform
the articles to the formats I want. Write once, publish anywhare ;-)

Regards
-- 
XPde :: XP-like desktop environment (developed with Kylix ;-)
http://www.xpde.com





signature.asc
Description: This is a digitally signed message part


RE: [PHP] Re: PHP XML

2002-10-16 Thread José León Serna

El mié, 16-10-2002 a las 11:02, Simon Taylor escribió:
 Sure in this context I agree with you, but how often do you have a website
 which needs to publish in many different formats? I have designed and built
 websites for a while and have never come across such an application.
 But if I were ever I would definitely invest the effort that is required,
 but until then I will save myself from the extra work.
If you create an intranet (DMS, ISO compliance, etc) for a company, sure
you have to deal with that ;-)

Regards 
-- 
XPde :: XP-like desktop environment (developed with Kylix ;-)
http://www.xpde.com





signature.asc
Description: This is a digitally signed message part


RE: [PHP] Re: PHP XML

2002-10-16 Thread José León Serna

El mié, 16-10-2002 a las 11:13, Joshua Alexander escribió:
 I still wouldn't use XML for this. I mean, all the articles are in 
 the database, and I'm already using PHP to pull them out and format 
 them into html, right? I can just as easily use PHP to put them into 
 all those other formats.
In what format do you have the articles on the database? TXT?
You will need to create a PHP software to format these articles to 
HTML
PDF
TXT
PS

With XML you don't need that, the parser does the hard work for you.

What would it happen if you need another format? You would need to
develop another program (or modify an existing one) to transform your
content to the new format. With XML you just need to add a new XSL.

Of course, XML is not the only solution, but IMO is the easiest.

Regards
-- 
XPde :: XP-like desktop environment (developed with Kylix ;-)
http://www.xpde.com





signature.asc
Description: This is a digitally signed message part


Re: [Fwd: Re: [PHP] Re: PHP XML]

2002-10-16 Thread José León Serna

El mar, 15-10-2002 a las 23:16, Tariq Murtaza escribió:
 Can u elaborate more about ISO standards.
 i mean, if u could explain more about using Xml in DMS with ISO 
 standards with small examples
AFAIK there is no especific request to use XML to be compliant with
ISO standard, the ISO specifies the information must be accesible by
everyone, so XML is the perfect candidate, it was just a sample ;-)

Regards.



signature.asc
Description: This is a digitally signed message part


[PHP] Code management

2002-10-15 Thread José León Serna

Hello, I would like to hear your experience about this matter:

I have a lot of separate scripts and most of them need another script,
for example:

phpgrid
   uses adodb
   uses ldap_rol

phplogin
   uses ldap_rol

And so on, I have a CVS server to store/develop single scripts, but I
want to store them as full solutions, I mean, when I make a checkout I
want to get the full working package, so I have duplicate files. What is
the best way to manage this kind of development?

Regards.



signature.asc
Description: This is a digitally signed message part


[PHP] Accessing serial ports from PHP

2002-10-11 Thread José León Serna

Hello:
   I would like to read and write to serial ports from PHP, is possible? 
if so, how?

Regards.


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




[PHP] Reports with PHP

2002-09-19 Thread José León Serna

Hello:
  What is the best and easiest way to generate reports from PHP? I supose is to 
generate XML and transform later to HTML, PDF or TXT, but is there any PHP library to 
help me create reports with page headers, detail bands, subdetails, summaries and so 
on?.

Regards.



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




[PHP] Report generator

2002-09-13 Thread José León Serna

Hello:
  I would like to know what tools do you use to generate reports from your PHP 
applications. My preferences are:
-Object Oriented
-PDF/HTML Generation

Exists such a tool?

-- 
Best Regards.
--
QaDRAM Studio, RAD development for the web
http://studio.qadram.com



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




Re: [PHP] CRON JOB

2002-07-17 Thread José León Serna

MAAS wrote:

What do I have to do before I can run my file.php as a cron job in Linux?

What problem do you have? I have no problems with it calling it as php 
myfile.php

-- 
Best Regards.
--
QaDRAM Studio, RAD development for the web
http://studio.qadram.com




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




[PHP] Table management insert/update/delete/search

2002-06-13 Thread José León Serna

Hello:
   I'm looking for a script like phpmyAdmin, but much more simple, 
targeted to a single database to offer management capabilities, 
insert/update/delete/search, etc. Do you know of any?

Best regards.



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




Re: [PHP] Table management insert/update/delete/search

2002-06-13 Thread José León Serna

José León Serna wrote:

 Hello:
   I'm looking for a script like phpmyAdmin, but much more simple, 
 targeted to a single database to offer management capabilities, 
 insert/update/delete/search, etc. Do you know of any?

 Best regards.


Sorry, I meant a single 'table', instead a single 'database'.

Regards.



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




Re: [PHP] php IDE for linux

2002-06-04 Thread José León Serna

Hello:
 please tell me a good PHP editor for linux, wich one you prefer.
 or a package for PHP in Xemacs.
I like very much this under linux http://quanta.sourceforge.net/

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




Re: [PHP] PHP_AUTH_USER

2002-06-04 Thread José León Serna

Hello:
 I have a bunch of pages on my site inside an apache .htaccess protected
 directory. After visitors have logged in I am on part of my site I need to
 find out which user it is that has logged in. I thought this information
was
 stored in the $PHP_AUTH_USER variable, but when I print this variable it
is
 empty. Does anyone know of way to tell on apache 7 how to tell with php
who
 is logged in?
AFAIK $PHP_AUTH_USER is used with SSL and certificates. You can use the
visitor ip to know who is, but I think we need more information on what you
want to do.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com



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




Re: [PHP] countries

2002-06-04 Thread José León Serna

Hello:

 Apologies for being slightly OT, but has anyone got an array or list of
 countries that I can use to populate a pull-down menu?
http://phpclasses.warmafrica.com/browse.html/package/406.html
This could be useful.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] Barcodes

2002-05-24 Thread José León Serna

Hello:
I want to generate barcodes in images to be printed, possibly inside
PDF, I have found several solutions, but I'm interested in EAN13 codes, any
help?

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] XML Transformation

2002-05-21 Thread José León Serna

Hello:
I would like to perform XML transformations on my website, I have the
xml file in a string and the xsl file in another string, I have tested
sablotron, but it give me parse and encoding problems. Is there any good
solution out there?

By good I mean portable and reliable solutions, this module is going to be
on a intranet and the xml files are going to be uploaded to be transformed
to HTML.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




Re: [PHP] Re: Debugger

2002-05-13 Thread José León Serna

Hello:
 If there was at least some links on the PHP.net site, that would help
 people to know they're available.

http://www.php.net/manual/en/debugger.php

Regards.


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




[PHP] Browser class

2002-05-03 Thread José León Serna

Hello:

Do you know of any php class/code that acts as a browser? I want to
browse external pages from my website and place the external pages inside my
web as if were own content. I supose must use sockets to get the content and
parse the links inside the page to allow keep browsing inside. Any idea? I
have found several solutions but don't work very well.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




Re: [PHP] Re: PHP Editors

2002-05-02 Thread José León Serna

Hello:
 The big disappointment was QaDRAM Studio, which was so
 buggy and unstable, it only took me until I tried to
 create a project (the first thing I did upon loading
 the software) before it crashed my entire system and
 forced me to reboot. Trying to uninstall it is
 impossible, as well, since when I try to repair,
 remove, or modify it, it proceeds to tell me that it
 can't do any of these on software that isn't
 installed. Go figure, since I installed it about five
 minutes prior. I stayed away from this after about
 thirty seconds. I can only promise these results in
 Win98; any other system, install at your own risk.
It is an unfinished product, I pointed out to let you know its existence,
it's not ready for production at all. Respect the problems you had it really
suprise me, no one of the near 15000 downloads I have had since the
beginning of the product has told me anything similar, so I would like very
much you reproduce the problem and send it to me via e-mail or submit it at
http://bugs.qadram.com to be able to fix it, I would be eternally grateful.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] Ann: QaDRAM Studio PR1 B837

2002-05-01 Thread José León Serna

Hi!
I'm proud to announce the next release of QaDRAM Studio, this is the first
release I can say is usable, where usable means, you can use it as a text
editor, and to build the initial structure of your pages. I say this because
templates are working right now, based on ModeliXe, this support is made
through a plug-in so there will be support for another templates in the
future. Also you can access databases using ADO DB, this support has been
implemented in a set of components, this means there will be support for
another data access components in the future. I have tried not to be tied to
anything, you can setup the project to not use templates at all and generate
a single file like in previous versions. I have put online a really small
tutorial about the use of QaDRAM Studio, it covers the first steps and bit
of JavaScript and databases. You can find the tutorial at
http://studio.qadram.com/tutorial, and the release is available at
http://studio.qadram.com/download.php?op=getitlid=12 and I think it's worth
a download respect the previous version.

Remember you always can help the development of this project spreading the
word about it, speak about it on forums, send messages to a friends, and
tell everyone you know to give it a look. Also you can report any bugs you
find at http://bugs.qadram.com.

Best Regards.




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




[PHP] Re: PHP Editors

2002-05-01 Thread José León Serna

Hello:

 Does anybody know of any PHP project editors,
 something that will group together all the PHP, INC,
 HTML, CSS files together into one logical project?
 Preferrably freeware/shareware, obviously.
Check out QaDRAM Studio at http://studio.qadram.com, you can group together
any kind of file and there's syntax highlighting support for PHP, HTML, CSS
and JS.

Regards.



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




Re: [PHP] Browser cache

2002-04-24 Thread José León Serna

I think the right answer (at least the right for me) is adding a rand value
to the link of the image, that makes the browser load it every time.

Thanks a lot for your help!.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] Execute an external program

2002-04-24 Thread José León Serna

Hello:
I use a W2000+Apache+PHP 4.1.2, and I want to execute an external
command from PHP script, the line is something like this:

psftp.exe [EMAIL PROTECTED] -pw root -b bat.txt

psftp is a secure ftp console program, and the bat.txt file contains all the
necessary commands to get a file from the server and quit the session.

If I execute this line from a console, everything goes well, connects to the
server, gets the file and return to the console, but I'm trying to do the
same from a PHP script in various ways, popen, ` `, exec...

Always is the same, it seems it does nothing, and I'm sure the psftp.exe and
bat.txt files are in the same dir of the script. Also I have created a
console program with Delphi to execute the command, but doesn't work.

Any idea?

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] Browser cache

2002-04-23 Thread José León Serna

Hello:
How could I disable the browser cache?, I have a script that generates
an image and shows it via IMG SRC=myimage. The problem is if I change
the image, the browser doesn't reflect the changes until I push refresh. I
supose is sending a header, but which header?

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] PHPortal anyone?

2002-04-22 Thread José León Serna

Hello:
I've just discovered this php product

   http://dev.4arrow.com

And I would like to know if anyone is using it and his/her opinion.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] PHP Accounting and Ledger??

2002-04-16 Thread José León Serna

Hello:
 Do you know of any accounting/ledger package made with PHP?, I know one
made in perl and a semi-port to php, but I want to know if there is another.

Best Regards.

QaDRAM Studio, RAD Development for the WEB
http://studio.qadram.com


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




[PHP] ANN: QaDRAM Software releases QaDRAM Studio 1 Pre-Release 1 Build 770

2002-04-05 Thread José León Serna

QaDRAM Studio enables Rapid Application Development for Web applications
http://studio.qadram.com

ELCHE, Spain - April 6, 2002 - QaDRAM Software today announced the next
release of QaDRAM Studio 1 for Rapid Web Application Development. QaDRAM
Studio enables web developers to build and debug web applications using
their server scripting language of choice. The current pre-release only
supports PHP, but ASP, Perl, JSP and other languages are also planned.
QaDRAM Studio incorporates an unique plug-in technology to enable
third-party developers to add support for any scripting language. This
release includes some components for you to play with it, it's not still
productive as designer, but it could be useful as editor.

QaDRAM Studio is free for both personal and commercial use, it is not Open
Source, but several parts will be released under an OpenSource license, for
example the QCL (QaDRAM Component Library) and the plug-in SDK that allow
third-parties to add support for another scripting languages.

QaDRAM Studio is a Windows program, but a Linux version is planned after the
final release, so QaDRAM Studio will become the most powerful web
application development platform.

The direct link to download is:
http://studio.qadram.com/download.php?op=getitlid=11

About QaDRAM Software
QaDRAM Software started operation with the purpose to bring RAD techniques
to the web application world. Founded in 2001, QaDRAM Software is
headquartered in Elche, Spain. To learn more, visit http://www.qadram.com





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




[PHP] OpenDir

2002-03-22 Thread José León Serna

Hello:
I would like to use opendir to open a network resource
\\myserver\myresource , I use IIS, I think I have to give the user of IIS
permissions to log on that machine, but do you know how could I do it?.

Regards


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




[PHP] $PHP_SELF on include file

2002-03-20 Thread José León Serna

Hello:
I would like to do the following:

a.php
--

  include b.php;


b.php
--

echo $PHP_SELF;


in b.php, instead show a.php as the script is executing, I want to know if
there's a way to show b.php, that is, the included file is being executed.

Regards.



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




Re: [PHP] $PHP_SELF on include file

2002-03-20 Thread José León Serna

Hello:
 try it with __FILE__
 you might have to work a little on the resulting string, but it at least
 delivers the current file's name
What is __FILE__, a global var, an environment variable? Could you put a
simple example?

Regards and thanks for your quick answer.


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




Re: [PHP] $PHP_SELF on include file

2002-03-20 Thread José León Serna

Hello:
 echo __FILE__;
 will show the current file name
Oops! Thanks! ;-))

Regards.


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




[PHP] Source Code Formatter

2002-03-20 Thread José León Serna

Hello:
   Any of you know about any source code formatter for PHP? I mean a tool to
take a source code and produces an output file with the source code indented
like it must be.

Regards.


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




[PHP] Ann: New QaDRAM Release! B342

2001-07-11 Thread José León Serna

QaDRAM 1.0 FIELD TEST 1 BUILD 342
Hello:
I proud to announce the next release of QaDRAM! You can download it from
http://www.qadram.com in the Downloads section.
In a few days I will publish some samples I have made on the usage of each
object. Feel free to send me any question you have.

The main changes in this release are:
*06/09/2001 - Added a new component TVSShape
*06/10/2001 - Added a new component TVSSysData
*06/11/2001 - Component List added
*06/14/2001 - Added a new component, TVSSpeedButton
*06/14/2001 - New component added, TVSBevel
*06/15/2001 - Added a new component, RadioGroup
*06/15/2001 - Added a new property to HTMLPage, Actions
*06/16/2001 - Added a new component, BitBtn
*06/16/2001 - Added a new component, DrawGrid
*06/25/2001 - Added a new component, StringGrid
*06/25/2001 - Added a new component, Timer
*06/30/2001 - A basic online help added, just select a component on the
palette or in the designer and press F1
*07/02/2001 - Added multi database support on PHP using ADODB
*07/04/2001 - Added almost complete DWS support

DWS Support- Now I support DelphiWebScript, a wonderful scripting language
from http://www.dwscript.com

Best Regards.

QaDRAM, RAD development for the WEB
http://www.qadram.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Any banner system?

2001-07-09 Thread José León Serna

Hello:
I would like to know if there's a PHP Banner system with the following
features:
-Allow insert the banners anywhere
-Advanced statistics page
-Limit on banner impressions/clicks
-Allow users (my customers) to see their banners statistics
-Run on MySQL

Best Regards.

QaDRAM, RAD development for the WEB
http://www.qadram.com

VCLCrawler.com, your VCL search engine
http://www.vclcrawler.com

W2Kwm, Windows 2000 interface for XWindow
http://www.vclcrawler.com/w2kwm/index.htm

ebnoud.com, El Boletín No Oficial de Usuarios de Delphi
http://www.ebnoud.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] How to check the validity of a URL

2001-07-05 Thread José León Serna

Hello:
I would like to know if there's any routine to check if a URL is valid,
my purpose is have all the links on my web in this form:
http://www.myweb.com/checker.php?url=http://www.someurl.com

and if http://www.someurl.com is invalid, redirect the user to a friendly
page and send me a mail.

Is this possible?

Best Regards.

QaDRAM, RAD development for the WEB
http://www.qadram.com

VCLCrawler.com, your VCL search engine
http://www.vclcrawler.com

W2Kwm, Windows 2000 interface for XWindow
http://www.vclcrawler.com/w2kwm/index.htm

ebnoud.com, El Boletín No Oficial de Usuarios de Delphi
http://www.ebnoud.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] search for a better php source code viewer

2001-06-27 Thread José León Serna

Hello:
 try http://astro.phpwebhosting.com/~ttm/
You can access using this address, or http://www.visualphpstudio.com or
http://www.qadram.com

 however I do think, though am not sure, visual Php is available on linex 
windows (I'm using windows)
QaDRAM it's not still available on Linux, according the survey I will finish
the windows version first, and then I will port it to Linux.

Best Regards

QaDRAM, RAD development for the WEB
http://www.qadram.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] ANN:Visual PHP Studio 1.0 Field Test 1 B156 New release!

2001-05-15 Thread José León Serna

Hello:
   The next release of Visual PHP Studio is out!!!.

I have reserved the domain visualphpstudio.com and I have moved the web site
to a new host to avoid some problems with the old one. The most exciting
feature on this release is the ability to work with HTML Forms, a new
palette contains all the components you need to create HTML Forms. Even you
don't like Visual PHP Studio to develop your pages, maybe you could use it
to design your forms, because it's very easy and powerful.

List of changes in Build 156
*04/07/2001 - Removed the useless properties from components
*05/07/2001 - Inserted the pivots to resize the html form
*05/08/2001 - Added Forms palette and basic form design components
*05/08/2001 - Added JavaScript events to all form design components
*05/09/2001 - Cut, Copy  Paste implemented in Designer, Event Editor and
Code Editor
*05/12/2001 - Added Image Field, File Field and Hidden Field to Forms
Palette
*05/15/2001 - The HTML Editor has been improved, but it's not finished yet


What is Visual PHP Studio?
   A tool that combines the component technology with the web design,
JavaScript and PHP, bringing RAD development to PHP. You can download it for
free at http://www.visualphpstudio.com in the downloads section. Feel free
to vote on the survey and post your comments on the forums to let me know
your opinion/ideas. Also download the readme.doc from the downloads section
to know what works and what are the things are going to come.

Best Regards

Visual PHP Studio, RAD development with PHP
http://www.visualphpstudio.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] PHP priviledges

2001-05-09 Thread José León Serna

Hello:
In my host, the php is installed in a way that I have access from a php
script to all the webs on that server, (there are almost 60) and I can
delete/copy any file of other servers. I don't like this because other user
of that server can do the same as I. I have contacted with my host and they
doesn't know how to prevent php/IIS to have access to other directories on
the server, Is this possible?

Best Regards

Visual PHP Studio, RAD development with PHP
http://www.visualphpstudio.f2s.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] ANN: Visual PHP Studio 1.0 Field Test 1

2001-05-07 Thread José León Serna

Hello:
   I'm proud to announce Visual PHP Studio 1.0 Field Test 1, a tool that
combines the component technology with the web design, JavaScript and PHP.
You can download it for free at http://www.visualphpstudio.f2s.com in the
downloads section. Feel free to vote on the survey and post your comments on
the forums to let me know your opinion/ideas. Also download the readme.doc
from the downloads section to know what works on this Field Test 1 and what
are the things are going to come.

Best Regards
---
Visual PHP Studio, RAD development with PHP
http://www.visualphpstudio.f2s.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] ANN:Visual PHP Studio 1.0 Field Test 1

2001-05-07 Thread José León Serna

Hello:
   I'm proud to announce Visual PHP Studio 1.0 Field Test 1, a tool that
combines the component technology with the web design, JavaScript and PHP.
You can download it for free at http://www.visualphpstudio.f2s.com in the
downloads section. Feel free to vote on the survey and post your comments on
the forums to let me know your opinion/ideas. Also download the readme.doc
from the downloads section to know what works on this Field Test 1 and what
are the things are going to come.

Best Regards

Visual PHP Studio, RAD development with PHP
http://www.visualphpstudio.f2s.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] ANN: Visual PHP Studio 1.0 Field Test 1 (Problem Fixed)

2001-05-07 Thread José León Serna

Hello:
Sorry, but I didn't know that f2s.com deletes all the .exe files from
their servers, now I have uploaded a .rar file and it's working. Sorry for
any inconvenience.

Best Regards

Visual PHP Studio, RAD development with PHP
http://www.visualphpstudio.f2s.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Linux Version of Visual PHP Studio

2001-05-07 Thread José León Serna

Hello:
I have received some comments about a Linux Version of Visual PHP
Studio, I have used Delphi 5 to create Visual PHP Studio, so I could use
Kylix to create a Linux version, but I don't know how much people would be
interested, if you are a linux php programmer and you are interested in a
linux version of visual php studio, drop me a mail.Thanks!

--
Best Regards

Visual PHP Studio, RAD development with PHP
http://www.visualphpstudio.f2s.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Free Database Design Program

2001-05-05 Thread José León Serna

Hello:
 Anyone know a Free database Design program? I'm needing to organize my
 MySQL databases and design new databases.
http://www.anse.de/mysqlfront/  MySQLFront is the best!

Best Regards
-
ebnoud.com, El Boletín No Oficial de Usuarios de Delphi
http://www.ebnoud.com
VCLCrawler.com, tu motor de búsqueda de componentes VCL
http://www.vclcrawler.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] MySQL capabilities

2001-04-29 Thread José León Serna

Hello:
Since no one asks my question about access to InterBase from PHP, I'm
considering MySQL ;-)

I would like to know more about the reliability and functionality from PHP
users, I'm going to make searchs on a database with big text in Blob fields.
Right now, in my web (it's made in Delphi) I'm using the Rubicon product to
make searchs on a database and it works really fast, my questions are:
Can I use MySQL to search for a substring in a Memo Field?
Can I tell MySQL to only returns me a subset of results, I mean only 10
results?
How fast is MySQL? I have a database with 11000 records (not too many) but
with a big Memo Field and I want to search for words to show the results
that match the users query.

Best Regards.
-
ebnoud.com, El Boletín No Oficial de Usuarios de Delphi
http://www.ebnoud.com
VCLCrawler.com, tu motor de búsqueda de componentes VCL
http://www.vclcrawler.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Using the php_interbase.dll

2001-04-28 Thread José León Serna

Hello:
I'm relatively new to php and I want to use Interbase instead of MySQL.
I have found a problem loading the module php_interbase.dll , because it
always shows me an error

Unable to load dynamic library 'c:/php/extensions/php_interbase.dll'

I have modified the extension_dir in the php.ini with foreslashes instead of
backslashes, I have searched over the web, in php.net, in the forums, in the
news, and I have only found questions about this, but any solution. The
question is:

How can I load the php_interbase.dll module in W2K Professional, using IIS
5.0 and the latest version of PHP?

Best Regards.

-
ebnoud.com, El Boletín No Oficial de Usuarios de Delphi
http://www.ebnoud.com
VCLCrawler.com, your VCL search engine
http://www.vclcrawler.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]