Re: [PHP] Making several variables into 1 variable

2009-07-28 Thread Bastien Koert
tp://www.php.net/unsub.php > > Use strtotime to convert a text string into a time value that php can then use to figure out a date. $date = date('m/d/y', strtotime("$month/$day/$year"); -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Making several variables into 1 variable

2009-07-28 Thread Bastien Koert
On Tue, Jul 28, 2009 at 10:43 AM, Miller, Terion wrote: > > > > On 7/28/09 9:40 AM, "Bastien Koert" wrote: > > On Tue, Jul 28, 2009 at 10:34 AM, Bob McConnell wrote: >> From: Miller, Terion >> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote: >>

Re: [PHP] Nitro PDF Form Element

2009-07-28 Thread Bastien Koert
. >> >> Williams. >> >> >> >> > I think this is only possible at the time it is created, as the PDF is > entirely separate from your web page, and could very well be opened from > someones desktop. > > Thanks > Ash > www.ashleysheridan.co.uk >

Re: [PHP] Argh Date problems

2009-07-28 Thread Bastien Koert
ritical "; > > //echo "$cviolations "; >        echo "$cleanViolations "; > > echo "$noncritical "; > > > > -- > 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 > > Can't you just explode the string and put it back together in the /MM/DD format that you need? -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Bastien Koert
) > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Hey Teri, Could the return from the db have a space or something in the value? Perhaps If (!empty($row['critical']) && ctype_alnum((int)$row['critical'])) might work -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Bastien Koert
On Fri, Jul 31, 2009 at 10:59 AM, Miller, Terion wrote: > > > > On 7/31/09 9:53 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:28 AM, Miller, > Terion wrote: >> >> >> >> On 7/31/09 8:58 AM, "m0s" wrote: >> >

Re: [PHP] ForEach Range Problems

2009-07-31 Thread Bastien Koert
t; > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > How about '; foreach(range('A','Z') as $c){ ($letter == $c) ? printf('%s ',$c) : printf('%s ',$c,$c); } echo &#

Re: [PHP] ForEach Range Problems

2009-07-31 Thread Bastien Koert
On Fri, Jul 31, 2009 at 1:40 PM, Miller, Terion wrote: > > > > On 7/31/09 12:27 PM, "Bastien Koert" wrote: > > $letter = isset($_GET['letter']) ? $_GET['letter'] :""; > >  echo ''; > >  foreach(range('A',&#x

Re: [PHP] ForEach Range Problems

2009-07-31 Thread Bastien Koert
s $letter) {                               > $menu .= ($letter == $_GET['letter'])                                ? > sprintf('%s ', $letter)                                : sprintf(' href="browse.php?letter=%s">%s ', $letter, $letter);                 >          } >

Re: [PHP] ForEach Range Problems

2009-07-31 Thread Bastien Koert
On Fri, Jul 31, 2009 at 3:10 PM, Miller, Terion wrote: > > > > On 7/31/09 2:00 PM, "Miller, Terion" wrote: > > > > > On 7/31/09 1:56 PM, "Bastien Koert" wrote: > > $letters = ''; > > Nope still gives the same error:  Notice:

Re: [PHP] Need quick got written up yesterday!! OUCH (RESOLVED)

2009-08-04 Thread Bastien Koert
n.ca/1517966 > > I don't get why the $_SERVER['browse.php'] stopped working > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > What is the goal to show when there is nothing chosen (currently result

Re: [PHP] Multiple MySQL Queries

2009-08-04 Thread Bastien Koert
;itemid']} >>      > href="/shop.cgi?c=detail.htm&itemid={$item['itemid']}">{$item['description']} >>      {$price} >>           >>               >>             >>            > /> >>             >>    

[PHP] Need a Linux copy of the php.ini file

2009-08-04 Thread Bastien Koert
Trying to install php at amazon and have a version with no 'dymanic modules'. Does anyone have a list of those modules? I specificially need curl mysql mysqli at this time thanks -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] Re: PHP programming strategy

2009-08-05 Thread Bastien Koert
have an app that allows users to create forms dynamically with a left and right panel section along with some full width plug-in. At a minimum this is built with three nested tables. Here's the really rotten part, the VP (original dev for the display code) screwed a table close up somewh

Re: [PHP] Notification system

2009-08-07 Thread Bastien Koert
t;>> -- made by Dusan >>> >>> -- PHP General Mailing List (http://www.php.net/) >>> To unsubscribe, visit: http://www.php.net/unsub.php >>> >> >> I think you could have some kind if Ajax polling of a php function. To keep >> the traffic down y

Re: [PHP] Re: Question: what are frameworks?

2009-08-09 Thread Bastien Koert
fony has a full ORM layers that handles mapping object to the database layer. Cake, symfony and zend offer features to generate the basic classes for each database table. In all cases the idea of the framework is to abstract the heavy lifting (the common features of developing uploaders, database handlers, forms handling, validation etc) and allowing developers to simply use the framework functionality to handle that, freeing up time to focus on getting the business logic of the application in place. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] reason for a "Notice:.." on one site but not another? (Same code.)

2009-08-09 Thread Bastien Koert
Bastien Sent from my iPod -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending email w/ attachments

2009-08-10 Thread Bastien Koert
t; > Those of you who believe in > telekinesis, raise my hand. >  -- Kurt Vonnegut > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Use PHPMailer or one of the other classes available...makes life so much easier -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Include Paths

2009-08-12 Thread Bastien Koert
Anti-Spam Technologies. >> > www.AccurateAntiSpam.com >> > >> > >> > Wow! > > First off, have you followed the unsubscription details on the website? > > Failing that, have you tried emailing the unsubscribe email address? > It's found in all the email headers that are part of the mailing list. > > And don't shout! > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Thought it was a rap song to the tune of You Can't Touch This -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Re: Re: Design Patterns

2009-08-13 Thread Bastien Koert
[snip]. Cryptic crap does > not mean that you're a clever programmer, it only shows that you don't know > any better. [/snip] I know people like this -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] DB Question | A hotel reservation scenario

2009-08-18 Thread Bastien Koert
ce, > -b > query using the BUSY status as a parameter? But really you haven't given enough to ascertain whether the structure is set to allow this to happen -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Speed Issues PHP vs ASP.net

2009-08-25 Thread Bastien Koert
as workable as taking php to almost any other environment. And really,if you want to learn c# then just go learn java and make it better. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to output a NULL field?

2009-08-25 Thread Bastien Koert
ks! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > $q4 = '' . $rs->Fields(22); Note that it's two single quotes -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php cms?

2009-08-25 Thread Bastien Koert
ards > Lars Nielsen > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Joomla or Drupal are good -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Exclusive File Access

2009-08-26 Thread Bastien Koert
ing the file contents. > > > > How do I make the reading process detect that the file is still being filled > with data in PHP? > > > > Warren Vail > > Vail Systems Technology > > > > lock it with www.php.net/flock -- Bastien Cat, the other other

Re: [PHP] Re: How to output a NULL field?

2009-08-26 Thread Bastien Koert
bscribe, visit: http://www.php.net/unsub.php > > One option then, might be to format the result with SQL using a CASE WHEN THEN statement or ISNULL / IFNULL to set it to empty string -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DB] array field type

2007-03-05 Thread Bastien Koert
another option might be to store xml snippets that match the array. if you are using large numbers of arrays, perhaps a revamping of the db structure to map the arrays to sub-tables might be in order bastien From: Micah Stevens <[EMAIL PROTECTED]> To: Sancar Saran <[EMAIL PROTE

Re: [PHP] Special Characters in a String for Output

2009-08-27 Thread Bastien Koert
ALL special characters that would cause > this output to fail? > > Thanks! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > use htmlentities -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail attachment

2009-09-05 Thread Bastien Koert
RTFM Bastien On Saturday, September 5, 2009, Grega Leskovšek wrote: > How do I attach a file in mail function or do I have to use PEAR (and if how > ...). What are the advantages of PEAR? When do You suggest to use PEAR? > Thanks in advance, > -- Peace refuge: http://users.skavt.n

Re: [PHP] XML. Prevent < from turning into <

2009-09-09 Thread Bastien Koert
http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > str_replace? -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Hoping for a hand with a login script

2009-09-10 Thread Bastien Koert
a from a back simple folder protection should work well and be very simple to implement -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Question: Sorting through table headers?

2009-09-14 Thread Bastien Koert
e it? Sorting and the filtering are relatively simple to implement in JS -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Question: Sorting through table headers?

2009-09-14 Thread Bastien Koert
On Mon, Sep 14, 2009 at 3:57 PM, Bastien Koert wrote: > On Mon, Sep 14, 2009 at 3:29 PM, Marcus Gnaß wrote: >> Tony Marston wrote: >> >>> You cannot do this in a separate class as it requires action in both the >>> presentation (UI) and data access layers,

Re: [PHP] Touch screen programming help

2009-09-21 Thread Bastien Koert
gt; Application and Templating Framework for PHP > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > php|arch magazine had an article about this some years back, search their archives. Its more than possible, but you

Re: [PHP] NULLS vs Empty result in PHP

2009-09-23 Thread Bastien Koert
alues you > need. Just use what it returns. This should work. > > Hope this helps. > ~Philip > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Another thought might be to convert the nulls into another value select field1, field2, ISNULL(field3,'-') from table where ... would convert the nulls into hyphens -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Native support to MS SQL Server

2009-10-09 Thread Bastien Koert
> Would this be a good time to troll about the virtues of MySQL over > MSSQL? :p > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > > It has virtues? -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Native support to MS SQL Server

2009-10-09 Thread Bastien Koert
On Fri, Oct 9, 2009 at 9:11 AM, Ashley Sheridan wrote: > On Fri, 2009-10-09 at 09:06 -0400, Bastien Koert wrote: > > > Would this be a good time to troll about the virtues of MySQL over > > MSSQL? :p > > > > Thanks, > > Ash > > http://www.ashleyshe

Re: [PHP] How to pronounce PHP code over the phone?

2009-10-16 Thread Bastien Koert
gt; Dotan Cohen > > http://what-is-what.com > http://gibberish.co.il > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- Sent from my mobile device Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Spam opinions please

2009-10-20 Thread Bastien Koert
ethod if you can, as it will take quite a load off of > your servers. However, try not to be too liberal with it, as it may end > up preventing genuine access if the spammers are coming from dynamic IP > addresses. > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > >

Re: [PHP] PHP+Apache suddenly not working

2009-10-27 Thread Bastien Koert
php > php5-spl-5.2.11_1   The spl shared extension for php > php5-sqlite-5.2.11_1 The sqlite shared extension for php > php5-tokenizer-5.2.11_1 The tokenizer shared extension for php > php5-xml-5.2.11_1   The xml shared extension for php > php5-xmlreader-5.2.11_1 The xmlreader shared exten

Re: [PHP] Re: Converting tables into forms

2009-10-28 Thread Bastien Koert
ain > when tables are changed or added. > > If your solution requires you to create hundreds of forms, which could > take months to code, you need to take another look at the problem. I > don't believe you have thought it through very well. > > Bob McConnell > > -- >

Re: [PHP] RE: Multiple file upload

2009-11-11 Thread Bastien Koert
; -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > http://articles.sitepoint.com/article/php-gallery-system-minutes -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] is Aptana taking a crap on the face of PHP?

2009-11-12 Thread Bastien Koert
visit: http://www.php.net/unsub.php > > Damn, meant to send to all The issue here is that there are a lot of choices in the PHP space. Eclipse, Aptana, Komodo, Zend, a host of various simpler text editors. Aptana has chosen not to compete in this space and its their choice. Personally, I use NetBeans or Komodo when I require something with a bit of power. The biggest issue with IDEs that I have, is they are so damn slow to start. Some of the smaller text editors are much quicker to start and have most of what I need to do what we all have so much fun doing. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] File To Blob Corruption

2009-11-16 Thread Bastien Koert
p://ancientstones.com  http://earthstones.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Well, I can tell you that mysql really starts to have issues when the image table gets up to around 12Gb in size. And if you

Re: [PHP] Noob question: Making search results clickable.

2009-11-19 Thread Bastien Koert
o use emacs. If you're an emacs > user, you have to use vim. And if you use an IDE, you're stuck with > Microsoft Word. > > Paul > > -- > Paul M. Foster > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Aw, hell, I am already here thenthe only thing missing above was being forced to work in classic ASP -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Bastien Koert
stalled both PHP and MySQL, but not the > php-mysql module, which allows PHP to talk to the database. Depending on > how you installed PHP, there could be a variety of ways to fix this. > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > > Try opening the php.ini file and uncommenting the line ;extension = php_mysql.dll; (by uncommenting i mean remove the first semi-colon). save the file and restart the apache service -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Filtering results via user input

2009-12-08 Thread Bastien Koert
rtion of the statement when adding additional filters into the query, but that is just a guess. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] refuses to complete all queries

2009-12-09 Thread Bastien Koert
quot;Orders successfully Purged! />(Order #'s deleted: {$expired_order_ids_str})"; >  } >  break; > > The works just fine, up until the // UPDATE MYSQL line. I am NOT getting the > $message set, and the orders are NOT being deleted. Only the afy_show gets > updated. Can

Re: [PHP] strtotime - assumptions about default formatting of dates

2009-12-24 Thread Bastien Koert
-year and let US visitors live with it for I > personally think that's a better format. > > Cheers and Merry Christmas. > > tedd > > > -- > --- > http://sperling.com  http://ancientstones.com  http://earthstones.com > > -- > PHP General Mailing Li

Re: [PHP] output buffer

2009-12-29 Thread Bastien Koert
to remove the closing PHP tags '?>' to avoid this problem -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Happy New Year

2009-12-31 Thread Bastien Koert
exited chicks and course exited code > :-D > > Carlos As long as we all don't exit prematurely. ;-P -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Form validation and save the form

2010-01-11 Thread Bastien Koert
On Mon, Jan 11, 2010 at 10:18 AM, Angelo Zanetti wrote: > > > -Original Message- > From: aditya shukla [mailto:adityashukla1...@gmail.com] > Sent: 11 January 2010 05:03 PM > To: Robert Cummings > Cc: Angelo Zanetti; php-general > Subject: Re: [PHP] Form validation and save the form > > Tha

Re: [PHP] I am not receiving any e-mail from the list...

2010-01-11 Thread Bastien Koert
ed servers?  Ask me how we can fit your budget! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Windows, still not ready for the desktop! -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Read directory; store filenames found in mySQL table?

2010-01-13 Thread Bastien Koert
ode("/", $dir); >>  $fileListArr = dirList($dir); >> >>  foreach($fileListArr as $file){ >>        echo $file.""; >>      //Insert file($file) and current dir/path($dir) into db >>  } >> } >> >> >> As an output ...

Re: [PHP] Thinking of moving to .NET because of standalone... any suggestions?

2010-02-03 Thread Bastien Koert
each environment as needed, or go with .Net >> or Java to make it more portable. It might make more sense to convert >> some of your existing PHP code into a different language. > > In many cases I'd agree with you, but the OP indicated they have existing > code/libraries th

Re: [PHP] Persistent flag in memory

2010-02-11 Thread Bastien Koert
nged what in the translation. (This all is > still to be made, but these are the plans). PHP is very flexible so > should be able to do all of this. But I am afraid to go off-topic again. > > Teus. > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubs

Re: [PHP] Linux ERD software

2010-02-18 Thread Bastien Koert
nks, > Ash > http://www.ashleysheridan.co.uk > > > Yep, Mysql Workbench is pretty darn good -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Advice on maintaining public and private files

2010-02-19 Thread Bastien Koert
trol for other users using logins and > passwords. > > Most of my files are just text files and images. Any suggestions? > > Thanks in advance! > > Michael > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Pla

Re: [PHP] Excel Spreadsheets and PHP

2010-02-19 Thread Bastien Koert
t are you using, if anything, to create Excel spreadsheets >> with PHP? >> >> Thank you in advance. >> > > Pear Spreadsheet Excel Writer. > > http://pear.php.net/package/Spreadsheet_Excel_Writer > > > Mike > > -- > PHP General Mailing List (http:

Re: [PHP] Accessing Windows File Comments

2010-02-25 Thread Bastien Koert
ouldn't be hard to open each file and then pull out the contents with regex or str parsing. You might want to store the data somehow, so that in the future you only have to read in the changed files. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.

Re: [PHP] App to put a whole PHP Site in CD/DVD

2010-03-02 Thread Bastien Koert
n, mac ) even better. >> >> Thanks a lot. >> >> Juan >> > > > If you want this sort of setup, then why not go with a live Linux CD/DVD > that has the website on. You can lock the live OS down so that it is in > what's called a kiosk mode, which shoul

Re: [PHP] xoops

2010-03-04 Thread Bastien Koert
rtistic use in your > work. You also agree that your work may be used in the capacity of previous > work, Portfolio, or web examples to showcase our clients, in return for this > usage all links to your URL will always remain in tact and you shall benefit > from the free advertising.

Re: [PHP] Want to learn to work with Zend Framework?

2010-03-05 Thread Bastien Koert
can fit your budget! >> > > > I sometimes wish it were possible. We're still talking about the family > here, and not OSS yeah?! > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > > And no, you may not marry your first cousin. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Database vs. Array

2010-03-16 Thread Bastien Koert
and it's self recovering. Bastien On Tuesday, March 16, 2010, Richard S. Crawford wrote: > I have a script that connects to an external database to process about 4,000 > records. Each record needs to be operated on pretty heavily, and the script > overall takes about half an h

[PHP]Zip and text files generated are corrupted

2010-03-24 Thread Bastien Helders
too much time, the script goes on to the next operation and close the streams uncleanly. But I can't be sure about that, and I don't know where to investigate. Regards, Bastien

Re: [PHP]Zip and text files generated are corrupted

2010-03-24 Thread Bastien Helders
t" of the php.ini file to a higher value help? Actually it is set to 128M. But I actually don't have problems with creating a zip archive of about 250M (~80 folders), it actually occurs with 3 times bigger archives. Best Regards, Bastien 2010/3/24 Ashley Sheridan > On Wed, 2010-03

Re: [PHP]Zip and text files generated are corrupted

2010-03-25 Thread Bastien Helders
add a folder or "zip -d build/Patch-6-3-2_Q3P15.zip software/hotfixes/hfFolder/HF-632Q3-127\*" to delete an unwanted folder returns all with status 2 and no output. 2010/3/24 Richard Quadling > On 24 March 2010 15:19, Bastien Helders wrote: > > Hi Ashley, > > > > N

Re: [PHP]Zip and text files generated are corrupted

2010-03-25 Thread Bastien Helders
Forgot to say, it is the second scenario that generate corrupted zip and text files with unexpected end of files. 2010/3/25 Bastien Helders > So I tested two scenario: > > - First, I gather all the files selected for the patch and then compress > them together and here is what

Re: [PHP]Zip and text files generated are corrupted

2010-03-25 Thread Bastien Helders
in php.ini (or anywhere else) that I could change to permit copy() or exec("zip") to run through without being interrupted? Regards, Bastien 2010/3/25 Bastien Helders > Forgot to say, it is the second scenario that generate corrupted zip and > text files with unexpected end of files

Re: [PHP]Zip and text files generated are corrupted

2010-03-26 Thread Bastien Helders
. I take it that the copy() is interrupted thus explaining the "unexpected end of zip files" (I can open the original patch P14 without any problem). I hope I made myself more clear on the details of my problem. Best Regards, Bastien 2010/3/25 Richard Quadling > On 25 March 2010 1

Re: [PHP]Zip and text files generated are corrupted

2010-03-26 Thread Bastien Helders
ror: Unexpected end of zip file (build/Patch-6-3-2_Q3P15.zip) Which was already known, as the call of copy() on the old patch P14 crop it and thus prevent any operation to be done on it. 2010/3/26 Richard Quadling > On 26 March 2010 08:51, Bastien Helders wrote: > > I've alread

Re: [PHP]Zip and text files generated are corrupted

2010-03-26 Thread Bastien Helders
ails. But if it is not a PHP timeout, what is it? 2010/3/26 Richard Quadling > On 26 March 2010 12:21, Bastien Helders wrote: > > I already used error_reporting and set_time_limit and the use of > > ini_set('display_errors', 1); didn't display more exceptions. >

Re: [PHP]Zip and text files generated are corrupted

2010-03-29 Thread Bastien Helders
quivalent of the php copy() function is the Windows copy command line. In this case, both copy on the big archive and zip -r on a big gathering of folder are running in the shell without any problem and repeatedly. 2010/3/26 Richard Quadling > On 26 March 2010 15:20, Bastien Helders wrote: &g

Re: [PHP] Re: optimizing PHP for microseconds

2010-03-29 Thread Bastien Helders
I have a question as a relatively novice PHP developper. Let's say you have this Intranet web application, that deals with the generation of file bundles that could become quite large (let say in the 800 MB) after some kind of selection process. It should be available to many users on this Intrane

Re: [PHP]Zip and text files generated are corrupted

2010-03-30 Thread Bastien Helders
nterrupted, all the memory taken by it is released. I don't know if I was clear about what I wanted to say... 2010/3/29 Bastien Helders > >I'm not sure. What is the exact command you are using? > > I'll show the code for the two scenario, maybe it'll help. I'v

Re: [PHP] Still searching for a bugtracking system

2010-03-30 Thread Bastien Koert
such one >> (only MySql). >> Any solutions? >> > [...] > > I use Eventum.  So far, so good. > > http://dev.mysql.com/downloads/other/eventum/ > > Works fine with Maria DB too. > http://ca.php.net/manual/en/sqlite.requirements.php shows that sqlite is a par

[PHP] Beginner's question: How to run a PHP web application locally?

2010-04-08 Thread Bastien Helders
What should I need to set my test environment? I'm working on Windows, but I'm all ears for solution on Linux systems. Best Regards, Bastien

Re: [PHP] Basic switch statement

2010-04-15 Thread Bastien Koert
t; > Sorry, should have copied the list try netbeans http://netbeans.org/kb/articles/mac.html -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and schedules tasks/events

2010-04-16 Thread Bastien Koert
tp://www.appointment10.com > > For a quick overview - > http://www.appointment10.com/Appt10_Promo/Overview.html > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Run a cronjob at midnight and send the emai

[PHP] Touch an entry of a zip archive.

2010-05-18 Thread Bastien Helders
Hello list, I wanted to know, is it possible to change the modified time of a specific entry in the ziparchive? Or is it possible to set the modified time of a file when packing the file, so each file preserve its modified time? Best Regards, Bastien

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Bastien Koert
web facing. That removes the need for the web app to hold the encryption key. You can store a hashed value, with the last 4 digits of the card and expiry on the web facing DB for any transaction processing verification. But those transactions should then move into a queue inside the secured network

Re: [PHP] Invoice Software

2010-06-23 Thread Bastien Koert
| http://www.pilotpig.net/ > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > freshbooks.com also handles that if you want to use a service -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Attachment to email from form.

2010-06-25 Thread Bastien Koert
venience.\n\n" >> ."$contact\n\n" >> . "You have submitted the following information\n\n" >> . "Name:  $fname  $lname \n" >> . "E-Mail Address: $email\n" >> . "Comments: $comments\n" >> ; >> mail($to_d,

Re: [PHP] Attachment to email from form.

2010-06-28 Thread Bastien Koert
rd was >> an incendiary racist insult, rhyming with the word "diggers". I was >> stunned that anyone would do such a thing. And I just confirmed it was >> this fellow. >> >> Paul >> >> -- >> Paul M. Foster >> > > > Yes, he did this also to me in a personal reply to a message I'd posted > to the list. > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > > I've gotten a few from him as well. Total PITA! -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Multiple Access Question

2010-07-07 Thread Bastien Koert
gt; > -- > Paul M. Foster > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > @Paul, The OPs question is about concurrency on the record itself. How to avoid two users accessing the same record and pot

Re: [PHP] updating a database

2010-07-14 Thread Bastien Koert
, visit: http://www.php.net/unsub.php > > Are you passing back the id of the record that you want to see as the value for the checkbox? It should be a simple matter then of pulling just that id -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Image Replication

2010-07-20 Thread Bastien Koert
.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Our app runs using a piece of SAN / NAS storage common to all servers -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Signing (hand-written signature) pdf document

2010-07-27 Thread Bastien Koert
r attempt to edit it and add the image in. >> > >> > Thanks, >> > Ash >> > http://www.ashleysheridan.co.uk >> > >> > >> > >> > >> >> -- >> View this message in context: http://old.nabble.com/Signing

Re: [PHP] the state of the PHP community

2010-07-29 Thread Bastien Koert
atives which are floating your boat > right now and that your watching eagerly (or getting involved with)? CodeIgniter 2.0 is cool > > ps: please *do not* flame anybodies answers, that really wouldn't be fair. > > Best & Regards, > > Nathan > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] the state of the PHP community

2010-07-30 Thread Bastien Koert
On Thu, Jul 29, 2010 at 5:19 PM, Nathan Rixham wrote: > Bastien Koert wrote: >> >> On Thu, Jul 29, 2010 at 1:36 AM, Nathan Rixham wrote: >>> >>> Hi All, >>> >>> I find myself wondering about the state of the PHP community (and related >

Re: [PHP] Converting HTML to PDF via PHP

2010-08-04 Thread Bastien Koert
xactly how the output should be displayed (as it's > a presentational format) > > What you could do though, if you're already producing the HTML output, > is to use the FPDF class to create the PDF you need, with appropriate > calls made from within your existing PHP code.

Re: [PHP] [ERROR LOG FORMATTER] - any recommendations for web viewable error log formatters?

2010-08-09 Thread Bastien Koert
, T >> > >> >> Xdebug formats errors, try installing that. >> >> Regards >> Peter >> >> -- >> >> WWW: http://plphp.dk / http://plind.dk >> LinkedIn: http://www.linkedin.com/in/plind >> BeWelcome/Couchsurfing: Fake51 >

Re: [PHP] Encryption/Decryption Question

2010-08-11 Thread Bastien Koert
load the keys into ram on server start up and never have them physically on the machine. Bastien On 8/11/10, tedd wrote: > Hi gang: > > Okay, a question to the Encryption/Decryption gurus out there. > > If you were given: > > 1. This encrypted string: > > p3IVhDBT26i+p4v

Re: [PHP] Storing Social Security Number WAS: Encryption/Decryption Question

2010-08-12 Thread Bastien Koert
data (name, dob, ssn etc) for more security. You could consider storing just the encrypted ssn and link data in a separate database, that would require a different logon to access when the data is required. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Encryption/Decryption Question

2010-08-12 Thread Bastien Koert
On Thu, Aug 12, 2010 at 10:00 AM, tedd wrote: > At 8:09 PM -0400 8/11/10, Bastien Koert wrote: >> >> From my experience, I'd have to say that it would be a real tough go >> to crack that. If there was a weak point in the scheme is that your >> end result pattern (

Re: [PHP] Storing Social Security Number WAS: Encryption/Decryption Question

2010-08-12 Thread Bastien Koert
On Thu, Aug 12, 2010 at 11:32 AM, tedd wrote: > At 10:56 AM -0400 8/12/10, Bastien Koert wrote: >> >> However, the data must be stored in an encrypted format and it must be >> transmitted via SSL. We do it that way (taking both a hash for >> searching for the ssn

Re: [PHP] Looking for open source Learning Management System suggestions

2010-08-31 Thread Bastien Koert
es for > systems like Drupal as well. > > Thanks! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Our company built one on top of wordpress. You can easily build most of it with stock plugins and it has UIs for idevices...worth considering -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Install library

2010-09-17 Thread Bastien Koert
hen there are services like live docs from http://www.livedocx.com/ -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] not able to connect to MySQL

2010-09-20 Thread Bastien Koert
What should I look > for? > > Thanks > MikeB > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > If you gave the priv through phpmyadmin, you might want to try running FLUSH PRIVILEGES to get those new ones to take effect. -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Invalid chars in XML

2010-09-20 Thread Bastien Koert
quote " double quote > greater than < less than you could simply wrap all your data in CDATA tags -- Bastien Cat, the other other white meat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6   7   >