On Fri, Oct 31, 2008 at 9:09 AM, Warren Windvogel
<[EMAIL PROTECTED]> wrote:
> Eric Butera wrote:
>>
>> Who says every file will have an extension? Who says they're all .+3
>> chars? When I first started php I tried that and it failed in a lot
>> of places.
On Fri, Oct 31, 2008 at 10:03 AM, Jochem Maas <[EMAIL PROTECTED]> wrote:
> Eric Butera schreef:
>> On Fri, Oct 31, 2008 at 9:09 AM, Warren Windvogel
>> <[EMAIL PROTECTED]> wrote:
>>> Eric Butera wrote:
>>>> Who says every file will have an extensio
On Sat, Nov 1, 2008 at 8:02 PM, Nathan Rixham <[EMAIL PROTECTED]> wrote:
> Feris wrote:
>>
>> Hi All,
>> I noticed that social networking sites can retrieve our contacts using an
>> authenticated session. Is there any open source PHP API to achieve the
>> same
>> thing ?
>>
>> Thanks,
>>
>> Feris
>
On Sun, Nov 2, 2008 at 5:03 AM, Richard Heyes <[EMAIL PROTECTED]> wrote:
>> Open id's really a toy at this point.
>
> Now that MS and Google have signed up it will soon get a lot bigger.
>
> http://news.bbc.co.uk/1/hi/technology/7699320.stm
>
> --
> Richard Heyes
>
> HTML5 Graphing for FF, Chrome,
ble to insert, fetch, and delete entries. However I'm trying to
find out exactly what kind of file this is since the documentation
doesn't tell me what "default" handler it used when creating the file.
thanks,
-eric
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Wed, Nov 5, 2008 at 1:47 AM, Rene Veerman <[EMAIL PROTECTED]> wrote:
> Hi.
>
> I'm trying to build a new admin interface for my cms, in a single screen.
>
> I was thinking to have a tree-view on the left side of that screen,
> something like
> +Site-Name
> + UserGroups and Users (node-type sect
On Thu, Nov 6, 2008 at 5:08 AM, Rene Veerman <[EMAIL PROTECTED]> wrote:
> Thodoris wrote:
>>
>> How are your groups linked with your users? Does every user has a GroupId
>> in his record?
>>
>> Does this question has to do with building an html tree or it is about the
>> best database schema that h
On Thu, Nov 6, 2008 at 5:57 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote:
> On Thu, Nov 6, 2008 at 3:54 PM, Daniel P. Brown
> <[EMAIL PROTECTED]>wrote:
>
>> On Thu, Nov 6, 2008 at 5:51 PM, Kyle Terry <[EMAIL PROTECTED]> wrote:
>> >>
>> > Sorry, I was actually having a conversation about that with Dan
On Fri, Nov 7, 2008 at 8:33 AM, Stan <[EMAIL PROTECTED]> wrote:
> If this is the wrong forum, please point me at the correct forum.
>
> I am new to PHP but have 40 years experience programming.
>
> My initial effort includes a class definition which needs to persist for the
> duration of a WWW ses
On Mon, Nov 10, 2008 at 8:55 AM, <[EMAIL PROTECTED]> wrote:
>
>> I've found that I don't mind a few well organized database calls per
>> page for the information I need.
>
> Opening up a database connection is very expensive.
>
> Sending one more simple / fast query is dirt cheap.
>
> Time it on y
On Sun, Nov 9, 2008 at 3:50 PM, Ashley Sheridan
<[EMAIL PROTECTED]> wrote:
> On Sun, 2008-11-09 at 19:46 +0100, gilles wrote:
>> "Thodoris" <[EMAIL PROTECTED]> a crit dans le message de news:
>> [EMAIL PROTECTED]
>> > O/H Bastien Koert ??:
>> >> 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]>
>
On Mon, Nov 10, 2008 at 11:55 AM, Richard Heyes <[EMAIL PROTECTED]> wrote:
>>> So that's a couple of votes for individual people. What company do they
>>> work for? :-)
>>> We're not looking for "a guy", we're looking for a firm with a good
>>> reputation.
>
> Then you should avoid 1and1 - they'
On Sat, Nov 15, 2008 at 11:21 AM, bruce <[EMAIL PROTECTED]> wrote:
> Hi list...
>
> I need a way of managing users/teams/etc.. implementing roles/access
> rights/privs,etc...
>
> I'd like a way of being able to have users "report to" the resource above
> them, ie, the ability to have a hierarchical
Hi John
If you have a large number of Users using this system, your save map for
sessions will grow in space, using some resources
If it's very large pieces of information, i would advise you to store this
info in a database. That's doomed to be more effective.
Eric
"John
ducts/zend-studio-demos.php
Eric
"John Jensen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello everyone. I am new to PhP and MySQL. I was wondering what a good (Or
> Free) Php Editor is?
>
> --
>
>
> *
Hei Trevor
I have got exactly the same problem, and there doesn't seem to be any
solution to it...
What you could to, is to send a mail to Zend and ask them to implement a
feature that will allow us Zend Studio users to customize this.
Eric
"Trevor Gryffyn" <[EMAIL PROTECTED]
Hi
Here's a little function I made up for this:
$time_limit){
unlink($file);
}
}
}
closedir($df);
}
}
delete_old_files('.');
?>
Hope that's what you need.
Eric
"Yc Nyon" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
&g
I've got a directory structure similar to this:
SiteRootDir
index.php
dirA
index.php
dirB
funcs.php
otherfuncs.php
In the SiteRootDir/index.php, I've got:
require_once( dirB/funcs.php );
in funcs.php, I've got:
require_once( otherfuncs.php );
which works because SiteRoot
For some great information on how to internationalize a PHP
application, I would suggest checking out:
http://us3.php.net/manual/en/ref.gettext.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Exactly the same thing's happening to me!
"Luke" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Me too, and im using the newsgroup, not even the mailing list!! :/
--
Luke
"Craig" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I get one of these for almost every m
At 11:41 AM -0800 2/6/04, Paul Furman wrote:
while ($file = readdir($dh)){
if (strstr ($file, '.jpg')){
$pictures[] = $file;
}
Spotted this problem when staring at your code.
Number of open braces: 2
Number of close braces: 1
You need to close off your while loop.
Should I set
in the scripts where
you need classes, and your work will be a lot more structured.
I personally use this system on my web-site, and it does that i don't have
to be worried about if I am getting the correct classes, because I get them
all through define_classes.inc.php
Eric
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Would advise mysql_fetch_row()
"Angelo Zanetti" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have a query which returns only 1 row, which of the following would be
the
> best to get the value from the resultset:
>
> mysql_result()
> mysql_fetch_field()
> mysql_fetch_row()
>
> th
Some source code would help
"Deependra B. Tandukar" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Dear all,
>
> The script was working perfectly, but all of the sudden since last week
> stopped working, gives Zero Sized Reply. The site is
> http://coremag.net/corex/feedback/fee
ountry_Id.
Now let's say we're at the following file: foo.php?op=clubs&id=9
Now we can run the following query: "SELECT Club_Id, Club_Name, Club_Url
FROM DG3 WHERE Country_Id = {$_GET['id']}".
Here we get all the clubs in France.
I hope this was something helpful.
"Hamid Hossain" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I wants to read some pages throug http call. Then, I am going to parse the
> returned string and do some process.
>
> For example: I want to get the latest news from CNN.com daily. So, I want
to
> call http://www.cnn.com
Headers have to be pretty accurate, or it will cause trouble.
And your redirect header is not quite correct.
It should be this:
header("Location: another_page.php");
and NOT header("Location:another_page.php");
What you need here is a space between "Location:" and the URL.
"Adwinwijaya" <[EMAIL P
At 1:32 PM -0500 2/24/04, Matt Palermo wrote:
Is there a way to check a folder on the server to make sure a specified
folder has write permissions? I'm writing an upload script, but I need to
make sure the user gave the destination directory write permissions before I
can copy the files to the new
At 6:06 PM +0100 3/15/04, Ryan A wrote:
I know this is pretty easy to do but I am horrorable at working with regular
expressions and was wondering if anybody might take a min to help please.
I will have a variable: $the_extention
which will have a value like:98797-234234--2c-something-2c
How
I thought I had a pretty good handle on sessions, but I can't figure
out what could possibly be going wrong in this case. I've stripped my
code down to basically the bear minimum which still reproduces the
problem, which I included below.
When I visit test1.php with the url:
http://domain&path/
Khalid Judeh wrote:
hello all,
i am new to php, i am trying to call the date function this way:
and the result i get is: object18/03/04
any help would be appreciated
hummm...very odd. I did the same thing and got:
19/03/04
Can you provide any more details? What version of PHP is being used?
(
At 1:58 PM -0500 3/19/04, John W. Holmes wrote:
From: "Eric Gorr" <[EMAIL PROTECTED]>
When I visit test1.php with the url:
http://domain&path/test1.php?name=bill&pwd=henry
I see the output:
user = 'bill'
ID= 41699d4461e8fe3a71243bb3cb1c2298'
You were
Ah HA! I knew I wasn't crazy...well, pretty sure... ;-)
I figured out why my sessions were behaving so oddly.
I was accessing test1.php via:
http://ericgorr.net/...
In test1.php, I was then redirecting to test2.php via
http://www.ericgorr.net/...
Apparently, with Mozilla and Safari, php s
Anyone know of a php script that can dynamically build and maintain my own
kind of conf file (like a smb.conf or httpd.conf) but I make up the content.
Thanks,
-Eric Wood
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
in is changed as the relative dir and image links will break.
But my customers really love the progress bar.
-eric wood
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
the title
row, and rows 2 onward are the data. So that I can:
read row 1 into array
print 'FName','LName'
for each row
print_r('FName')."\t".print_r('Phone').'\n';
next row
This would allow me to ignore all the other colums I don&
o be
> looped through often.
> Justin French
Justin,
Your fgetcsv() function was what I was needing. I found this in it notes:
Quick and dirty script to take a csv file and turn it into a
multidimensional associative array structure using the first line of the csv
as the hash key names.
Th
n other folders?
We know a little about UNIX, but not that much. That's our problem.
Would be really happy if anyone could help us out!
Eric Bolikowski
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
"Andy B" <[EMAIL PROTECTED]> skrev i melding
news:[EMAIL PROTECTED]
> Hi.
>
> Is there any GUI editors out there for php? if so does anybody know of a
> good one that doesnt cost a ton of money??
There's a trial for Zend Studio at www.zend.com
Eric
-
hi,
I search a package with all available libraries PEAR in on pack ...
for manual update ...
thanks.
eric
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Gents,
How do I configure my IIS server to parse a specific .html
file for php code? I know how to do this on apache, but windows scares
me :-)
THANKS!
Eric Lindsey
Colorado Information Technologies Inc.
http://www.coinfotech.com <http://www.coinfotech.com/>
sable some more functions, etc). Something similar to Perl's Safe
module
(http://www.cs.usask.ca/resources/documentation/perl/Safe.pm.html). Is
this at all possible in PHP? Can you turn on more safe mode restrictions
on certain bits of code?
Thanks in advance.
--
Eric Dorland
[EMAIL PROTECT
On Wed, 2005-01-26 at 12:41 -0800, Richard Lynch wrote:
> Eric Dorland wrote:
> > We've created our own CMS in PHP and we'd like to allow our users to do
> > more sophisticated things, like embed there own PHP code in pages. We
> > already run in safe-mode with our
interested in possible alternative solutions, I
would like to know how to accomplish this task even if it does not end
up being the solution I use.
--
== Eric Gorr === http://www.ericgorr.net ===
"Those who would sacrifice a little freedom for temporal safety
tring, etc...basically things that streams tend to handle well.
There are probably better functions for dealing with a
string than the ones you have mentioned (fseek is a file pointer).
'like fscanf, fseek'
--
== Eric Gorr === http://www.ericgorr.net
, open the file with fopen and then use fscanf,
fseek, etc. to process the text.
However, I am assuming there is an easier way (i.e. a method without the
file io overhead) to be able to treat the string as a stream.
--
== Eric Gorr === http://www.ericgorr.net ===
Jay Blanchard wrote:
What, exactly, do you want to accomplish?
I want to be able to treat a string as a stream.
For example, the C++ STL contains istringstream, which allows one to
treat strings as streams.
(http://www.cplusplus.com/ref/iostream/istringstream/)
If you are truly wondering w
Jay Blanchard wrote:
However, if I
know what you want to do with the string more specifically (I asked for
examples, which you have not given) I can get you to the right PHP
functions.
I am familiar with all of the PHP string functions.
PHP does not have a class or function similar to
isstri
with isstringstream.
Looks like it wouldn't be terribly difficult to get something like this
up and running.
I was just taking a look at:
http://us3.php.net/manual/en/function.stream-wrapper-register.php
I'm kinda surprised no one has written a wrapper for strings yet...
And there are good reasons why other very intelligent people thought
that including such functionality directly in the C++ STL and many other
libraries was a good idea too.
--
== Eric Gorr === http://www.ericgorr.net ===
"I believe each individual is naturally ent
Jochem Maas wrote:
Eric Gorr wrote:
Jochem Maas wrote:
> http://php.net/manual/en/function.stream-wrapper-register.php is as
close as it gets
I think. - total overkill for manipulating strings IMHO - (me thinks
there is atleast
one other in agreement) - there is a reason php has all th
ut this did not work either.
--
== Eric Gorr === http://www.ericgorr.net ===
"I believe each individual is naturally entitled to do as he pleases
with himself and the fruits of his labor, so far as it in no way
interferes with any other man's rights."
Paul Waring wrote:
On Mon, Aug 08, 2005 at 04:37:12PM -0400, Eric Gorr wrote:
Should it? Is it possible to write a doesexists.php script which would
cause the 404 directive to be triggered?
I also tried: header("Status: 404 Not Found"); but this did not work either.
Try sea
The code is doing exactly what you told it to do.
To make it do what you what you seem to want it to do, get rid of the
nested IFs and place all three tests within a single IF.
--
== Eric Gorr === http://www.ericgorr.net ===
"Government is not reason, it is not e
On 10/22/05, Jochem Maas <[EMAIL PROTECTED]> wrote:
>
> John Nichel wrote:
> > Jay Blanchard wrote:
> >
> >> [snip]
> >>
> >>> I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T
> >>> RIGHT!
> >>> Why is PHP not loading the proper ini file? This is probably the
> >>> source of
> >>>
I was just curious if there was a way to set the return path of an email
dynamically. I've looked around and all I could find was a Zend tutorial
running sendmail from the command line, which I don't want to do. :)
I tried setting "Return-Path:" in the mail() headers, but that didn't seem
to make
On 11/8/05, Richard Heyes <[EMAIL PROTECTED]> wrote:
>
> Eric Butera wrote:
> > I was just curious if there was a way to set the return path of an email
> > dynamically. I've looked around and all I could find was a Zend tutorial
> > running sendmail from the com
ere PHP is back running on
this server?
Thank you
Eric H. Lommatsch
Programmer
MICRONix, Inc.
2087 South Grant Street
Denver, CO 80210
Tel 303-777-8939
Fax 303-778-0378
[EMAIL PROTECTED]
looking at
the httpd.conf is that these statement have an statement
around them. But that is the version of PHP that is installed on this system.
Thank you
Eric H. Lommatsch
Programmer
MICRONix, Inc.
2087 South Grant Street
Denver, CO 80210
Tel 303-777-8939
Fax 303-778-0378
[EMAIL PROTECTED
ex scripts appear not to work.
Thank you
Eric H. Lommatsch
Programmer
MICRONix, Inc.
2087 South Grant Street
Denver, CO 80210
Tel 303-777-8939
Fax 303-778-0378
[EMAIL PROTECTED]
-Original Message-
From: James Benson [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 01, 2005 3:45
Quoting Torgny Bjers <[EMAIL PROTECTED]>:
I recommend Zend Studio if you can afford it since it has a GUI for
both Windows and Linux
And for those interested in using a real computer, it's
GUI also runs under MacOSX.
http://zend.com/store/products/zend-studio/requirements.php
--
PHP General
On 6 Dec 2005, at 19:24, Jay Blanchard wrote:
[snip]
And for those interested in using a real computer,
it's
GUI also runs under MacOSX.
[/snip]
If they are "real" why aren't there more of them?
Far to many people have fallen victim to the deception field emanating from
Microsoft. The only kn
Jason Petersen wrote:
Vim is my editor of preference. If I have to use Windows, I usually go with
Homesite (because I already have a licensed copy) or Textpad (because it's
better than Notepad).
IDEs? Who needs 'em ;)
Who? Anyone who understands just how useful a debugger can be in incre
Quoting Roman Ivanov <[EMAIL PROTECTED]>:
Output text should be correctly formatted without using lots of br's
and 's. Doing so manually is not a problem, I would just use
for web paragraphs, and for book paragraphs.
However, formatting such text with a scrip is very difficult. Does
anyone
Hello,
I'm using the PEAR Validate::email method to validate email addresses on our
contact forms since the spam bots have gotten so bad. I am using the
"check_domain" flag which calls the php function "checkdnsrr." This form
processor is used on several sites now and all is going well except on
Quoting Roman Ivanov <[EMAIL PROTECTED]>:
Eric Gorr wrote:
Quoting Roman Ivanov <[EMAIL PROTECTED]>:
Output text should be correctly formatted without using lots of
br's and 's. Doing so manually is not a problem, I would just
use for web paragraphs, and for boo
On 12/11/05, Christopher Jordan <[EMAIL PROTECTED]> wrote:
>
> Hi folks,
>
> I'm a ColdFusion developer, but I'm branching out into PHP because alot
> of my smaller clients don't want to pay for CF.
>
> Anyway, a bit of background:
>
> I've got a page that does a search on one of my tables.
Hello all,
I have an image gallery script I created and I seem to be having some
difficulties with it. I am using this script on many different platforms
and different PHP versions. I have tried it on 4.4.0 (linux) and
4.3.11(entrophy osx). The problem is with PHP version
4.4.1 from what I can
>
> Could you direct me towards any good resources on general security with
> php/mysql?
>
http://phpsec.org/library/
Make sure to read these:
- data filtering
- sql injection
. . .and all the others in time. =)
echo "Panel: ".$match[0];
> }
>
> The $match array is empty.
>
> Actually looking at the data there are so many typos (imported from
> Excel) that I will probably have to update by hand, but out of
> curiosity now what would be a good regex for the info given?
>
On 2/8/06, Fredrik Tillman <[EMAIL PROTECTED]> wrote:
> Ok here are some code:
> /* Check User Script */
> session_start(); // Start Session
>
> include 'db.php';
> // Convert to simple variables
> $username = $_POST['username'];
> $password = $_POST['password'];
>
> if((!$username) || (!$passwo
PHP List,
Perhaps one of you might know the answer to this, because I certainly do
not, nor do any of my coworkers. The "problem" is that scripts on our OSX
10.4 (our local development machines) and RedHat/Debian linux servers do not
throw the "headers already sent" message. I could have an enti
To respond I do know the paths to the php.ini for all of the servers I
used. In all of my scripts I turn error_reporting to E_ALL and use a custom
error handler script to deal with errors. I was just looking for the
setting that could cause the problem and its the ouput_buffering directive.
I th
LINUX=22 -I/home/eric/src/php-4.0.4pl1 -
I/home/eric/src/php-4.0.4pl1/main -I/home/eric/src/php-4.0.4pl1/main -I/home
/eric/src/php-4.0.4pl1/Zend -I/home/eric/src/php-4.0.4pl1/Zend -I/home/eric/
src/php-4.0.4pl1/TSRM -I/home/eric/src/php-4.0.4pl1/TSRM -I/home/eric/src/ph
p-4.0.4pl1 -DUSE_EXPAT -I
le.
The closest PHP example that I have found thus far follows:
[INCOMPLETE] PHP CONDITIONAL INCLUDE EXAMPLE
Extracted from: <http://www.jwweb.com/20010629.html>
--
file type,
resolution, color profile, date created, date modified and copyright. The
File Browser also gives you the added advantage of being able to search for
images visually rather than just by file name.
Eric C. Pollitt, Founder
401 E. Illinois Ave.
Peoria, IL 61603
Global Hemp - Portal to the
/Remotely
_Provided_Services/> to find more.
PS I am not affiliated with Elance, just a suggestion.
Eric C. Pollitt, Founder
401 E. Illinois Ave.
Peoria, IL 61603
Global Hemp - Portal to the hemp community
http://www.globalhemp.com/
Create like a god. Command like a king. Work like a slave!
-- Constan
hanks,
Eric C. Pollitt, Founder
401 E. Illinois Ave.
Peoria, IL 61603
Global Hemp - Portal to the hemp community
http://www.globalhemp.com/
"Hemp is of first necessity to commerce and marine, in other words, to the
wealth and protection of the country."
-- Thomas Jefferson
> From: Marek
I haven't tried this, but it's a PHP Class named, "EditPHP."
http://spunge.mirrors.phpclasses.org/goto/browse.html/package/43.html
Eric C. Pollitt, Founder
401 E. Illinois Ave.
Peoria, IL 61603
Global Hemp - Portal to the hemp community
http://www.globalhemp.com/
"
Need a PHP/MySQL programmer for a couple week job in the Northwest
(Portland OR, Area) Please respond ASAP.
Eric JT Harlow
Sisgrate Technologies
Vancouver, WA USA
www.sisgrate.com
Email: [EMAIL PROTECTED]
Phone: 360 891 6991
Fax: 360 891 6865
"This communication (including attach
,
Eric JT Harlow
Sisgrate Technologies
www.sisgrate.com
Email: [EMAIL PROTECTED]
Phone: 360 891 6991
Fax: 360 891 6865
This communication (including attachments) contains private,
confidential, privileged and/or proprietary information intended solely
for the Recipient (s) named above. If you are
filesize = 104857600 ; 100 Meg default limit on file
uploads
I've verified this through the php info function.
I'm running Apache/1.3.9 (Unix) PHP/4.0.3pl1 on a Solaris 2.6 sparc server.
MS Internet Explorer 5.01 keeps timing out after 30 seconds...
Any ideas ?
--
Gilles-Eri
1 1:18 PM
> To: Gilles-Eric Descamps; [EMAIL PROTECTED]
> Subject: Re: [PHP] problem uploading big (50MB) file
>
>
> This is set by max_execution_time, did you restart apache to
> re-read your
> php.ini file?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
t; and it wouldn't upload
> anything cause it didn't parse it right.
> In other words, set that value to what you had with say php4.0.1
> good luck!
replaced 100M by 104857600,
and it WORKED !
two days I was stuck on this
Thanks,
--
Gilles-Eric DESCAMPS, Voi
that?
Thanks,
Eric J Schwinder
eric.AT.bergencomputing.DOT.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]
Trying set up php-syslog-ng on my Red Hat EL 3.0 AS system. I have verified
that I can in fact access mysql and that I have the necessary database and
that the user, password, and host are setup correctly in db_fns.php. It
seems; however, that I still receive the given error:
Fatal error: Cal
>= Original Message From "Eric L. Sammons" <[EMAIL PROTECTED]> =
>= Original Message From "Eric L. Sammons" <[EMAIL PROTECTED]> =
did this, all answers came back stating to install php-mysql package. Already
have that installed. Some hav
I have done phpinfo and I see --with-mysql=shared,/usr
>= Original Message From Jay Blanchard
<[EMAIL PROTECTED]> =
>[snip]
>did this, all answers came back stating to install php-mysql package.
>Already
>have that installed. Some have stated they recompiled php, I really
>would
>like to
I have started mysql, all is working (when I use the mysql client).
>= Original Message From Jay Blanchard
<[EMAIL PROTECTED]> =
>[snip]
>I have done phpinfo and I see --with-mysql=shared,/usr
>[/snip]
>
>Have you started the mysql daemon?
>
>--
>PHP General Mailing List (http://www.php.
No I see no mysql section in my phpinfo page. I am in the process of
rebuilding php to see if this resolves the problem.
>= Original Message From [EMAIL PROTECTED] =
>On Thu, 12 Aug 2004 15:38:45 -0400, Eric L. Sammons <[EMAIL PROTECTED]> wrote:
>> I have done phpinf
under /usr/lib/php. So is
PEAR.php.
Why can't my PHP script find Smarty/Smarty.class.php when it is located in
my path, especially if it finds PEAR.php? How do I diagnose this problem?
--
Eric Lease Morgan
University of Notre Dame
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ou for the prompt reply, and it seems very feasible, but how do I
allow apache access to the /usr/lib/php locatdion?
--
Eric Lease Morgan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
and then modify the php.ini file and restart the apache server. How can I
do this with my extension and just call/load the .so file in my script(s) that
need it?
Thanks in advance.
-Eric Bonney
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
clude of the header file everything still
compiles and makes just fine, and after restarting the web server the extension
is loaded just fine.
Does anyone have any idea what would cause the extension to refuse to load
with the header file included?
-Eric
--
PHP General Mailing List
On Sunday 28 June 2009 11:00:48 you wrote:
> On Sun, Jun 28, 2009 at 10:56, Eric A.
>
> Boney wrote:
> > So I am developing a custom extension and I am having a issue. I have a
> > header file that I need included in the project. If I #include the header
> > file everyth
Move and copy array of folders and files with one click
- support apache icons, and apache configuration
- Icon internal saved in base64..etc
--
Eric Herve Tchouamou
http://www.tchouamou.homeunix.com
Via Portofino, 8 - 10135 Torino - Italy
phone: +39 011 3720145
Cel: +39 328 6928649
email: [EMAIL
ugs
- Move and copy array of folders and files with one click
- support apache icons, and apache configuration
- Icon internal saved in base64..etc
--
Eric Herve Tchouamou
http://www.tchouamou.homeunix.com
Via Portofino, 8 - 10135 Torino - Italy
phone: +39 011 3720145
Cel: +39 328 6928649
email: [EMAIL PROTECTED]
Hi
My host, Host Papa (yes, they are rubbish) has disabled mod_deflate,
mod_gzip and php_value auto_prepend_file so can't use them in
.htaccess file. I would move host but I did not realise this was the
case until I wanted to make use of them. I am tied in for three years
so need to find a workaro
54, Only when the surface of the desk is problematic.
On 09/20/2013 12:58 PM, Larry Martell wrote:
On Fri, Sep 20, 2013 at 10:51 AM, Tedd Sperling wrote:
Hi gang:
Do you use a Mousepad?
My reason for asking is that I've used a Mousepad ever since mice first came
out (back when they had one
>= Original Message From "Eric L. Sammons" <[EMAIL PROTECTED]> =
I am in the process of writing a PHP program. It is really quite simple, I
have a form that I complete, the information is then to be saved into a simple
XML file. When I do this in Java the XML file wou
1101 - 1200 of 1219 matches
Mail list logo