if you use the PHP MSSQL driver,
find a line in php.ini :
mssql.textlimit
= 4096
mssql.textsize
= 4096
and change there are value to you wanted.
elman
Al wrote:
> Setup: PHP 4 and Apache on NT 4; SQL Server 7.0 on NT 4, Unified ODBC
> using SQL Server ODBC driver.
>
> How does one go ab
try www.php4win.de
-Flint
-Original Message-
From: Jeff Howard [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 16, 2001 12:00 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Where to find php_mcrypt.dll?
Does anybody know where to find the php_mcrypt.dll file? It doesn't come
with the d
Does anybody know where to find the php_mcrypt.dll file? It doesn't come
with the download for php.
--
PHP Windows 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
Found MS explanation! (at least the only place I've found the reason WHY %s
%s must be used)
http://support.microsoft.com/support/kb/articles/Q276/4/94.ASP
I know, this is a KB article for Python, but look closely at the line that
says:
"(The two "%s" after the executable are required for conso
I've had PHP 3 to 4.01 and now 4.06 running under NT4 SP6a and now with W2K
& IIS 5. From my experience, the %s %s is a requirement of IIS (not PHP).
This according to Microsoft rules (apparently %s %s is CASE SENSITIVE):
http://support.microsoft.com/support/kb/articles/Q245/2/25.ASP
The %s %s h
Jim,
Could you give us an example and explanation as to why no %s %s is unstable? How has
this failed you ? because I've never had a problem with not having it in there that I
know of. PHP has always executed for me properly, NT 4.0 and w2k. But if it is
unstable I don't want to find out late
On Thursday 16 August 2001 4:45 pm, Powell, Jim (EER) wrote:
> > Second, make the application extensions point to php.exe (you
> > don't need the
> > %s %s stuff).
>
> This I have to disagree with. Without the %s %s, you are rolling dice as
> to whether the page will work or not. I never had th
> First of all, the ISAPI module is not stable. It will just
> cause you grief so
> remove it from your filters list.
Now this is a true statement, especially with IIS, it just don't work.
>
> Second, make the application extensions point to php.exe (you
> don't need the
> %s %s stuff).
Thi
HI all!
I'm need send a unique e-mail for a lot of people.
Ok.
I'm interested in a sistem (based in PHP4 + MySQL and Yk2 and IIS) for
a recopilate a e-mail directions and a names from a MySQL
database and send automaticaly at all e-mail directions listed in a
MySQL database...
Somthing idea?
(
LOL, Glad to see you got it working Darren, What was the problem?
Angie Tollerson
Alliance Technologies
Web Programmer
(515)245-7628
[EMAIL PROTECTED]
>>> "PHP" <[EMAIL PROTECTED]> 08/16/01 09:32AM >>>
"Angie Tollerson" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECT
"Angie Tollerson" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
The most common errors I see for set up are:
1. You need to right click on your website in IIS, choose properties, and on
the home directory tab choose configure. Then add the extension .php to be
>Hi all
>How can generate a uniqe id for every object of a class,
>for example
>
A very simple (untested) example could be:
int UniqueNumer(void)
{
static int nUniqueKey = 0;
return ++nUniqueKey;
}
>class A
>{
> var $id;
> function A()
> {
>$this->id = UniqueNumer();
> }
>}
It c
Dear all
I'm trying to get PHP to read the content which created by MS Word.But when
php runs, and it just return Nothing (Blank ) to the browser!!
Actually , i was thinking to make a HTML Page which can let user to type in
the content, then the content will copy to a file and finally a php will
p
www.apache.org
-
John Asendorf - [EMAIL PROTECTED]
Web Applications Developer
http://www.lcounty.com - NEW FEATURES ADDED DAILY!
Licking County, Ohio, USA
740-349-3631
Aliquando et insanire iucundum est
> -Original Message-
> From: Ste [mailto:[EMAIL PROTECTED]]
> Se
> I had read a book which it ask me to point both ISAPI and APP Extension to
> "php4isapi.dll", but when i read some article from internet, some of them
> say that the Application Extension should point to "php.exe", so could
> anyone tell me which is the truth! and pls help me with that, because
On Thursday 16 August 2001 6:58 am, Ste wrote:
> Hi im really new to PHP but would like learn it so first i think its best
i cant find a *easy to set up* free HTTP
> server that supports PHP so dose anyone know where i can find one?
Xitami is about as easy as it gets:
http://www.imatix.com/
--
P
php-windows Digest 16 Aug 2001 09:17:10 - Issue 705
Topics (messages 8884 through 8897):
Problem with a socket in non-blockant state
8884 by: Cerel
Re: how to show image from mssql server
8885 by: TopDog
Re: Why am I getting a CGI error?
8886 by: Steve \"Neo Cerber
you must not correct install php.
"Craig" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi
>
> I'm trying to set up hlstats which users hlstats.php but every time I try
> run the file in IE the .php file opens as a text file and displays all the
> code.
>
> I'
Hi all
How can call a super class constractor in PHP for example
class A
{
var $name;
function A($name)
{
$this->name=$name;
}
}
class B
{
var $size;
function B($name,$size)
{
// How can call A constractor for initialize name variable in here
$this->size=$size;
}
}
Hi all
How can generate a uniqe id for every object of a class,
for example
class A
{
var $id;
function A()
{
$this->id= // How genereate this , uniqe for class and all subclass
}
}
$a= new A();
$b=new A();
$c=new A();
print($a->id);
print($b->id);
print($c->id);
thanks for answer
Dear all
I had download the PHP 4 and was trying to get it work! Well actally i had
get it work in my IIS Server!!
But the Strange thing is, i had create serval different website inside
IIS4.0, and i want all of them can work with PHP.
So i created a site and i get it work with PHP, which it runs
I'm creating a Content Management system in which the user will have to
attach a pdf document to an article. This is no problem, I copy the document
to a specific pdf folder and store the document name in the DB to use on the
front end.
On the front end I loop through all documents that are onlin
why do I get this error message? Please, help. Thanks.
Cannot find module (IP-MIB): At line 0 in (none) Cannot find module
(IF-MIB): At line 0 in (none) Cannot find module (TCP-MIB): At line 0 in
(none) Cannot find module (UDP-MIB): At line 0 in (none) Cannot find module
(SNMPv2-MIB): At line 0 i
23 matches
Mail list logo