Avatar billede faetter_gufguf Nybegynder
16. juni 2001 - 15:33 Der er 9 kommentarer

Min php.ini virker ikke

Er der nogle der gider paste deres ind? Så kopiere jeg den over!
Avatar billede j_jorgensen Nybegynder
16. juni 2001 - 15:36 #1
ehh...det er altså 23 KB ren tekst....rimelig langt indlæg...but here we go...håber ikk jeg bliver flamet for det :)

---

[PHP]

;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
; This file controls many aspects of PHP\'s behavior.  In order for PHP to
; read it, it must be named \'php.ini\'.  PHP looks for it in the current
; working directory, in the path designated by the environment variable
; PHPRC, and in the path that was defined in compile time (in that order).
; Under Windows, the compile-time path is the Windows directory.  The
; path in which the php.ini file is looked for can be overriden using
; the -c argument in command line mode.
;
; The syntax of the file is extremely simple.  Whitespace and Lines
; beginning with a semicolon are silently ignored (as you probably guessed).
; Section headers (e.g. [Foo]) are also silently ignored, even though
; they might mean something in the future.
;
; Directives are specified using the following syntax:
; directive=value
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
;
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
; (e.g. E_ALL & ~E_NOTICE), or a quoted string (\"foo\").
;
; Expressions in the INI file are limited to bitwise operators and parentheses:
; |                bitwise OR
; &                bitwise AND
; ~                bitwise NOT
; !                boolean NOT
;
; Boolean flags can be turned on using the values 1, On, True or Yes.
; They can be turned off using the values 0, Off, False or No.
;
; An empty string can be denoted by simply not writing anything after the equal
; sign, or by using the None keyword:
;
;  foo=; sets foo to an empty string
;    foo=none        ; sets foo to an empty string
;    foo=\"none\"    ; sets foo to the string \'none\'
;
; If you use constants in your value, and these constants belong to a dynamically
; loaded extension (either a PHP extension or a Zend extension), you may only
; use these constants *after* the line that loads the extension.
;
; All the values in the php.ini-dist file correspond to the builtin
; defaults (that is, if no php.ini is used, or if you delete these lines,
; the builtin defaults will be identical).


;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;

engine=On    ; Enable the PHP scripting language engine under Apache
short_open_tag=On    ; allow the <? tag.  otherwise, only <?php and <script> tags are recognized.
asp_tags=Off ; allow ASP-style <% %> tags
precision=14    ; number of significant digits displayed in floating point numbers
y2k_compliance=Off    ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers)
output_buffering=Off    ; Output buffering allows you to send header lines (including cookies)
; even after you send body content, in the price of slowing PHP\'s
; output layer a bit.
; You can enable output buffering by in runtime by calling the output
; buffering functions, or enable output buffering for all files
; by setting this directive to On.
%
Avatar billede faetter_gufguf Nybegynder
16. juni 2001 - 15:37 #2
Ehh er det HELE din ini?
Avatar billede j_jorgensen Nybegynder
16. juni 2001 - 15:40 #3
ahh fedt...så er der begrænsning på længden...ja s\'følig...
nå men...kan sende den via email....hvis det skulle være

Ellers kan du vel tage den fra deres website

Kommer jo også an på hvilket OS du kører....
Avatar billede faetter_gufguf Nybegynder
16. juni 2001 - 16:15 #4
Er deer begrænsning på???

Det kan sq da ikke passe
Avatar billede parazite Nybegynder
16. juni 2001 - 16:17 #5
Så vidt jeg ved er der ikke begrænsning på - prøv at poste igen.
Avatar billede faetter_gufguf Nybegynder
16. juni 2001 - 16:19 #6
Jeg nægter at tro på der er begrænsning!

Der står i regelsættet at man skal poste al kode herinde, så det tror jeg ikke på!

Måske fik du ikke det hele med..
Avatar billede xzxzx Nybegynder
16. juni 2001 - 19:48 #7
Vi kan jo bare prøve igen!

ehh...det er altså 23 KB ren tekst....rimelig langt indlæg...but here we go...håber ikk jeg bliver flamet for det :)

---

[PHP]

;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
; This file controls many aspects of PHP\'s behavior.  In order for PHP to
; read it, it must be named \'php.ini\'.  PHP looks for it in the current
; working directory, in the path designated by the environment variable
; PHPRC, and in the path that was defined in compile time (in that order).
; Under Windows, the compile-time path is the Windows directory.  The
; path in which the php.ini file is looked for can be overriden using
; the -c argument in command line mode.
;
; The syntax of the file is extremely simple.  Whitespace and Lines
; beginning with a semicolon are silently ignored (as you probably guessed).
; Section headers (e.g. [Foo]) are also silently ignored, even though
; they might mean something in the future.
;
; Directives are specified using the following syntax:
; directive=value
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
;
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
; (e.g. E_ALL & ~E_NOTICE), or a quoted string (\"foo\").
;
; Expressions in the INI file are limited to bitwise operators and parentheses:
; |                bitwise OR
; &                bitwise AND
; ~                bitwise NOT
; !                boolean NOT
;
; Boolean flags can be turned on using the values 1, On, True or Yes.
; They can be turned off using the values 0, Off, False or No.
;
; An empty string can be denoted by simply not writing anything after the equal
; sign, or by using the None keyword:
;
;  foo=; sets foo to an empty string
;    foo=none        ; sets foo to an empty string
;    foo=\"none\"    ; sets foo to the string \'none\'
;
; If you use constants in your value, and these constants belong to a dynamically
; loaded extension (either a PHP extension or a Zend extension), you may only
; use these constants *after* the line that loads the extension.
;
; All the values in the php.ini-dist file correspond to the builtin
; defaults (that is, if no php.ini is used, or if you delete these lines,
; the builtin defaults will be identical).


;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;

engine=On    ; Enable the PHP scripting language engine under Apache
short_open_tag=On    ; allow the <? tag.  otherwise, only <?php and <script> tags are recognized.
asp_tags=Off ; allow ASP-style <% %> tags
precision=14    ; number of significant digits displayed in floating point numbers
y2k_compliance=Off    ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers)
output_buffering=Off    ; Output buffering allows you to send header lines (including cookies)
; even after you send body content, in the price of slowing PHP\'s
; output layer a bit.
; You can enable output buffering by in runtime by calling the output
; buffering functions, or enable output buffering for all files
Avatar billede xzxzx Nybegynder
16. juni 2001 - 19:49 #8
Nu skulle denne linje mangle ikke, hvis der var begrænsing på?

; buffering functions, or enable output buffering for all files
Avatar billede xzxzx Nybegynder
16. juni 2001 - 19:53 #9
Når, men til sagen: www.enter-s.dk/php.ini
Der kan du hente min.
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester