Kontakt

hs-icon-callcenter
Anrufen
hs-icon-callcenter

Rufen Sie uns an

Unser Support-Team hilft Ihnen gerne, egal ob Sie technische oder administrative Fragen haben. Wir sind persönlich für Sie da!

 

+41 (0)84 800 80 80
(Anrufe aus der Schweiz 8 Rappen/Minute)

Administration

Montag bis Freitag
9.00–12.00 Uhr
13.30–17.30 Uhr
 

Technischer Support

Montag bis Freitag
8.00–17.30 Uhr

Samstag
9.00–16.00 Uhr

hs-icon-doc-write
Schreiben
hs-icon-doc-write

Schreiben Sie uns

Damit wir Ihnen so rasch und so gut wie möglich helfen können, bitten wir Sie Ihre Anfrage so spezifisch wie möglich zu formulieren. Sie können uns auch gerne über unsere E-Mail-Adresse erreichen: support@hoststar.com

Alle mit einem «*» markierten Felder sind Pflichtfelder und müssen ausgefüllt werden.

 

Error-Log

Support > > PHP

When running PHP scripts on your server, errors can occur. To understand and resolve these, the PHP error.log is a valuable resource. This file logs all error messages and warnings that occur during the execution of your PHP scripts. Here’s how to find the error.log and what you can do with it. 

What is the PHP error.log?

The PHP error.log is a log file that collects all PHP errors and warnings that occur while your code is running. It helps you pinpoint exactly where issues in your code lie, allowing you to quickly fix them. 

How do I find the PHP error.log?

The error.log file is typically located on your web server and can be accessed via FTP or the control panel of your hosting provider. At Hoststar, you can access the error.log through your FTP account

Common PHP error messages in the error.log

Parse Error: Syntax Error

Meaning: There is a syntax error in the PHP code, such as a missing semicolon or an unclosed bracket. 

Example: Parse error: syntax error, unexpected 'echo' (T_ECHO) in /path/to/file.php on line 10 

Solution: Check the line indicated in the error message and fix the syntax error. 

Fatal Error: Maximum Execution Time Exceeded

Meaning: The PHP script has exceeded the maximum allowed execution time. 

Example: Fatal error: Maximum execution time of 30 seconds exceeded in /path/to/file.php 

Solution: Optimize the script to reduce execution time, or increase the maximum execution time in the PHP configuration. 

War dieser Artikel hilfreich?