Geen foutmeldingen te zien

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Ventilatiesysteem Productontwikkelaar HBO WO Verwa

Samengevat: Zij bieden flexibele ventilatiematerialen, geluidsdempers, rookgasafvoer producten en industrieslangen. Ben jij een technisch productontwikkelaar? Heb jij ervaring met het ontwikkelen van nieuwe producten? Vaste baan: Technisch Productontwikkelaar HBO WO €3.000 - €4.000 Zij bieden een variëteit aan flexibele ventilatiematerialen, geluiddempers, rookgasafvoer producten, industrieslangen en ventilatieslangen voor de scheepsbouw. Met slimme en innovatieve materialen zorgen wij voor een gezonde en frisse leefomgeving. Deze werkgever is een organisatie die volop in ontwikkeling is met hardwerkende collega's. Dit geeft goede ontwikkelingsmogelijkheden. De branche van dit bedrijf is Techniek en Engineering. Functie: Voor de vacature als Technisch Productontwikkelaar Ede Gld HBO WO ga

Bekijk vacature »

BlcKJcK

BlcKJcK

02/08/2005 21:14:00
Quote Anchor link
Wie weet misschien waarom ik geen foutmeldingen te zien krijg. Ik gebruik het programma Appserv. Zou er iets mis zijn met de instellingen?

Geen parse errors oid
Gewijzigd op 20/01/2006 07:13:00 door BlcKJcK
 
PHP hulp

PHP hulp

19/04/2024 15:42:50
 
Jelmer -

Jelmer -

02/08/2005 21:38:00
Quote Anchor link
zoek naar php.ini, daar staat ergens iets over display_errors geloof ik.
 
Martijn B

Martijn B

02/08/2005 21:43:00
Quote Anchor link
Of je zet dit aan het begin van je script:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?php
error_reporting(E_ALL);
?>
Gewijzigd op 02/08/2005 21:46:00 door Martijn B
 
Jelmer -

Jelmer -

02/08/2005 21:45:00
Quote Anchor link
Bij mij wou dat om een of andere reden ook niet werken. Daar stonden de fouten uitgeschakeld om 'beveiligingsredenen' (in een php distro voor een Powerbook. Mensen?! Die gebruik je toch niet als grote openbare webserver :?)
 
BlcKJcK

BlcKJcK

02/08/2005 22:03:00
Quote Anchor link
Jelmer:
zoek naar php.ini, daar staat ergens iets over display_errors geloof ik.


Deze stond idd op Off. Nu het op On staat zie ik alsnog geen errors

Erg vervelend, want nu weet ik niet welke gedeelte van m'n script wel en niet werken
 
Jelmer -

Jelmer -

02/08/2005 23:55:00
Quote Anchor link
Post anders je php.ini eens, dan kunnen we zien wat er allemaal mis is, of juist niet mis is ^^,
 
BlcKJcK

BlcKJcK

03/08/2005 00:36:00
Quote Anchor link
Jelmer:
Post anders je php.ini eens, dan kunnen we zien wat er allemaal mis is, of juist niet mis is ^^,


Ik heb in de map php 2 bestanden die heten:

php.ini-dist
php.ini-recommended

beide zijn hetzelfde:

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; error_reporting is a bit-field. Or each number up to get desired error
; reporting level
; E_ALL - All errors and warnings
; E_ERROR - fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
; E_NOTICE - run-time notices (these are warnings which often result
; from a bug in your code, but it's possible that it was
; intentional (e.g., using an uninitialized variable and
; relying on the fact it's automatically initialized to an
; empty string)
; E_STRICT - run-time notices, enable to have PHP suggest changes
; to your code which will ensure the best interoperability
; and forward compatability of your code
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
; initial startup
; E_COMPILE_ERROR - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR - user-generated error message
; E_USER_WARNING - user-generated warning message
; E_USER_NOTICE - user-generated notice message
;
; Examples:
;
; - Show all errors, except for notices
;
error_reporting = E_ALL & ~E_NOTICE
;
; - Show only errors
;
error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
; - Show all errors except for notices and coding standards warnings
;
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT

; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On

; Even when display_errors is on, errors that occur during PHP's startup
; sequence are not displayed. It's strongly recommended to keep
; display_startup_errors off, except for when debugging.
display_startup_errors = On

; Log errors into a log file (server-specific log, stderr, or error_log (below))
; As stated above, you're strongly advised to use error logging in place of
; error displaying on production web sites.
log_errors = Off

; Set maximum length of log_errors. In error_log information about the source is
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
log_errors_max_len = 1024

; Do not log repeated messages. Repeated errors must occur in same file on same
; line until ignore_repeated_source is set true.
ignore_repeated_errors = Off

; Ignore source of message when ignoring repeated messages. When this setting
; is On you will not log errors with repeated messages from different files or
; sourcelines.
ignore_repeated_source = Off

; If this parameter is set to Off, then memory leaks will not be shown (on
; stdout or in the log). This has only effect in a debug compile, and if
; error reporting includes E_WARNING in the allowed list
report_memleaks = On

; Store the last error/warning message in $php_errormsg (boolean).
track_errors = Off

; Disable the inclusion of HTML tags in error messages.
; Note: Never use this feature for production boxes.
;html_errors = On

; If html_errors is set On PHP produces clickable error messages that direct
; to a page describing the error or function causing the error in detail.
; You can download a copy of the PHP manual from http://www.php.net/docs.php
; and change docref_root to the base URL of your local copy including the
; leading '/'. You must also specify the file extension being used including
; the dot.
; Note: Never use this feature for production boxes.
;docref_root = "/phpmanual/"
;docref_ext = .html

; String to output before an error message.
;error_prepend_string = "<font color=ff0000>"

; String to output after an error message.
;error_append_string = "</font>"

; Log errors to specified file.
;error_log = filename

; Log errors to syslog (Event Log on NT, not valid in Windows 95).
;error_log = syslog
 
Jelmer -

Jelmer -

03/08/2005 10:10:00
Quote Anchor link
meestal staat in de windos-map (op C:\?) een php.ini (zonder achtervoegsels). Die heb je nodig, aangezien die wordt gebruikt door php.
 
Onbekend onbekend

onbekend onbekend

03/08/2005 11:13:00
Quote Anchor link
probeer het anders es met ini_set();
 

21/12/2005 10:44:00
Quote Anchor link
Gewijzigd op 15/01/2006 00:46:00 door
 

14/01/2006 20:10:00
Quote Anchor link
Hi
As to me to adjust correctly time on my computer?
 
- SanThe -

- SanThe -

14/01/2006 22:38:00
Quote Anchor link
We hebben weer SPAMmers.
 
Willem Jan Z

Willem Jan Z

15/01/2006 00:24:00
Quote Anchor link
Grrrrrrrrr....
 

15/01/2006 09:16:00
Quote Anchor link
Hi! How at you with weather? At us absolutely of gloom = (
 
PurpleMadness -

PurpleMadness -

15/01/2006 09:38:00
Quote Anchor link
STFU and spam your own forum..
 
Han eev

Han eev

15/01/2006 11:40:00
Quote Anchor link
Nieuw spam :|

Jelmer:
meestal staat in de windos-map (op C:?) een php.ini (zonder achtervoegsels). Die heb je nodig, aangezien die wordt gebruikt door php.

Het staat in c:/windows of c:/winnt ^^
 

20/01/2006 04:42:00
Quote Anchor link
What that problems.(I would like that you have corrected problems with scripts. And some menus do not work! del to it of attention. Thanks!
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.