php-general Digest 10 Oct 2011 18:33:16 -0000 Issue 7513

2011-10-10 Thread php-general-digest-help
php-general Digest 10 Oct 2011 18:33:16 - Issue 7513 Topics (messages 315199 through 315211): Re: Need help Wth PHP 315199 by: Rod Lindgren 315200 by: Lester Caine 315201 by: Jeffrin Jose 315203 by: Jen Rasmussen 315204 by: Jen Rasmussen Re: Server

Re: [PHP] Need help Wth PHP

2011-10-10 Thread Lester Caine
Rod Lindgren wrote: Thanks for the link. I am now wondering if Wordpress is available on my server. If it's not, you can add it yourself in much the same way you uploaded the 'profile' for the wordpress site ... http://wordpress.org/download/ Essentially it is just another PHP application, but

RE: [PHP] Need help Wth PHP

2011-10-10 Thread Rod Lindgren
I was able to install Wordpress, but how do I identify the database from the original site? Do I need to change some settings in it somewhere with the authorizations from the new install on the new server? Right now, if you go to the website, a generic page created by the install comes up. I seem

Re: [PHP] Need help Wth PHP

2011-10-10 Thread Lester Caine
Rod Lindgren wrote: I was able to install Wordpress, but how do I identify the database from the original site? Do I need to change some settings in it somewhere with the authorizations from the new install on the new server? Right now, if you go to the website, a generic page created by the

Re: [PHP] Need help Wth PHP

2011-10-10 Thread Jeffrin Jose
there is a file called wp-config.h  in wordpress files mostly located  in the source parent there you can see the database name , username and password. that file also may contain the site url. This way you may be able to identify the database from the original site.  If you do not have wordpress

Re: [PHP] Server Side Include translator as PHP functions

2011-10-10 Thread Tedd Sperling
On Oct 9, 2011, at 7:43 PM, Tommy Pham wrote: On Sun, Oct 9, 2011 at 8:41 AM, Complex complex.confus...@gmail.com wrote: Tedd, The crucial detail you're lookign for is my lack of choice or control in the matter, for all sorts of reasons that are actually quite stupid but not possible for

RE: [PHP] Need help Wth PHP

2011-10-10 Thread Jen Rasmussen
If I remember this correctly ... The database information can be setup/modified only with the install/reinstall. If the DB's are moving to a new server, You have to copy out the databases directly from the DB manager and then do a fresh install of WP. You should also copy out any custom theme

RE: [PHP] Need help Wth PHP

2011-10-10 Thread Jen Rasmussen
Ok, scratch the db info can only be setup/modified with install/reinstall.. Forgot about wp-config.php ...doh! Otherwise, you still need to backup the DBs from old server manually and move them to the new DB manager. I believe I did a fresh install because you also have to update the URL settings

Re: [PHP] Server Side Include translator as PHP functions

2011-10-10 Thread Complex
Ah, well, thanks for the job advice, guys. I'll go looking elsewhere for possible PHP solutions. Or, failing that, continue the build up to actually being able to replace all of this with a company-wide (and hopefully PHP-based) solution. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Multiple SQLite statements

2011-10-10 Thread Tim Streater
I would like to use the SQLite3 (not PDO) interface to SQLite, and I would like to be able to supply a string containing several SQL statements and have them all executed, thus saving the overhead of several calls. It *appears* that this may be how it actually works, but I wondered if anyone

[PHP] Please unsubscribe

2011-10-10 Thread Joao Coelho
I have been sending emails to this list to unsubscribe and i still receive emails. CONFIDENTIALITY NOTICE: This communication with its contents may contain confidential and/or legally privileged information. It is solely for the use of the intended recipient(s). Unauthorized interception,

[PHP] Oi , Portas/ Hello, Ports

2011-10-10 Thread QI.VOLMAR QI
Alguem sabe se, e como eu posso trabalhar com as portas do computador com php no windows? Do someone know if, and how, I could work with Computer logical ports with PHP on Windows? ex: shell_exec('cat /dev/usbmon0 | hexdump'); - Linux

Re: [PHP] Please unsubscribe

2011-10-10 Thread Jim Lucas
On 10/10/2011 8:26 AM, Joao Coelho wrote: I have been sending emails to this list to unsubscribe and i still receive emails. To unsubscribe, visit: http://www.php.net/unsub.php -- Jim Lucas http://www.cmsws.com/ http://www.cmsws.com/examples/ http://www.bendsource.com/ C - (541)

[PHP] Re: Oi , Portas/ Hello, Ports

2011-10-10 Thread Jim Giner
QI.VOLMAR QI qi.vol...@gmail.com wrote in message news:cab7l6ey9rkfwtmprpe0fk3doo5s1c5jyhpnbt5rjj0f_eb5...@mail.gmail.com... Alguem sabe se, e como eu posso trabalhar com as portas do computador com php no windows? Do someone know if, and how, I could work with Computer logical ports with

Re: [PHP] Re: Oi , Portas/ Hello, Ports

2011-10-10 Thread Ashley Sheridan
Jim Giner jim.gi...@albanyhandball.com wrote: QI.VOLMAR QI qi.vol...@gmail.com wrote in message news:cab7l6ey9rkfwtmprpe0fk3doo5s1c5jyhpnbt5rjj0f_eb5...@mail.gmail.com... Alguem sabe se, e como eu posso trabalhar com as portas do computador com php no windows? Do someone know if, and how,

[PHP] Decoding Barcode Images

2011-10-10 Thread Floyd Resler
I've been trying to find a solution for decoding barcode images in PHP but haven't had much luck so far. Does anyone have any suggestions? Thanks! Floyd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Decoding Barcode Images

2011-10-10 Thread Jason Pruim
Jason Pruim li...@pruimphotography.com On Oct 10, 2011, at 2:42 PM, Floyd Resler wrote: I've been trying to find a solution for decoding barcode images in PHP but haven't had much luck so far. Does anyone have any suggestions? Thanks! Floyd Hi Floyd, What kind of barcodes are you

Re: [PHP] Decoding Barcode Images

2011-10-10 Thread Matthew Pounsett
On 2011-10-10, at 14:42, Floyd Resler wrote: I've been trying to find a solution for decoding barcode images in PHP but haven't had much luck so far. Does anyone have any suggestions? I'm not familiar with a way to do it directly in PHP, but you could shell out to something like zbar to do

Re: [PHP] Decoding Barcode Images

2011-10-10 Thread Shaun J. Farrell
zxing has a java commandline app that you can run.. simple to use great results. http://code.google.com/p/zxing/ Shaun www.brewerydb.com On Oct 10, 2011, at 2:47 PM, Matthew Pounsett wrote: On 2011-10-10, at 14:42, Floyd Resler wrote: I've been trying to find a solution for decoding

Re: [PHP] Decoding Barcode Images

2011-10-10 Thread Floyd Resler
On Oct 10, 2011, at 3:54 PM, Shaun J. Farrell wrote: zxing has a java commandline app that you can run.. simple to use great results. http://code.google.com/p/zxing/ Shaun www.brewerydb.com On Oct 10, 2011, at 2:47 PM, Matthew Pounsett wrote: On 2011-10-10, at 14:42, Floyd

Re: Re: [PHP] Re: Oi , Portas/ Hello, Ports

2011-10-10 Thread Tim Streater
On 10 Oct 2011 at 19:30, Ashley Sheridan a...@ashleysheridan.co.uk wrote: Jim Giner jim.gi...@albanyhandball.com wrote: QI.VOLMAR QI qi.vol...@gmail.com wrote in message news:cab7l6ey9rkfwtmprpe0fk3doo5s1c5jyhpnbt5rjj0f_eb5...@mail.gmail.com... Alguem sabe se, e como eu posso trabalhar com

Re: Re: [PHP] Re: Oi , Portas/ Hello, Ports

2011-10-10 Thread Ashley Sheridan
On Mon, 2011-10-10 at 22:15 +0100, Tim Streater wrote: On 10 Oct 2011 at 19:30, Ashley Sheridan a...@ashleysheridan.co.uk wrote: Jim Giner jim.gi...@albanyhandball.com wrote: QI.VOLMAR QI qi.vol...@gmail.com wrote in message

RE: [PHP] Need help Wth PHP

2011-10-10 Thread Rod Lindgren
Thanks for the info. Very helpful. I am working on it. What is it that makes Wordpress valuable? The website in question is really pretty basic. I am trying to figure out the reason Wordpress was used. Rod -Original Message- From: Jen Rasmussen [mailto:j...@cetaceasound.com] Sent:

Re: [PHP] Need help Wth PHP

2011-10-10 Thread Paul M Foster
On Mon, Oct 10, 2011 at 03:58:31PM -0700, Rod Lindgren wrote: Thanks for the info. Very helpful. I am working on it. What is it that makes Wordpress valuable? The website in question is really pretty basic. I am trying to figure out the reason Wordpress was used. It allows the site owner

Re: [PHP] Multiple SQLite statements

2011-10-10 Thread Paul M Foster
On Mon, Oct 10, 2011 at 04:14:00PM +0100, Tim Streater wrote: I would like to use the SQLite3 (not PDO) interface to SQLite, and I would like to be able to supply a string containing several SQL statements and have them all executed, thus saving the overhead of several calls. It *appears*

RE: [PHP] Need help Wth PHP

2011-10-10 Thread Rod Lindgren
I see. There are other ways to do this. If I knew how it works, maybe I could get this site working. I am missing some essential concept here. -Original Message- From: Paul M Foster [mailto:pa...@quillandmouse.com] Sent: Monday, October 10, 2011 7:00 PM To: php-general@lists.php.net

Re: [PHP] Please unsubscribe

2011-10-10 Thread Sharl.Jimh.Tsin
在 2011-10-10一的 08:26 -0700,Joao Coelho写道: I have been sending emails to this list to unsubscribe and i still receive emails. CONFIDENTIALITY NOTICE: This communication with its contents may contain confidential and/or legally privileged information. It is solely for the use of the

Re: [PHP] Need help Wth PHP

2011-10-10 Thread Govinda
I see. There are other ways to do this. If I knew how it works, maybe I could get this site working. I am missing some essential concept here. Rod, this list is about/using PHP especially. There are better lists/forums for getting help with frameworks built from PHP, like e.g. wordpress. I

[PHP] OpenSSL PKCS12 Exporting

2011-10-10 Thread Justin Kaufman
Greetings, I'm having some trouble with exporting pkcs12 certs; I can't seem to find a way to add the CA certificate to the file. I've tried concatenating the signed cert and the CA cert in PEM format and feeding it to openssl_pkcs12_export(), but it's only reading the first certificate in the