[PHP] Adianti Framework is released

2012-12-18 Thread Pablo Dall'Oglio
Hi folks, Adianti Framework (www.adianti.com/tools) is a project being developed since 2007 by Adianti Solutions Ltd. The framework creator, Pablo Dall'Oglio says that the central idea of the framework is making agile the developement of enterprise applications. To do that, the framework has many

[PHP] Apache module PHP 5.3 on Windows

2009-07-01 Thread Pablo Viquez
Hi, I just downloaded the new stable version of PHP 5.3 and I couldnt find the php5apache2_2.dll file. Is the apache module on windows no longer supported? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Apache module PHP 5.3 on Windows

2009-07-01 Thread Pablo Viquez
Sorry my mistake, I was looking in the wrong built. Thank you! - Original Message - From: Adam Shannon a...@ashannon.us Newsgroups: php.general To: Jonathan Tapicer tapi...@gmail.com Cc: Pablo Viquez pviq...@pabloviquez.com; php-general@lists.php.net Sent: Wednesday, July 01, 2009 5

[PHP] problem with string floats in PHP

2007-05-15 Thread Pablo Luque
Hello, Im designing a website in which I have to read some data (numbers) from a txt file and then send this data to a function which prints a graphic with them. When I read the data I save it in an array and the numbers are in this format: 5.812E-08. I have read the php documentation about it,

[PHP] About exec function

2007-03-13 Thread Pablo Luque
Hello, I'm designing a website with php and the critical point of the design is to execute a program in the server, so after execution is finished, server will show the client some data and info. The program is called pspice, which analizes electronic circuits, works in msdos and in order to

Re: [PHP] Programacion orientada a objetos

2007-01-31 Thread Juan Pablo Herrera
HI Jairo! This is a list only in english. Please, check other list in spanish. Esta es una lista en inglés. Por favor, verificá otras listas en español. JP On 1/31/07, Jairo Torres [EMAIL PROTECTED] wrote: Señores buenas tardes. Tienen un buen ejemplo o manual para programación orientada a

[PHP] Script to generate a site thumbnails

2007-01-17 Thread Pablo L. de Miranda
Hi People, I'm needing a script that generate a site thumbnail from a given URL. Anybody can help me? Thanks, -- Pablo Lacerda de Miranda Graduando Sistemas de Informação Universidade Estadual de Montes Claros [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Problem with require_once

2006-04-07 Thread Pablo L. de Miranda
' not found in /home/pldm/projetos/egressos/src/controller/Controller.php on line 27 But, the file that I pass to require_once exist in the server... If someone know the problem, please sende a answer... Thank you, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] PHP Book Recommendation

2006-04-07 Thread Pablo L. de Miranda
Man, Anothers good books: - PHP|Architect's Guide to PHP Design Patterns, ISBN: 0973589825 - PHP 5 Objects, Patterns, and Practice, ISBN: 0973589825 On 4/8/06, Jim Lucas [EMAIL PROTECTED] wrote: Paul Goepfert wrote: Hi all, Can anyone tell me a good php book to buy. I already

RE: [PHP] Using the echo tag...

2005-11-07 Thread Pablo Gosse
, is the fact that you're trying to output $_SERVER['PHP_SELF'] within your heredoc syntax, without wrapping it in curly braces. It should be: {$_SERVER['PHP_SELF']} See http://www.php.net/manual/en/language.types.string.php#language.types.st ring.syntax.heredoc for more info. Cheers, Pablo -- PHP

RE: [PHP] Security Issues - Where to look?

2005-11-07 Thread Pablo Gosse
-Security-Mistakes/ http://phpsec.org/ Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] reg ex help

2005-11-04 Thread Pablo Gosse
;X^%\n#\n'; $bar = substr($foo, 0, strpos($foo, ';')); echo $bar; HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] reg ex help

2005-11-04 Thread Pablo Gosse
) { if (strlen(trim($foo)) 0) { array_push($values, substr($foo, 0, strpos($foo, ';'))); } } HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] extracting foo.bar from path/to/file.php/foo.bar

2005-11-04 Thread Pablo Gosse
[snip] What do I need to do to extract foo.bar from path/to/file.php/foo.bar [/snip] The manual is your friend ;o) http://www.php.net/basename/ HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] protect password?

2005-11-04 Thread Pablo Gosse
'] and $_SERVER['dbpass'] in your scripts. As the first response to your post, not exactly what you were looking for, but much more secure than plain text or even simple include files. HTH. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] protect password?

2005-11-04 Thread Pablo Gosse
[snip] pablo... i fail to see how your suggestion is much more secure than placing the user/passwd information in a file that's outside the web access space, and then including the file. in either case, the user wouldn't be able to read the include file. [/snip] Greeting, Bruce

[PHP] private properties problem

2005-10-21 Thread Pablo Godel
member which holded the value 10. But when trying to access this value from the parent class, it is not there. I think PHP should notify of the problem but it is not doing so. I have my error reporting level on E_ALL. Any ideas? Pablo Godel -- PHP General Mailing List (http://www.php.net

[PHP] Regex Help

2005-09-28 Thread Pablo Gosse
the start print and end print comments. Can anyone lend a hand or give some advice? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regex Help

2005-09-28 Thread Pablo Gosse
Greetings folks. Thanks Murray and Philip for the quick responses. Adding the /s modifier worked perfectly. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Fwd: [PHP] Error Handling

2005-09-09 Thread Pablo M. Rivas
) ? // error handling test try{ $test = 1; echo $test1 } Ooppsss You're missing a ; yoy might: echo $test1; } Good luck -- Pablo M. Rivas. http://www.pmrivas.com http://www.r3soft.com.ar --- -- PHP General Mailing List (http

[PHP] enabling OpenSSL and curl for PHP on IIS

2005-08-24 Thread Pablo Gosse
, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] enabling OpenSSL and curl for PHP on IIS

2005-08-24 Thread Pablo Gosse
On Wed, 2005-08-24 at 14:05 -0400, Marco Tabini wrote: On 8/24/05 11:39 AM, Pablo Gosse [EMAIL PROTECTED] wrote: Can anyone give any insight into what might be going wrong here? I think you just need to move your php.ini file to C:\WINDOWS... PHP is looking for it there. Cheers

Re: [PHP] enabling OpenSSL and curl for PHP on IIS

2005-08-24 Thread Pablo Gosse
On Wed, 2005-08-24 at 23:30 +0200, Edin Kadibasic wrote: Pablo Gosse wrote: I've tried that and that just results in PHP grinding to a halt. Any requests to PHP pages simply result in Document contains no data errors. Have you added c:\php to your system PATH? Edin Yup. c:\php

Re: [PHP] exec ping

2005-08-21 Thread Juan Pablo Herrera
On 8/21/05, Jasper Bryant-Greene [EMAIL PROTECTED] wrote: Juan Pablo Herrera wrote: Thanks Jasper, well, i need make a explode of results of the ping. The idea is check a host and when the host don´ t response send a email. I don't explode the result of the ping. If it was me, I'd try

[PHP] exec ping

2005-08-20 Thread Juan Pablo Herrera
Hi all! I have following script: $comando = system('ping 168.192.0.1', $nn); echo $nn; Well, i need that only show the first ten lines of the ping and kill the process. How can i make it? Regards, JP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] exec ping

2005-08-20 Thread Juan Pablo Herrera
On 8/21/05, Jasper Bryant-Greene [EMAIL PROTECTED] wrote: Juan Pablo Herrera wrote: Hi all! I have following script: $comando = system('ping 168.192.0.1', $nn); echo $nn; Well, i need that only show the first ten lines of the ping and kill the process. How can i make it? If I

[PHP] RE: Problem using Metabase

2005-08-16 Thread Pablo Gosse
, the errors are there. So, the error message I get is only triggered when I specify Access as the database. Does this provide any further insight? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem using Metabase

2005-08-15 Thread Pablo Gosse
setup error: $error\n; exit; } $db-SetDatabase(etrakADB); Does anyone have any idea why I might be getting this error? As I said I'm using the sample code exactly as it is in the tutorial, and am not calling the metabase_manager_odbc_class myself. Cheers and TIA, Pablo -- PHP General

[PHP] RE: Problem using Metabase

2005-08-15 Thread Pablo Gosse
be wrong ...) we likely didn't install one. Thanks, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] RE: Problem using Metabase

2005-08-15 Thread Pablo Gosse
be wrong ...) we likely didn't install one. [/snip] Sorry, I meant to say that we likely DO NOT have a cache extension installed. Can anyone think of any other reason why the order in which the class files are loaded would be changed on one server to the next? Cheers and TIA, Pablo -- PHP General

RE: [PHP] header redirect not working

2005-08-13 Thread Pablo Gosse
to contain. It's redirecting to the correct domain, just the incorrect page. Thanks, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] header redirect not working

2005-08-13 Thread Pablo Gosse
, but is not for some reason, unless I add that line of code after it. I know the form is validating since the event is deleted, since, well, it is deleted, and there is no form id appended to the url when it is redirected. Any other ideas? Thanks, Pablo -- PHP General Mailing List (http://www.php.net

[PHP] PHP, MS Access Transactions

2005-08-13 Thread Pablo Gosse
and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] header redirect not working

2005-08-12 Thread Pablo Gosse
help. This one hurt my brain this afternoon. Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Feedback on the various PHP-MVC implementations

2005-06-15 Thread Pablo Gosse
they look like on the surface. If anyone here has any direct experience with either of the above frameworks, or with any other stable, mature frameworks please let me know. Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] mozilla urlencode

2005-06-04 Thread Pablo Gosse
of a bookmark. So perhaps IE compensates for this, but Mozilla reads the bookmark as looking for a name=4/a because of the #4 at the end of the bookmark name. HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and SSH

2005-05-19 Thread Pablo Gosse
to give to my sysadmin? Anyone have any opinions? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] html editor written in PHP

2005-05-18 Thread Pablo Gosse
, since there would be no client-side functionality to respond to any action by the user. If I'm somehow being incredibly obtuse here and have misconstrued your question, I apologize. However I think that what you're thinking about just isn't possible. Cheers, Pablo -- PHP General Mailing List

[PHP] array_diff odities

2005-05-18 Thread Pablo Gosse
and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Exec don't work

2005-05-10 Thread Juan Pablo Herrera
Hi! I using php version 4.3.10. I have a script that used the exec function. Well it script only work from shell, but not work form web browser. My php.ini: safe_mode Off Off safe_mode_exec_dir no valueno value Have somebody experience in this problem? Regards, JP -- PHP

[PHP] Php defense

2005-04-22 Thread Pablo D Marotta
, it could help me too. Thanks in advance!! Pablo American Express made the following annotations on 04/22/05 06:58:25 -- ** This message and any

[PHP] Apache - IIS Migration

2005-04-18 Thread Pablo D Marotta
files, and then copy the php files) Thank you all! Pablo American Express made the following annotations on 04/18/05 14:09:05

RE: [PHP] Simple Problem

2005-04-12 Thread Pablo Gosse
the where clause to: WHERE products.userID = $userID AND users.userID = $userID and this will force the query to limit results to those records in products that have a matching record in the users table. HTH. Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Displaying Time Intervals

2005-04-07 Thread Pablo Gosse
in a single session, since that would need to be displayed as 00:00:30. Is there an existing class that provides such functionality, or should I just write one myself? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] upload image file to my server

2005-03-31 Thread Pablo M. Rivas
encontro ninguna coincidencia. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Pablo M. Rivas. http://www.pmrivas.com http://www.r3soft.com.ar --- -- PHP General Mailing List

RE: [PHP] HTML meta tag and PHP

2005-03-29 Thread Pablo Gosse
not working. meta http-equiv=Refresh content=0; url=registration.php?step=4userId=%php echo trim($_POST[userid]); % Is how it needs to be to work. HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] HTML meta tag and PHP

2005-03-29 Thread Pablo Gosse
userId. It should be: meta http-equiv=Refresh content=0; url=registration.php?step=4userId=%php echo trim($_POST[userid]); % Pablo. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP4 and PHP5 in virtual Host

2005-03-25 Thread Juan Pablo Herrera
Hi! I have apache, php4 and php5 on my server. I use virtual host in this server. The virtual host have or not PHP4 using: php_admin_flag engine off/on in apache2.conf How can i use PHP5 or PHP4 or both? PHP4 is running as module and PHP5 is running as cgi. Regards, JP -- PHP General Mailing

[PHP] Test Send

2005-03-25 Thread Juan Pablo Herrera
I can't send email. Right? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP4 and PHP5 in virtual Host

2005-03-24 Thread Juan Pablo Herrera
Hi! I have apache, php4 and php5 on my server. I use virtual host in this server. The virtual host have or not PHP4 using: php_admin_flag engine off/on in apache2.conf How can i use PHP5 or PHP4 or both? PHP4 is running as module and PHP5 is running as cgi. Regards, JP -- PHP General Mailing

[PHP] PHP Compiler for .NET platform

2005-03-18 Thread Pablo Gosse
Hey folks. Has anybody played with this the PHP compiler for .NET, Phalanger? http://www.php-compiler.net/ I'd be interested to hear of any experiences people have had using this. Cheers, Pablo -- Pablo Gosse Webmaster, University of Northern

Re: [PHP] a better way for the array

2005-02-18 Thread Pablo M. Rivas
, Merlin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Pablo M. Rivas. http://www.pmrivas.com http://www.r3soft.com.ar --- -- PHP General Mailing List (http://www.php.net

Re: [PHP] help me

2005-02-18 Thread Pablo M. Rivas
List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Pablo M. Rivas. http://www.pmrivas.com http://www.r3soft.com.ar --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Mssql Connection

2005-01-19 Thread Pablo D Marotta
/FONT /DIV ?php exit (0); } return $conexion; } Thanks!! Pablo American Express made the following annotations on 01/19/05 13:57:56

[PHP] newbie.. $_GET $_POST

2005-01-03 Thread Pablo D Marotta
if there is any way of doing it without showing the variables in the direction bar. Thanks! Pablo American Express made the following annotations on 01/03/05 06:43:25

[PHP] newbie.. $_GET $_POST

2005-01-03 Thread Pablo D Marotta
if there is any way of doing it without showing the variables in the direction bar. Thanks! Pablo American Express made the following annotations on 01/03/05 06:54:38

[PHP] smtp server

2004-12-16 Thread Pablo D Marotta
pc, and then use it for the mail function. What do you think of this idea? Would you recommend any free smtp server currently available? Thanks! Pablo Marotta American Express made the following annotations on 12/16/04 07:43:19

[PHP] Text Parser

2004-12-02 Thread Pablo D Marotta
Hi there.. A newbie issue: I´m receiving this: house , ball , door , roof , floor And I want to obtain this: 'house','ball','door','roof','floor' Maybe, I should use implode or explode, but I just can´t figure out how.. Help? American Express made the following annotations on 12/02/04

RE: [PHP] PHP arrays and javascript

2004-11-26 Thread Pablo Gosse
'] = 'item 1'; myArray['second index'] = 'item 2'; myArray['third index'] = 'item 3'; HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Text Parser

2004-11-24 Thread Pablo D Marotta
, and before the last one. 3) Return that string. Any ideas? Thanks! Pablo American Express made the following annotations on 11/24/04 11:34:02

[PHP] Load testing for PHP Applications

2004-11-10 Thread Pablo Gosse
recommendations? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Session object destruction failed

2004-11-04 Thread Pablo Gosse
, so I'm not overly concerned. I'd just like to know what caused it. Any ideas? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] 'Code Snippets' you couldn't live without

2004-11-03 Thread Pablo Gosse
functions and doing a little something extra with the results to suit your needs, but as for just using asl($val) instead of addslashes($val), well why not just extend the PHP source to make asl() an actual alias to addslashes()? My $0.02 (CDN). Pablo -- PHP General Mailing List (http

RE: [PHP] 'Code Snippets' you couldn't live without

2004-11-03 Thread Pablo Gosse
and easier when creating queries. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PEAR Calendar

2004-11-03 Thread Pablo Gosse
[snip] Greg Beaver wrote: My country is going to Hell [/snip] Don't worry, Greg. It's not really your country as much as it is your president ;o) We hold nothing against you, for you wrote PHPDocumentor! Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] Re: [users@httpd] November 2, 2004

2004-11-02 Thread Pablo Gosse
[snip] This list gets enough traffic as is and a crapload of repeat questions/questions that are easily solved by looking in google or the manual (aka RTFM questions) and we don't need to add politics to it [/snip] And further to this point, people who reply to off-topic posts only further

RE: [PHP] Error Code Airhead

2004-11-02 Thread Pablo Gosse
to the first value, OR if it is not equal to the second value. So with that, the code supplied might well match the first ('D04E') but since that obviously doesn't match the second, it's going to throw the error. HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] Passing marked rows in a table

2004-11-02 Thread Pablo Gosse
will be set to a hidden input field before the form is submitted. HTH. Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Passing marked rows in a table

2004-11-02 Thread Pablo Gosse
[snip] Pablo Gosse wrote: [snip] If the elements all live within the same form, you can add [] to the end of the name/id attribute, and then all checkboxes with the same name will be accessible in an array. So checkboxname[] will show up as $_POST['checkboxname'] on the receiving end

RE: [PHP] Session and validation

2004-10-29 Thread Pablo Gosse
session variables to display the inputs, will now be updated with the error messages. HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Multiple permisions, different sessions.

2004-10-22 Thread Pablo D Marotta
Hi, I´m developing an intranet on Apache-PHP-Mssql. I need to know if there´s any way of managing users to have access to specific areas inside my site, and at the same time, managing other users, giving them permision to acces other areas only, because all of the codes and information I´ve found

RE: [PHP] fputcsv() error message

2004-10-20 Thread Pablo Gosse
[snip] Fatal error: Call to undefined function: fputcsv() in /home/webdev/sites/tracking_site/scripts/report.php on line 19 Is there something that I am missing? The code that I had entered in: [/snip] http://ca.php.net/fputcsv -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Help With Error

2004-10-17 Thread Pablo Gosse
after it is set to see where the problem is: $data = $this-get_cat_coord($child); print_r($data); die(); Take a look at what comprises the $data array and you should find your problem. HTH, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Fatal error

2004-10-16 Thread Juan Pablo Herrera
In your script use set_time_limit(0), and look http://ar2.php.net/manual/en/function.set-time-limit.php for understand the function. Regards, JP Dear members,I get an error,What does mean my error? : Fatal error: Maximum execution time of 30 seconds exceeded in

[PHP] intenger

2004-10-14 Thread Juan Pablo Herrera
Please, i need output a intenger, what function can i use for this?. Print?, echo? Thank you. JP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Referring Page

2004-10-14 Thread Pablo Gosse
appreciated. [/snip] http://ca3.php.net/manual/en/reserved.variables.php#reserved.variables.s erver But be warned, they're not that reliable as some firewalls block/muck with them, and they can also be easily spoofed. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] new connection with pg_pconnect

2004-10-14 Thread Pablo Gosse
users of my CMS were getting logged out for no reason, and yesterday I was finally able to trace it to this. Switched to non-persistent connections and not one error has occurred since, so this might be something to keep in mind. Cheers and HTH, Pablo -- PHP General Mailing List (http

RE: [PHP] new connection with pg_pconnect

2004-10-14 Thread Pablo Gosse
used your code, exactly as it is above (but with my username, password, db and server info) and it works fine. Check your error logs and see if there's anything showing up there and let us know what you find. Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] Form Validation

2004-10-13 Thread Pablo Gosse
Huang, Ou wrote: I am currently working on a newsletter mailing list project and developed a form in php. I would like to validate before it is submitted. What would be the best way to validate a form? Write your own routines or using a form validator. I just started learning PHP, so don't

RE: [PHP] creating a folder in php

2004-10-12 Thread Pablo Gosse
Jay Blanchard wrote: [snip] I want an IDE that will let me speak code into it. Anyone else want anything? [/snip] Laetitia Casta? Email me off list to get delivery instructions. Thanks, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Sessions and Mozilla (Firefox)

2004-10-12 Thread Pablo Gosse
which seemed to answer this. Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Upload problems

2004-10-05 Thread Pablo Gosse
and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Upload problems

2004-10-05 Thread Pablo Gosse
certain it's something on the server side, I thought I'd throw it out in case anyone else might have run up against this. Thanks, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Upload problems

2004-10-05 Thread Pablo Gosse
[snip] Look in your php.ini for max_upload_size or something like it. [/snip] 'Twas an apache problem. Thanks the help. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Memory Usage

2004-10-04 Thread Juan Pablo Herrera
Hi! I need management the use of the memory when a php script is execute. How can i do it?.I know mysql_free_result for free all memory associated with the result, is it all?. Regards, JP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Security Question (from Chris's OSCON 2004 talk)

2004-09-30 Thread Pablo Gosse
sensitive files. Thoughts? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Security Question (from Chris's OSCON 2004 talk)

2004-09-30 Thread Pablo Gosse
webroot, they won't see either the db username or password, nor will they see the path from which I am including sensitive files. Thoughts? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Make cron file

2004-09-28 Thread Juan Pablo Herrera
Hi! I need make a cron file, for example a .job file: #mi hodimeseq jobcomment 45 11** 0-5 php -q /home/test/test.php # Make backup How can make it?. Regards. JP -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Make cron file

2004-09-28 Thread Juan Pablo Herrera
sorry, my cuestion is about the construction of the job file with php. I send parameters via POST: day, hours, minute, sentence for execuite with cron. This is cached for a php file that make the job file. Well, my problem is make this php file.I think to use file() for this, but maybe somebody

RE: [PHP] Loop within Loop help please

2004-09-28 Thread Pablo Gosse
) { if($count is divisible by 20 exactly) { // do some stuff } //do some stuff } ? [/snip] if ($count%20 == 0) http://ca3.php.net/manual/en/language.operators.arithmetic.php in the manual (look for Modulus). HTH. Pablo -- PHP General Mailing List (http://www.php.net

RE: [PHP] php security on shared hosts

2004-09-26 Thread Pablo Gosse
would not be running in safe mode, right? Thoughts? Cheers and TIA, Pablo. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php security on shared hosts

2004-09-26 Thread Pablo Gosse
to browse freely through all the above folders except /home and /root. I'm no security expert so I have to ask, is this indeed normal? Cheers and TIA. Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php upload script problems

2004-09-25 Thread Pablo M. Rivas
/) To unsubscribe, visit: http://www.php.net/unsub.php -- Pablo M. Rivas. http://pmrivas.ipupdater.com http://www.r3soft.com.ar --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problems installing smarty on a shared host

2004-09-25 Thread Pablo Gosse
said up until now I've been lucky enough to always have access to dedicated servers where setting this up was never a problem, but I know there's something I'm missing in understanding why this isn't working. Any help is appreciated. Cheers and TIA. Pablo -- PHP General Mailing List (http

RE: [PHP] Problems installing smarty on a shared host

2004-09-25 Thread Pablo Gosse
such that my scripts can access them, but to protect the directories via .htaccess to prevent direct execution of files from said directories, since my scripts will be including them but are themselves executed from valid locations? Cheers and TIA, Pablo -Original Message- From: Marek

RE: [PHP] Problems installing smarty on a shared host

2004-09-25 Thread Pablo Gosse
, when I attempt the passthru call on /home/virtual/site357/fst/home/ I get no results back, and the return code is 1. So it appears scripts running under the apache user cannot access that folder or anything beneath it Any ideas? Cheers and TIA. Pablo -- PHP General Mailing List (http

RE: [PHP] Problems installing smarty on a shared host

2004-09-25 Thread Pablo Gosse
a permission denied error. So it appears for sure that I can't read anything inside my home directory, or outside the webroot it would seem. Any ideas? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Problems installing smarty on a shared host

2004-09-25 Thread Pablo Gosse
been a problem. Is this a common set up for shared hosting? Is there any way around this? Cheers and TIA, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php security on shared hosts

2004-09-25 Thread Pablo Gosse
and TIA. Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Using '

2004-09-22 Thread Juan Pablo Herrera
Hi! i have: $html = ' html MY HTML /html '; Inside of my html i used ', this produced a parse error, how can i solved it?. Regards, JP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   >