Çözüldü FreeBSD 12 ve Apache24 ile site kurdum ancak..

Bu konu çözüme ulaştırılmıştır. Çözüm için konuya yazılan tüm yorumları okumayı unutmayın. Eğer konudaki yorumlar sorununuzu çözmediyse yeni bir konu açabilirsiniz.
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.

Denizeri24

Gentleman
Geliştirici
Usta Üye
Mesaj
511
Çözümler
14
Beğeni
453
Puan
829
Ticaret Puanı
0
Selamlar,

İnternet sağlayıcımdan Sabit IP alıp metin2 serveri açma işine koyuldum. Serveri açtım, dışardan oyuncu alabiliyorum ancak sorun şu ki serverin sitesi yok.

Ee bende dururmuyum? tabii ki durmam. Site açmak için yazılar okudum ve başarılıda oldum. İndex sayfalarını apache yardımıyla yayınlayabiliyorum ancak sorun şu ki MHMS, WMCP panel kurduğumda hata ile karşılaşıyorum.

MHMS'de beyaz ekranda kalırken, WMCP'de "Veri tabanına bağlanılamadı!" hatası alıyorum..

Ayarlar şöyle;

Panelin "Ayarlar.php" dosyasının içeriği;
PHP:
<?php
/*
MySQL Bağlantısı için sabit değişkenleri ayarlıyoruz
*/

define("SERVER_IP","159.146.61.17 (Burayı "localhost" ve "127.0.0.1" yapıyorum yine olmuyor");             // Servenize tahsis edilmiş sunucu IP Adresini Yazınız
define("MYSQL_KULLANICI","BURADAKULLANICIADIVAR");             // Serverinizin MySQL Kullanıcı adını yazınız.
define("MYSQL_PAROLA","BURADASIFREVAR");    // MySQL Kullanıcı Şifrenizi Yazınız...
define("MYSQL_PORT","3306");                    // MySQL Erişim Port Numarısı Default olarak "3306" olur  eğer sizinki değişik ise yazabilirsiniz.
define("DATABASE_ADI","durablee");                 // Scriptin SQL dosylarını hangi database'ye kurduysanız adını yazınız.



/*
Web Sitesi Tekniksel Ayarları
*/
define("SITE_URL","http://".$_SERVER["SERVER_NAME"]."/");     // Scriptin Kurulduğu URL Adresi Tarayıcınızın adresi Örn : http://www.domain.com/
define("KAYIT_BILGISI_GONDER",false); // Oyuncu kayıt olunca E-posta adresine kayıt bilgileri gitmesi için true gitmemesini istiyorsanız false yazın.




// Header Content Ayarı
header("Content-Type:text/html; Charset=UTF-8");
// Zaman Ayarı : "Europe/Istanbul"
date_default_timezone_set("Europe/Istanbul");

// Php Hatalarını Gizleyelim....
error_reporting(0);
// CRSF TOKEN
$token_id                 = md5(uniqid(mt_rand(), true));
$giris_token_id         = md5(uniqid(mt_rand(), true));
?>

Apache'nin "httpd.conf" dosyasının içeriği;
Kod:
#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
# will be interpreted as '/logs/access_log'.

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to specify a local disk on the
# Mutex directive, if file-based mutexes are used.  If you wish to share the
# same ServerRoot for multiple httpd daemons, you will need to change at
# least PidFile.
#
ServerRoot "/usr/local"

#
# Mutex: Allows you to set the mutex mechanism and mutex file directory
# for individual mutexes, or change the global defaults
#
# Uncomment and change the directory if mutexes are file-based and the default
# mutex file directory is not on a local disk or is not appropriate for some
# other reason.
#
# Mutex default:/var/run

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
#LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so
LoadModule authn_file_module libexec/apache24/mod_authn_file.so
#LoadModule authn_dbm_module libexec/apache24/mod_authn_dbm.so
#LoadModule authn_anon_module libexec/apache24/mod_authn_anon.so
#LoadModule authn_dbd_module libexec/apache24/mod_authn_dbd.so
#LoadModule authn_socache_module libexec/apache24/mod_authn_socache.so
LoadModule authn_core_module libexec/apache24/mod_authn_core.so
LoadModule authz_host_module libexec/apache24/mod_authz_host.so
LoadModule authz_groupfile_module libexec/apache24/mod_authz_groupfile.so
LoadModule authz_user_module libexec/apache24/mod_authz_user.so
#LoadModule authz_dbm_module libexec/apache24/mod_authz_dbm.so
#LoadModule authz_owner_module libexec/apache24/mod_authz_owner.so
#LoadModule authz_dbd_module libexec/apache24/mod_authz_dbd.so
LoadModule authz_core_module libexec/apache24/mod_authz_core.so
#LoadModule authnz_fcgi_module libexec/apache24/mod_authnz_fcgi.so
LoadModule access_compat_module libexec/apache24/mod_access_compat.so
LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
#LoadModule auth_form_module libexec/apache24/mod_auth_form.so
#LoadModule auth_digest_module libexec/apache24/mod_auth_digest.so
#LoadModule allowmethods_module libexec/apache24/mod_allowmethods.so
#LoadModule file_cache_module libexec/apache24/mod_file_cache.so
#LoadModule cache_module libexec/apache24/mod_cache.so
#LoadModule cache_disk_module libexec/apache24/mod_cache_disk.so
#LoadModule cache_socache_module libexec/apache24/mod_cache_socache.so
#LoadModule socache_shmcb_module libexec/apache24/mod_socache_shmcb.so
#LoadModule socache_dbm_module libexec/apache24/mod_socache_dbm.so
#LoadModule socache_memcache_module libexec/apache24/mod_socache_memcache.so
#LoadModule watchdog_module libexec/apache24/mod_watchdog.so
#LoadModule macro_module libexec/apache24/mod_macro.so
#LoadModule dbd_module libexec/apache24/mod_dbd.so
#LoadModule dumpio_module libexec/apache24/mod_dumpio.so
#LoadModule buffer_module libexec/apache24/mod_buffer.so
#LoadModule data_module libexec/apache24/mod_data.so
#LoadModule ratelimit_module libexec/apache24/mod_ratelimit.so
LoadModule reqtimeout_module libexec/apache24/mod_reqtimeout.so
#LoadModule ext_filter_module libexec/apache24/mod_ext_filter.so
#LoadModule request_module libexec/apache24/mod_request.so
#LoadModule include_module libexec/apache24/mod_include.so
LoadModule filter_module libexec/apache24/mod_filter.so
#LoadModule reflector_module libexec/apache24/mod_reflector.so
#LoadModule substitute_module libexec/apache24/mod_substitute.so
#LoadModule sed_module libexec/apache24/mod_sed.so
#LoadModule charset_lite_module libexec/apache24/mod_charset_lite.so
#LoadModule deflate_module libexec/apache24/mod_deflate.so
#LoadModule xml2enc_module libexec/apache24/mod_xml2enc.so
#LoadModule proxy_html_module libexec/apache24/mod_proxy_html.so
LoadModule mime_module libexec/apache24/mod_mime.so
LoadModule log_config_module libexec/apache24/mod_log_config.so
#LoadModule log_debug_module libexec/apache24/mod_log_debug.so
#LoadModule log_forensic_module libexec/apache24/mod_log_forensic.so
#LoadModule logio_module libexec/apache24/mod_logio.so
LoadModule env_module libexec/apache24/mod_env.so
#LoadModule mime_magic_module libexec/apache24/mod_mime_magic.so
#LoadModule cern_meta_module libexec/apache24/mod_cern_meta.so
#LoadModule expires_module libexec/apache24/mod_expires.so
LoadModule headers_module libexec/apache24/mod_headers.so
#LoadModule usertrack_module libexec/apache24/mod_usertrack.so
#LoadModule unique_id_module libexec/apache24/mod_unique_id.so
LoadModule setenvif_module libexec/apache24/mod_setenvif.so
LoadModule version_module libexec/apache24/mod_version.so
#LoadModule remoteip_module libexec/apache24/mod_remoteip.so
#LoadModule proxy_module libexec/apache24/mod_proxy.so
#LoadModule proxy_connect_module libexec/apache24/mod_proxy_connect.so
#LoadModule proxy_ftp_module libexec/apache24/mod_proxy_ftp.so
#LoadModule proxy_http_module libexec/apache24/mod_proxy_http.so
#LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so
#LoadModule proxy_scgi_module libexec/apache24/mod_proxy_scgi.so
#LoadModule proxy_uwsgi_module libexec/apache24/mod_proxy_uwsgi.so
#LoadModule proxy_fdpass_module libexec/apache24/mod_proxy_fdpass.so
#LoadModule proxy_wstunnel_module libexec/apache24/mod_proxy_wstunnel.so
#LoadModule proxy_ajp_module libexec/apache24/mod_proxy_ajp.so
#LoadModule proxy_balancer_module libexec/apache24/mod_proxy_balancer.so
#LoadModule proxy_express_module libexec/apache24/mod_proxy_express.so
#LoadModule proxy_hcheck_module libexec/apache24/mod_proxy_hcheck.so
#LoadModule session_module libexec/apache24/mod_session.so
#LoadModule session_cookie_module libexec/apache24/mod_session_cookie.so
#LoadModule session_crypto_module libexec/apache24/mod_session_crypto.so
#LoadModule session_dbd_module libexec/apache24/mod_session_dbd.so
#LoadModule slotmem_shm_module libexec/apache24/mod_slotmem_shm.so
#LoadModule slotmem_plain_module libexec/apache24/mod_slotmem_plain.so
#LoadModule ssl_module libexec/apache24/mod_ssl.so
#LoadModule dialup_module libexec/apache24/mod_dialup.so
#LoadModule http2_module libexec/apache24/mod_http2.so
#LoadModule proxy_http2_module libexec/apache24/mod_proxy_http2.so
#LoadModule lbmethod_byrequests_module libexec/apache24/mod_lbmethod_byrequests.so
#LoadModule lbmethod_bytraffic_module libexec/apache24/mod_lbmethod_bytraffic.so
#LoadModule lbmethod_bybusyness_module libexec/apache24/mod_lbmethod_bybusyness.so
#LoadModule lbmethod_heartbeat_module libexec/apache24/mod_lbmethod_heartbeat.so
LoadModule unixd_module libexec/apache24/mod_unixd.so
#LoadModule heartbeat_module libexec/apache24/mod_heartbeat.so
#LoadModule heartmonitor_module libexec/apache24/mod_heartmonitor.so
#LoadModule dav_module libexec/apache24/mod_dav.so
LoadModule status_module libexec/apache24/mod_status.so
LoadModule autoindex_module libexec/apache24/mod_autoindex.so
#LoadModule asis_module libexec/apache24/mod_asis.so
#LoadModule info_module libexec/apache24/mod_info.so
<IfModule !mpm_prefork_module>
    #LoadModule cgid_module libexec/apache24/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
    #LoadModule cgi_module libexec/apache24/mod_cgi.so
</IfModule>
#LoadModule dav_fs_module libexec/apache24/mod_dav_fs.so
#LoadModule dav_lock_module libexec/apache24/mod_dav_lock.so
#LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
#LoadModule negotiation_module libexec/apache24/mod_negotiation.so
LoadModule dir_module libexec/apache24/mod_dir.so
#LoadModule imagemap_module libexec/apache24/mod_imagemap.so
#LoadModule actions_module libexec/apache24/mod_actions.so
#LoadModule speling_module libexec/apache24/mod_speling.so
#LoadModule userdir_module libexec/apache24/mod_userdir.so
LoadModule alias_module libexec/apache24/mod_alias.so
LoadModule rewrite_module libexec/apache24/mod_rewrite.so
LoadModule php7_module        libexec/apache24/libphp7.so

# Third party modules
IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf
<IfModule unixd_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User www
Group www

</IfModule>

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin [email protected]

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName localhost:80

#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
#
<Directory />
    AllowOverride none
    Require all denied
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/usr/local/www/apache24/data"
<Directory "/usr/local/www/apache24/data">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
    Require all denied
</Files>

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
AddHandler php5-script .php
AddType text/html .php
#
ErrorLog "/var/log/httpd-error.log"

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    #
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    #
    CustomLog "/var/log/httpd-access.log" common

    #
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog "/var/log/httpd-access.log" combined
</IfModule>

<IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar

    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.

    #
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    ScriptAlias /cgi-bin/ "/usr/local/www/apache24/cgi-bin/"

</IfModule>

<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock cgisock
</IfModule>

#
# "/usr/local/www/apache24/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/usr/local/www/apache24/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule headers_module>
    #
    # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied
    # backend servers which have lingering "httpoxy" defects.
    # 'Proxy' request header is undefined by the IETF, not listed by IANA
    #
    RequestHeader unset Proxy early
</IfModule>

<IfModule mime_module>
    #
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    #
    TypesConfig etc/apache24/mime.types

    #
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi

    # For type maps (negotiated resources):
    #AddHandler type-map var

    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
</IfModule>

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
#MIMEMagicFile etc/apache24/magic

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited

#
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall may be used to deliver
# files.  This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
# Defaults: EnableMMAP On, EnableSendfile Off
#
#EnableMMAP off
#EnableSendfile on

# Supplemental configuration
#
# The configuration files in the etc/apache24/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.

# Server-pool management (MPM specific)
#Include etc/apache24/extra/httpd-mpm.conf

# Multi-language error messages
#Include etc/apache24/extra/httpd-multilang-errordoc.conf

# Fancy directory listings
#Include etc/apache24/extra/httpd-autoindex.conf

# Language settings
#Include etc/apache24/extra/httpd-languages.conf

# User home directories
#Include etc/apache24/extra/httpd-userdir.conf

# Real-time info on requests and configuration
#Include etc/apache24/extra/httpd-info.conf

# Virtual hosts
#Include etc/apache24/extra/httpd-vhosts.conf

# Local access to the Apache HTTP Server Manual
#Include etc/apache24/extra/httpd-manual.conf

# Distributed authoring and versioning (WebDAV)
#Include etc/apache24/extra/httpd-dav.conf

# Various default settings
#Include etc/apache24/extra/httpd-default.conf

# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include etc/apache24/extra/proxy-html.conf
</IfModule>

# Secure (SSL/TLS) connections
#Include etc/apache24/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

Include etc/apache24/Includes/*.conf

IFCONFIG komutu;

ipconfig.jpg



Şuanda tıkandım, ne yapmalıyım bilmiyorum.. HELP ME!
 
En son bir moderatör tarafından düzenlenmiş:
Çözüm
Dediğiniz doğru olabilir ancak şuanda sorunun DÜZELTME : benim FreeBSD'nin php sürümünün 5 olmaması olarak tespit ettik. "mysql_connection" kodu php55,56 sürümlerinde var iken 72,73 sürümlerinde yok.

Whistle adlı arkadaşın dediği gibi php sürümü 7 olan bir panel bulmam gerekli.
Eğer php bilginiz varsa mevcut paneli pdoya taşıyabilirsiniz ancak mhms paneli çok geniş içerikli olduğu için bu denli büyük iş yapmak yerine baştan panel kodlamak veya forumlardan güncel panel bulmak daha mantıklı olur. :)
Install libtool

cd /usr/ports/devel/libtool
make install clean


Install php5

cd /usr/ports/lang/php5
make config


Make sure the following is selected with space bar then press "Enter":

[X] FPM Build FPM version (experimental)

Leave everything else default.

then do this:

make install clean

~~~~
If you need cURL support then do this, if not then skip this step:

cd /usr/ports/lang/php5-extensions
make config


Make sure that the "CURL Support" is selected then press "Enter".

Then do the installation and clean the directory:

make -DBATCH install clean
~~~~

Time to configure your php.ini file...

cp /usr/local/etc/php.ini-production /usr/local/etc/php.ini

Edit /usr/local/etc/php.ini in WinSCP using Notepad++. Firstly, set your "date.timezone" to the appropriate one. Choose from this list:
Linkleri görebilmek için giriş yap veya kayıt ol.


Next, if you have something that needs to run large MYSQL queries you may run into some issues. Some website packages also can cause these problems. The issue is with memory usage. For security reasons there are limitations set on how much memory php is allowed to use. I suggest only modifying this IF you have problems loading memory-intensive pages. Just try to raise it a bit until it works, don't raise it to an excessively high number. I had to set mine to "512M" to make my queries work in my patcher. It can be set by just inputting numbers and they will be recognized as bytes, or you could use K, M, or G.

memory_limit = 512M

Installation of php-mysql5:

cd /usr/ports/databases/php5-mysql
make -DBATCH install clean



ee /etc/rc.conf

php_fpm_enable="YES"

service php-fpm start

not tested
 
Beyaz ekranda kalma sorunu koddan kaynaklanan hatadan dolayıdır. Mhms panelinde de ayarlardan hata gösterme özelliği kapalı olduğu için hata yerine beyaz ekran gelir. Hataları görmek için şunları yapın.

ayarlar.php içindeki
şu kodu
PHP:
error_reporting(0);

şöyle yapıp ekranda yazan hatayı verir misin?
PHP:
//error_reporting(0);
 
Yaptım ancak hata vermiyor.. İsterseniz anydesk veya tw ile bağlanıp bakabilirsiniz..
 
Beyaz ekranda kalma sorunu koddan kaynaklanan hatadan dolayıdır. Mhms panelinde de ayarlardan hata gösterme özelliği kapalı olduğu için hata yerine beyaz ekran gelir. Hataları görmek için şunları yapın.

ayarlar.php içindeki
şu kodu
Kod:
error_reporting(0);

şöyle yapıp ekranda yazan hatayı verir misin?
Kod:
//error_reporting(0);
İnternet Explorer ile girdiğimde "HTTP 500" hatası aldığımı gördüm. ufak bir araştırma ile Apache'nin hata kaydına ulaşmayı buldum. Hata kaydı;

Kod:
[Fri May 31 07:13:45.007058 2019] [mpm_prefork:notice] [pid 25602] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Fri May 31 07:13:45.007189 2019] [core:notice] [pid 25602] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:19:08.515017 2019] [mpm_prefork:notice] [pid 25602] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:19:09.490337 2019] [mpm_prefork:notice] [pid 26276] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:19:09.490382 2019] [core:notice] [pid 26276] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:27:59.258467 2019] [mpm_prefork:notice] [pid 26276] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:28:00.217449 2019] [mpm_prefork:notice] [pid 26786] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:28:00.217511 2019] [core:notice] [pid 26786] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:34:15.932996 2019] [mpm_prefork:notice] [pid 26786] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:34:16.892365 2019] [mpm_prefork:notice] [pid 26830] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:34:16.892421 2019] [core:notice] [pid 26830] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:34:51.361836 2019] [mpm_prefork:notice] [pid 26830] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:34:52.317175 2019] [mpm_prefork:notice] [pid 26857] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:34:52.317247 2019] [core:notice] [pid 26857] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:42:57.439750 2019] [mpm_prefork:notice] [pid 26857] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:42:58.406683 2019] [mpm_prefork:notice] [pid 26897] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:42:58.406771 2019] [core:notice] [pid 26897] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:44:58.574282 2019] [mpm_prefork:notice] [pid 26897] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:44:59.535727 2019] [mpm_prefork:notice] [pid 26936] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:44:59.535782 2019] [core:notice] [pid 26936] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:45:21.541799 2019] [mpm_prefork:notice] [pid 26936] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:45:22.493141 2019] [mpm_prefork:notice] [pid 26965] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:45:22.493190 2019] [core:notice] [pid 26965] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:53:00.559729 2019] [mpm_prefork:notice] [pid 26965] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:53:01.557585 2019] [mpm_prefork:notice] [pid 27028] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:53:01.557668 2019] [core:notice] [pid 27028] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 07:57:19.186796 2019] [mpm_prefork:notice] [pid 27028] AH00169: caught SIGTERM, shutting down
[Fri May 31 07:57:20.226825 2019] [mpm_prefork:notice] [pid 27102] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 07:57:20.226874 2019] [core:notice] [pid 27102] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 08:29:39.016664 2019] [autoindex:error] [pid 27106] [client 192.168.1.99:7710] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 08:30:10.611454 2019] [authz_core:error] [pid 27105] [client 192.168.1.99:7726] AH01630: client denied by server configuration: /usr/local/www/apache24/data/.htaccess
[Fri May 31 08:47:56.587826 2019] [autoindex:error] [pid 27161] [client 192.168.1.99:7891] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 08:47:57.393454 2019] [autoindex:error] [pid 27161] [client 192.168.1.99:7891] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 08:47:57.824239 2019] [autoindex:error] [pid 27161] [client 192.168.1.99:7891] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 08:47:58.116118 2019] [autoindex:error] [pid 27161] [client 192.168.1.99:7891] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 08:49:02.077035 2019] [mpm_prefork:notice] [pid 27102] AH00169: caught SIGTERM, shutting down
[Fri May 31 08:49:03.081579 2019] [mpm_prefork:notice] [pid 27222] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 08:49:03.081669 2019] [core:notice] [pid 27222] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 08:49:21.300715 2019] [autoindex:error] [pid 27224] [client 192.168.1.99:7905] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 09:38:47.425103 2019] [autoindex:error] [pid 27227] [client 192.168.1.99:8103] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 09:42:04.076432 2019] [mpm_prefork:notice] [pid 27222] AH00169: caught SIGTERM, shutting down
[Fri May 31 09:42:05.053994 2019] [mpm_prefork:notice] [pid 27340] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 09:42:05.054039 2019] [core:notice] [pid 27340] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 09:42:19.733325 2019] [autoindex:error] [pid 27342] [client 192.168.1.99:8127] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 09:42:20.189229 2019] [autoindex:error] [pid 27342] [client 192.168.1.99:8127] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 09:42:20.381607 2019] [autoindex:error] [pid 27342] [client 192.168.1.99:8127] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 09:42:21.691273 2019] [authz_core:error] [pid 27342] [client 192.168.1.99:8127] AH01630: client denied by server configuration: /usr/local/www/apache24/data/.htaccess
[Fri May 31 09:46:25.341892 2019] [autoindex:error] [pid 27343] [client 192.168.1.99:8139] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 09:56:26.986469 2019] [mpm_prefork:notice] [pid 27340] AH00169: caught SIGTERM, shutting down
[Fri May 31 09:56:27.978032 2019] [mpm_prefork:notice] [pid 28195] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 09:56:27.978092 2019] [core:notice] [pid 28195] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 09:56:35.632770 2019] [autoindex:error] [pid 28197] [client 192.168.1.99:8206] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:32.047885 2019] [autoindex:error] [pid 28198] [client 192.168.1.99:8265] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:39.316157 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:39.816961 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:40.214687 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:40.606405 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:41.018676 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:41.404695 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:41.804009 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:42.130390 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:42.512495 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:42.799530 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:43.213668 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:43.541646 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:43.953281 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:44.252624 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:44.751119 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:45.054313 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:46.142051 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:46.543894 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:47.147329 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:03:47.351613 2019] [autoindex:error] [pid 28200] [client 192.168.1.99:8267] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:04:16.930929 2019] [autoindex:error] [pid 28203] [client 192.168.1.99:8277] AH01276: Cannot serve directory /usr/local/www/phpMyAdmin/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri May 31 10:07:53.156231 2019] [mpm_prefork:notice] [pid 28195] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:07:54.132019 2019] [mpm_prefork:notice] [pid 28243] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:07:54.132068 2019] [core:notice] [pid 28243] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:08:33.575697 2019] [php7:notice] [pid 28245] [client 192.168.1.99:8332] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:08:33.575755 2019] [php7:error] [pid 28245] [client 192.168.1.99:8332] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:09:27.719034 2019] [mpm_prefork:notice] [pid 28243] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:09:28.690730 2019] [mpm_prefork:notice] [pid 28275] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:09:28.690798 2019] [core:notice] [pid 28275] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:11:00.667258 2019] [php7:notice] [pid 28276] [client 192.168.1.99:8336] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:11:00.667317 2019] [php7:error] [pid 28276] [client 192.168.1.99:8336] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:11:06.149806 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:06.149865 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:08.098996 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:08.099024 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:08.419262 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:08.419287 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:08.649622 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:08.649648 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:08.836225 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:08.836251 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:09.023946 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:09.023974 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:09.222922 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:09.222948 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:09.413079 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:09.413104 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:09.602645 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:09.602675 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:09.775041 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:09.775067 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:09.971444 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:09.971469 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:10.154124 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:10.154154 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:10.338570 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:10.338606 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:10.530695 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:10.530720 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:10.710991 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:10.711018 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:10.896146 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:10.896173 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:11.090039 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:11.090070 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:11.262256 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:11.262283 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:11.417413 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:11.417438 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:11.594489 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:11.594513 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:11.788254 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:11.788279 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:11.959359 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:11.959385 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:12.158883 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:12.158923 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:12.334142 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:12.334204 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:12.529106 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:12.529131 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:11:12.706136 2019] [authz_host:error] [pid 28280] [client 192.168.1.99:8337] AH01753: access check of 'localhost' to /phpmyadmin failed, reason: unable to get the remote host name
[Fri May 31 10:11:12.706162 2019] [authz_core:error] [pid 28280] [client 192.168.1.99:8337] AH01630: client denied by server configuration: /usr/local/www/phpMyAdmin/
[Fri May 31 10:13:56.635842 2019] [mpm_prefork:notice] [pid 28275] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:13:57.622272 2019] [mpm_prefork:notice] [pid 28329] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:13:57.622319 2019] [core:notice] [pid 28329] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:14:21.290407 2019] [php7:notice] [pid 28331] [client 192.168.1.99:8351] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:14:21.290464 2019] [php7:error] [pid 28331] [client 192.168.1.99:8351] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:15:55.294502 2019] [php7:notice] [pid 28345] [client 192.168.1.99:8364] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:15:55.294563 2019] [php7:error] [pid 28345] [client 192.168.1.99:8364] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:16:21.443855 2019] [php7:notice] [pid 28330] [client 192.168.1.99:8370] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:16:21.443922 2019] [php7:error] [pid 28330] [client 192.168.1.99:8370] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Fri May 31 10:17:24.394655 2019] [php7:notice] [pid 28341] [client 192.168.1.99:8407] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:24.394711 2019] [php7:error] [pid 28341] [client 192.168.1.99:8407] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:25.258672 2019] [php7:notice] [pid 28331] [client 192.168.1.99:8408] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:25.258709 2019] [php7:error] [pid 28331] [client 192.168.1.99:8408] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:25.599534 2019] [php7:notice] [pid 28342] [client 192.168.1.99:8409] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:25.599610 2019] [php7:error] [pid 28342] [client 192.168.1.99:8409] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:37.235633 2019] [mpm_prefork:notice] [pid 28329] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:17:38.213106 2019] [mpm_prefork:notice] [pid 28384] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:17:38.213169 2019] [core:notice] [pid 28384] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:17:39.334435 2019] [php7:notice] [pid 28385] [client 192.168.1.99:8412] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:39.334503 2019] [php7:error] [pid 28385] [client 192.168.1.99:8412] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:39.849425 2019] [php7:notice] [pid 28386] [client 192.168.1.99:8413] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:39.849500 2019] [php7:error] [pid 28386] [client 192.168.1.99:8413] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:40.055206 2019] [php7:notice] [pid 28387] [client 192.168.1.99:8414] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:40.055280 2019] [php7:error] [pid 28387] [client 192.168.1.99:8414] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:40.241314 2019] [php7:notice] [pid 28388] [client 192.168.1.99:8415] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:40.241389 2019] [php7:error] [pid 28388] [client 192.168.1.99:8415] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:40.781301 2019] [php7:notice] [pid 28389] [client 192.168.1.99:8416] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:40.781377 2019] [php7:error] [pid 28389] [client 192.168.1.99:8416] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:41.790716 2019] [php7:notice] [pid 28385] [client 192.168.1.99:8417] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:41.790757 2019] [php7:error] [pid 28385] [client 192.168.1.99:8417] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:42.825689 2019] [php7:notice] [pid 28386] [client 192.168.1.99:8418] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:42.825732 2019] [php7:error] [pid 28386] [client 192.168.1.99:8418] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:44.675326 2019] [php7:notice] [pid 28387] [client 192.168.1.99:8419] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:17:44.675362 2019] [php7:error] [pid 28387] [client 192.168.1.99:8419] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:18:47.148618 2019] [mpm_prefork:notice] [pid 28384] AH00171: Graceful restart requested, doing restart
AH00557: httpd: apr_sockaddr_info_get() failed for DenizeriMT2
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Fri May 31 10:18:47.538628 2019] [mpm_prefork:notice] [pid 28384] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:18:47.538669 2019] [core:notice] [pid 28384] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:20:16.621823 2019] [mpm_prefork:notice] [pid 28384] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:20:16.814085 2019] [mpm_prefork:notice] [pid 28450] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:20:16.814134 2019] [core:notice] [pid 28450] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:20:22.531699 2019] [php7:notice] [pid 28451] [client 192.168.1.99:8437] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:20:22.531760 2019] [php7:error] [pid 28451] [client 192.168.1.99:8437] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:20:23.054845 2019] [php7:notice] [pid 28453] [client 192.168.1.99:8438] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:20:23.054919 2019] [php7:error] [pid 28453] [client 192.168.1.99:8438] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:20:23.255721 2019] [php7:notice] [pid 28452] [client 192.168.1.99:8439] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:20:23.255798 2019] [php7:error] [pid 28452] [client 192.168.1.99:8439] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:24:42.455589 2019] [mpm_prefork:notice] [pid 28450] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:24:42.654379 2019] [mpm_prefork:notice] [pid 28496] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:24:42.654452 2019] [core:notice] [pid 28496] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:24:46.258627 2019] [php7:notice] [pid 28497] [client 192.168.1.99:8468] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:24:46.258710 2019] [php7:error] [pid 28497] [client 192.168.1.99:8468] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:16.957617 2019] [mpm_prefork:notice] [pid 28496] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:32:17.163840 2019] [mpm_prefork:notice] [pid 28530] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:32:17.163898 2019] [core:notice] [pid 28530] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:32:22.551080 2019] [php7:notice] [pid 28531] [client 192.168.1.99:8595] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:22.551142 2019] [php7:error] [pid 28531] [client 192.168.1.99:8595] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:23.828192 2019] [php7:notice] [pid 28535] [client 192.168.1.99:8596] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:23.828273 2019] [php7:error] [pid 28535] [client 192.168.1.99:8596] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:26.164320 2019] [php7:notice] [pid 28533] [client 192.168.1.99:8598] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:26.164320 2019] [php7:error] [pid 28533] [client 192.168.1.99:8598] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:27.257809 2019] [php7:notice] [pid 28532] [client 192.168.1.99:8599] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:27.257888 2019] [php7:error] [pid 28532] [client 192.168.1.99:8599] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:28.390844 2019] [php7:notice] [pid 28534] [client 192.168.1.99:8600] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:32:28.390923 2019] [php7:error] [pid 28534] [client 192.168.1.99:8600] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/index.php on line 11
[Fri May 31 10:33:08.446542 2019] [mpm_prefork:notice] [pid 28530] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:33:08.638848 2019] [mpm_prefork:notice] [pid 28569] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:33:08.638899 2019] [core:notice] [pid 28569] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:33:10.238809 2019] [php7:notice] [pid 28571] [client 192.168.1.99:8604] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:10.238849 2019] [php7:error] [pid 28571] [client 192.168.1.99:8604] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:10.959593 2019] [php7:notice] [pid 28572] [client 192.168.1.99:8605] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:10.959703 2019] [php7:error] [pid 28572] [client 192.168.1.99:8605] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:18.653473 2019] [php7:notice] [pid 28573] [client 192.168.1.99:8606] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:18.653575 2019] [php7:error] [pid 28573] [client 192.168.1.99:8606] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:19.561864 2019] [php7:notice] [pid 28574] [client 192.168.1.99:8608] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:19.561948 2019] [php7:error] [pid 28574] [client 192.168.1.99:8608] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:20.030724 2019] [php7:notice] [pid 28570] [client 192.168.1.99:8609] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:20.030797 2019] [php7:error] [pid 28570] [client 192.168.1.99:8609] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:20.210516 2019] [php7:notice] [pid 28571] [client 192.168.1.99:8610] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:20.210569 2019] [php7:error] [pid 28571] [client 192.168.1.99:8610] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11
[Fri May 31 10:33:22.507038 2019] [php7:notice] [pid 28575] [client 192.168.1.99:8611] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11, referer: http://192.168.1.6/
[Fri May 31 10:33:22.507108 2019] [php7:error] [pid 28575] [client 192.168.1.99:8611] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11, referer: http://192.168.1.6/
[Fri May 31 10:33:25.856436 2019] [php7:notice] [pid 28572] [client 192.168.1.99:8612] PHP Notice:  Undefined variable: wmcp in /usr/local/www/apache24/data/Darkmmo/index.php on line 11, referer: http://192.168.1.6/
[Fri May 31 10:33:25.856483 2019] [php7:error] [pid 28572] [client 192.168.1.99:8612] PHP Fatal error:  Uncaught Error: Call to a member function head() on null in /usr/local/www/apache24/data/Darkmmo/index.php:11\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/Darkmmo/index.php on line 11, referer: http://192.168.1.6/
[Fri May 31 10:35:24.856347 2019] [mpm_prefork:notice] [pid 28569] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:35:25.051223 2019] [mpm_prefork:notice] [pid 28598] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:35:25.051274 2019] [core:notice] [pid 28598] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:40:20.971694 2019] [mpm_prefork:notice] [pid 28598] AH00171: Graceful restart requested, doing restart
[Fri May 31 10:40:21.091765 2019] [mpm_prefork:notice] [pid 28598] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:40:21.091805 2019] [core:notice] [pid 28598] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:49:46.027783 2019] [mpm_prefork:notice] [pid 28598] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:49:46.230097 2019] [mpm_prefork:notice] [pid 28720] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:49:46.230148 2019] [core:notice] [pid 28720] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 10:49:51.881962 2019] [mpm_prefork:notice] [pid 28720] AH00169: caught SIGTERM, shutting down
[Fri May 31 10:49:52.071590 2019] [mpm_prefork:notice] [pid 28745] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 10:49:52.071639 2019] [core:notice] [pid 28745] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 11:02:40.491529 2019] [mpm_prefork:notice] [pid 28745] AH00169: caught SIGTERM, shutting down
[Fri May 31 11:02:40.683867 2019] [mpm_prefork:notice] [pid 35368] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Fri May 31 11:02:40.683933 2019] [core:notice] [pid 35368] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 11:11:10.652675 2019] [authz_core:error] [pid 35369] [client 127.0.0.1:39218] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 12:25:51.376458 2019] [mpm_prefork:notice] [pid 35368] AH00169: caught SIGTERM, shutting down
[Fri May 31 14:52:20.683757 2019] [mpm_prefork:notice] [pid 1918] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Fri May 31 14:52:20.690946 2019] [core:notice] [pid 1918] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Fri May 31 15:03:26.091777 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1040] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:03:26.727347 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1040] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:03:27.054886 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1040] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:03:27.238157 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1040] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:03:27.466523 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1040] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:03:27.621140 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1040] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:03:43.318306 2019] [authz_core:error] [pid 1925] [client 159.146.61.16:1042] AH01630: client denied by server configuration: /usr/local/www/apache24
[Fri May 31 15:04:19.855396 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:20.330423 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:20.508780 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:20.672144 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:20.822777 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:20.976724 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:21.114941 2019] [authz_core:error] [pid 4355] [client 159.146.61.16:1045] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:04:43.456866 2019] [authz_core:error] [pid 1920] [client 159.146.61.16:1047] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:17:18.278623 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1121] AH01630: client denied by server configuration: /usr/local/www
[Fri May 31 15:17:18.367535 2019] [authz_core:error] [pid 1921] [client 159.146.61.16:1121] AH01630: client denied by server configuration: /usr/local/www, referer: http://159.146.61.17/
[Tue Jun 04 05:07:55.336456 2019] [mpm_prefork:notice] [pid 1913] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 05:07:55.360601 2019] [core:notice] [pid 1913] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 05:12:22.281574 2019] [mpm_prefork:notice] [pid 1913] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 05:12:22.423024 2019] [mpm_prefork:notice] [pid 2045] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 05:12:22.423614 2019] [core:notice] [pid 2045] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 05:19:03.931046 2019] [mpm_prefork:notice] [pid 2045] AH00171: Graceful restart requested, doing restart
AH00557: httpd: apr_sockaddr_info_get() failed for DenizeriMT2
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Tue Jun 04 05:19:03.953255 2019] [mpm_prefork:notice] [pid 2045] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 05:19:03.953269 2019] [core:notice] [pid 2045] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 05:21:01.902032 2019] [mpm_prefork:notice] [pid 2045] AH00171: Graceful restart requested, doing restart
AH00557: httpd: apr_sockaddr_info_get() failed for DenizeriMT2
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Tue Jun 04 05:21:01.933633 2019] [mpm_prefork:notice] [pid 2045] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 05:21:01.933647 2019] [core:notice] [pid 2045] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 05:23:35.383938 2019] [mpm_prefork:notice] [pid 2045] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 05:24:21.975987 2019] [mpm_prefork:notice] [pid 1905] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 05:24:21.976811 2019] [core:notice] [pid 1905] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 05:41:04.359945 2019] [mpm_prefork:notice] [pid 1905] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 07:17:06.010465 2019] [mpm_prefork:notice] [pid 1904] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 07:17:06.016681 2019] [core:notice] [pid 1904] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 07:25:14.130878 2019] [mpm_prefork:notice] [pid 1904] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 07:25:14.666347 2019] [mpm_prefork:notice] [pid 2946] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 07:25:14.666465 2019] [core:notice] [pid 2946] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 07:26:29.052013 2019] [mpm_prefork:notice] [pid 2946] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 07:26:29.569804 2019] [mpm_prefork:notice] [pid 2977] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 07:26:29.569947 2019] [core:notice] [pid 2977] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 07:26:57.057254 2019] [mpm_prefork:notice] [pid 2977] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 07:26:57.185253 2019] [mpm_prefork:notice] [pid 3001] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 07:26:57.185373 2019] [core:notice] [pid 3001] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 07:29:21.721772 2019] [mpm_prefork:notice] [pid 3001] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 07:29:21.860211 2019] [mpm_prefork:notice] [pid 3028] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 07:29:21.860327 2019] [core:notice] [pid 3028] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:03:55.914220 2019] [mpm_prefork:notice] [pid 3028] AH00171: Graceful restart requested, doing restart
[Tue Jun 04 08:03:55.939856 2019] [mpm_prefork:notice] [pid 3028] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 08:03:55.939872 2019] [core:notice] [pid 3028] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:04:40.048793 2019] [mpm_prefork:notice] [pid 3028] AH00171: Graceful restart requested, doing restart
[Tue Jun 04 08:04:40.071032 2019] [mpm_prefork:notice] [pid 3028] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 08:04:40.071063 2019] [core:notice] [pid 3028] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:04:54.644372 2019] [mpm_prefork:notice] [pid 3028] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:04:54.770572 2019] [mpm_prefork:notice] [pid 31902] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 08:04:54.770726 2019] [core:notice] [pid 31902] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:06:51.116911 2019] [mpm_prefork:notice] [pid 31902] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:06:51.245048 2019] [mpm_prefork:notice] [pid 31932] AH00163: Apache/2.4.39 (FreeBSD) configured -- resuming normal operations
[Tue Jun 04 08:06:51.245199 2019] [core:notice] [pid 31932] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:09:04.978426 2019] [mpm_prefork:notice] [pid 31932] AH00169: caught SIGTERM, shutting down
PHP Warning:  Failed loading Zend extension 'opcache.so' (tried: /usr/local/lib/php/20170718/opcache.so (Cannot open "/usr/local/lib/php/20170718/opcache.so"), /usr/local/lib/php/20170718/opcache.so.so (Cannot open "/usr/local/lib/php/20170718/opcache.so.so")) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'session.so' (tried: /usr/local/lib/php/20170718/session.so (Cannot open &quot;/usr/local/lib/php/20170718/session.so&quot;), /usr/local/lib/php/20170718/session.so.so (Cannot open &quot;/usr/local/lib/php/20170718/session.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'ctype.so' (tried: /usr/local/lib/php/20170718/ctype.so (Cannot open &quot;/usr/local/lib/php/20170718/ctype.so&quot;), /usr/local/lib/php/20170718/ctype.so.so (Cannot open &quot;/usr/local/lib/php/20170718/ctype.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'curl.so' (tried: /usr/local/lib/php/20170718/curl.so (Cannot open &quot;/usr/local/lib/php/20170718/curl.so&quot;), /usr/local/lib/php/20170718/curl.so.so (Cannot open &quot;/usr/local/lib/php/20170718/curl.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'dom.so' (tried: /usr/local/lib/php/20170718/dom.so (Cannot open &quot;/usr/local/lib/php/20170718/dom.so&quot;), /usr/local/lib/php/20170718/dom.so.so (Cannot open &quot;/usr/local/lib/php/20170718/dom.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'filter.so' (tried: /usr/local/lib/php/20170718/filter.so (Cannot open &quot;/usr/local/lib/php/20170718/filter.so&quot;), /usr/local/lib/php/20170718/filter.so.so (Cannot open &quot;/usr/local/lib/php/20170718/filter.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'hash.so' (tried: /usr/local/lib/php/20170718/hash.so (Cannot open &quot;/usr/local/lib/php/20170718/hash.so&quot;), /usr/local/lib/php/20170718/hash.so.so (Cannot open &quot;/usr/local/lib/php/20170718/hash.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'iconv.so' (tried: /usr/local/lib/php/20170718/iconv.so (Cannot open &quot;/usr/local/lib/php/20170718/iconv.so&quot;), /usr/local/lib/php/20170718/iconv.so.so (Cannot open &quot;/usr/local/lib/php/20170718/iconv.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'json.so' (tried: /usr/local/lib/php/20170718/json.so (Cannot open &quot;/usr/local/lib/php/20170718/json.so&quot;), /usr/local/lib/php/20170718/json.so.so (Cannot open &quot;/usr/local/lib/php/20170718/json.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'pdo.so' (tried: /usr/local/lib/php/20170718/pdo.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo.so&quot;), /usr/local/lib/php/20170718/pdo.so.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'posix.so' (tried: /usr/local/lib/php/20170718/posix.so (Cannot open &quot;/usr/local/lib/php/20170718/posix.so&quot;), /usr/local/lib/php/20170718/posix.so.so (Cannot open &quot;/usr/local/lib/php/20170718/posix.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'simplexml.so' (tried: /usr/local/lib/php/20170718/simplexml.so (Cannot open &quot;/usr/local/lib/php/20170718/simplexml.so&quot;), /usr/local/lib/php/20170718/simplexml.so.so (Cannot open &quot;/usr/local/lib/php/20170718/simplexml.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'sqlite3.so' (tried: /usr/local/lib/php/20170718/sqlite3.so (Cannot open &quot;/usr/local/lib/php/20170718/sqlite3.so&quot;), /usr/local/lib/php/20170718/sqlite3.so.so (Cannot open &quot;/usr/local/lib/php/20170718/sqlite3.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'tokenizer.so' (tried: /usr/local/lib/php/20170718/tokenizer.so (Cannot open &quot;/usr/local/lib/php/20170718/tokenizer.so&quot;), /usr/local/lib/php/20170718/tokenizer.so.so (Cannot open &quot;/usr/local/lib/php/20170718/tokenizer.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xml.so' (tried: /usr/local/lib/php/20170718/xml.so (Cannot open &quot;/usr/local/lib/php/20170718/xml.so&quot;), /usr/local/lib/php/20170718/xml.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xml.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xmlwriter.so' (tried: /usr/local/lib/php/20170718/xmlwriter.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlwriter.so&quot;), /usr/local/lib/php/20170718/xmlwriter.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlwriter.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'pdo_sqlite.so' (tried: /usr/local/lib/php/20170718/pdo_sqlite.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo_sqlite.so&quot;), /usr/local/lib/php/20170718/pdo_sqlite.so.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo_sqlite.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'phar.so' (tried: /usr/local/lib/php/20170718/phar.so (Cannot open &quot;/usr/local/lib/php/20170718/phar.so&quot;), /usr/local/lib/php/20170718/phar.so.so (Cannot open &quot;/usr/local/lib/php/20170718/phar.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xmlreader.so' (tried: /usr/local/lib/php/20170718/xmlreader.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlreader.so&quot;), /usr/local/lib/php/20170718/xmlreader.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlreader.so.so&quot;)) in Unknown on line 0
[Tue Jun 04 08:09:05.175347 2019] [mpm_prefork:notice] [pid 31982] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:09:05.175405 2019] [core:notice] [pid 31982] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:09:19.833109 2019] [mpm_prefork:notice] [pid 31982] AH00171: Graceful restart requested, doing restart
PHP Warning:  Failed loading Zend extension 'opcache.so' (tried: /usr/local/lib/php/20170718/opcache.so (Cannot open "/usr/local/lib/php/20170718/opcache.so"), /usr/local/lib/php/20170718/opcache.so.so (Cannot open "/usr/local/lib/php/20170718/opcache.so.so")) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'session.so' (tried: /usr/local/lib/php/20170718/session.so (Cannot open &quot;/usr/local/lib/php/20170718/session.so&quot;), /usr/local/lib/php/20170718/session.so.so (Cannot open &quot;/usr/local/lib/php/20170718/session.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'ctype.so' (tried: /usr/local/lib/php/20170718/ctype.so (Cannot open &quot;/usr/local/lib/php/20170718/ctype.so&quot;), /usr/local/lib/php/20170718/ctype.so.so (Cannot open &quot;/usr/local/lib/php/20170718/ctype.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'curl.so' (tried: /usr/local/lib/php/20170718/curl.so (Cannot open &quot;/usr/local/lib/php/20170718/curl.so&quot;), /usr/local/lib/php/20170718/curl.so.so (Cannot open &quot;/usr/local/lib/php/20170718/curl.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'dom.so' (tried: /usr/local/lib/php/20170718/dom.so (Cannot open &quot;/usr/local/lib/php/20170718/dom.so&quot;), /usr/local/lib/php/20170718/dom.so.so (Cannot open &quot;/usr/local/lib/php/20170718/dom.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'filter.so' (tried: /usr/local/lib/php/20170718/filter.so (Cannot open &quot;/usr/local/lib/php/20170718/filter.so&quot;), /usr/local/lib/php/20170718/filter.so.so (Cannot open &quot;/usr/local/lib/php/20170718/filter.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'hash.so' (tried: /usr/local/lib/php/20170718/hash.so (Cannot open &quot;/usr/local/lib/php/20170718/hash.so&quot;), /usr/local/lib/php/20170718/hash.so.so (Cannot open &quot;/usr/local/lib/php/20170718/hash.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'iconv.so' (tried: /usr/local/lib/php/20170718/iconv.so (Cannot open &quot;/usr/local/lib/php/20170718/iconv.so&quot;), /usr/local/lib/php/20170718/iconv.so.so (Cannot open &quot;/usr/local/lib/php/20170718/iconv.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'json.so' (tried: /usr/local/lib/php/20170718/json.so (Cannot open &quot;/usr/local/lib/php/20170718/json.so&quot;), /usr/local/lib/php/20170718/json.so.so (Cannot open &quot;/usr/local/lib/php/20170718/json.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'pdo.so' (tried: /usr/local/lib/php/20170718/pdo.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo.so&quot;), /usr/local/lib/php/20170718/pdo.so.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'posix.so' (tried: /usr/local/lib/php/20170718/posix.so (Cannot open &quot;/usr/local/lib/php/20170718/posix.so&quot;), /usr/local/lib/php/20170718/posix.so.so (Cannot open &quot;/usr/local/lib/php/20170718/posix.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'simplexml.so' (tried: /usr/local/lib/php/20170718/simplexml.so (Cannot open &quot;/usr/local/lib/php/20170718/simplexml.so&quot;), /usr/local/lib/php/20170718/simplexml.so.so (Cannot open &quot;/usr/local/lib/php/20170718/simplexml.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'sqlite3.so' (tried: /usr/local/lib/php/20170718/sqlite3.so (Cannot open &quot;/usr/local/lib/php/20170718/sqlite3.so&quot;), /usr/local/lib/php/20170718/sqlite3.so.so (Cannot open &quot;/usr/local/lib/php/20170718/sqlite3.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'tokenizer.so' (tried: /usr/local/lib/php/20170718/tokenizer.so (Cannot open &quot;/usr/local/lib/php/20170718/tokenizer.so&quot;), /usr/local/lib/php/20170718/tokenizer.so.so (Cannot open &quot;/usr/local/lib/php/20170718/tokenizer.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xml.so' (tried: /usr/local/lib/php/20170718/xml.so (Cannot open &quot;/usr/local/lib/php/20170718/xml.so&quot;), /usr/local/lib/php/20170718/xml.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xml.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xmlwriter.so' (tried: /usr/local/lib/php/20170718/xmlwriter.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlwriter.so&quot;), /usr/local/lib/php/20170718/xmlwriter.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlwriter.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'pdo_sqlite.so' (tried: /usr/local/lib/php/20170718/pdo_sqlite.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo_sqlite.so&quot;), /usr/local/lib/php/20170718/pdo_sqlite.so.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo_sqlite.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'phar.so' (tried: /usr/local/lib/php/20170718/phar.so (Cannot open &quot;/usr/local/lib/php/20170718/phar.so&quot;), /usr/local/lib/php/20170718/phar.so.so (Cannot open &quot;/usr/local/lib/php/20170718/phar.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xmlreader.so' (tried: /usr/local/lib/php/20170718/xmlreader.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlreader.so&quot;), /usr/local/lib/php/20170718/xmlreader.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlreader.so.so&quot;)) in Unknown on line 0
[Tue Jun 04 08:09:19.892627 2019] [mpm_prefork:notice] [pid 31982] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:09:19.892667 2019] [core:notice] [pid 31982] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:09:25.134559 2019] [mpm_prefork:notice] [pid 31982] AH00171: Graceful restart requested, doing restart
PHP Warning:  Failed loading Zend extension 'opcache.so' (tried: /usr/local/lib/php/20170718/opcache.so (Cannot open "/usr/local/lib/php/20170718/opcache.so"), /usr/local/lib/php/20170718/opcache.so.so (Cannot open "/usr/local/lib/php/20170718/opcache.so.so")) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'session.so' (tried: /usr/local/lib/php/20170718/session.so (Cannot open &quot;/usr/local/lib/php/20170718/session.so&quot;), /usr/local/lib/php/20170718/session.so.so (Cannot open &quot;/usr/local/lib/php/20170718/session.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'ctype.so' (tried: /usr/local/lib/php/20170718/ctype.so (Cannot open &quot;/usr/local/lib/php/20170718/ctype.so&quot;), /usr/local/lib/php/20170718/ctype.so.so (Cannot open &quot;/usr/local/lib/php/20170718/ctype.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'curl.so' (tried: /usr/local/lib/php/20170718/curl.so (Cannot open &quot;/usr/local/lib/php/20170718/curl.so&quot;), /usr/local/lib/php/20170718/curl.so.so (Cannot open &quot;/usr/local/lib/php/20170718/curl.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'dom.so' (tried: /usr/local/lib/php/20170718/dom.so (Cannot open &quot;/usr/local/lib/php/20170718/dom.so&quot;), /usr/local/lib/php/20170718/dom.so.so (Cannot open &quot;/usr/local/lib/php/20170718/dom.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'filter.so' (tried: /usr/local/lib/php/20170718/filter.so (Cannot open &quot;/usr/local/lib/php/20170718/filter.so&quot;), /usr/local/lib/php/20170718/filter.so.so (Cannot open &quot;/usr/local/lib/php/20170718/filter.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'hash.so' (tried: /usr/local/lib/php/20170718/hash.so (Cannot open &quot;/usr/local/lib/php/20170718/hash.so&quot;), /usr/local/lib/php/20170718/hash.so.so (Cannot open &quot;/usr/local/lib/php/20170718/hash.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'iconv.so' (tried: /usr/local/lib/php/20170718/iconv.so (Cannot open &quot;/usr/local/lib/php/20170718/iconv.so&quot;), /usr/local/lib/php/20170718/iconv.so.so (Cannot open &quot;/usr/local/lib/php/20170718/iconv.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'json.so' (tried: /usr/local/lib/php/20170718/json.so (Cannot open &quot;/usr/local/lib/php/20170718/json.so&quot;), /usr/local/lib/php/20170718/json.so.so (Cannot open &quot;/usr/local/lib/php/20170718/json.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'pdo.so' (tried: /usr/local/lib/php/20170718/pdo.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo.so&quot;), /usr/local/lib/php/20170718/pdo.so.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'posix.so' (tried: /usr/local/lib/php/20170718/posix.so (Cannot open &quot;/usr/local/lib/php/20170718/posix.so&quot;), /usr/local/lib/php/20170718/posix.so.so (Cannot open &quot;/usr/local/lib/php/20170718/posix.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'simplexml.so' (tried: /usr/local/lib/php/20170718/simplexml.so (Cannot open &quot;/usr/local/lib/php/20170718/simplexml.so&quot;), /usr/local/lib/php/20170718/simplexml.so.so (Cannot open &quot;/usr/local/lib/php/20170718/simplexml.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'sqlite3.so' (tried: /usr/local/lib/php/20170718/sqlite3.so (Cannot open &quot;/usr/local/lib/php/20170718/sqlite3.so&quot;), /usr/local/lib/php/20170718/sqlite3.so.so (Cannot open &quot;/usr/local/lib/php/20170718/sqlite3.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'tokenizer.so' (tried: /usr/local/lib/php/20170718/tokenizer.so (Cannot open &quot;/usr/local/lib/php/20170718/tokenizer.so&quot;), /usr/local/lib/php/20170718/tokenizer.so.so (Cannot open &quot;/usr/local/lib/php/20170718/tokenizer.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xml.so' (tried: /usr/local/lib/php/20170718/xml.so (Cannot open &quot;/usr/local/lib/php/20170718/xml.so&quot;), /usr/local/lib/php/20170718/xml.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xml.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xmlwriter.so' (tried: /usr/local/lib/php/20170718/xmlwriter.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlwriter.so&quot;), /usr/local/lib/php/20170718/xmlwriter.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlwriter.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'pdo_sqlite.so' (tried: /usr/local/lib/php/20170718/pdo_sqlite.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo_sqlite.so&quot;), /usr/local/lib/php/20170718/pdo_sqlite.so.so (Cannot open &quot;/usr/local/lib/php/20170718/pdo_sqlite.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'phar.so' (tried: /usr/local/lib/php/20170718/phar.so (Cannot open &quot;/usr/local/lib/php/20170718/phar.so&quot;), /usr/local/lib/php/20170718/phar.so.so (Cannot open &quot;/usr/local/lib/php/20170718/phar.so.so&quot;)) in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library 'xmlreader.so' (tried: /usr/local/lib/php/20170718/xmlreader.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlreader.so&quot;), /usr/local/lib/php/20170718/xmlreader.so.so (Cannot open &quot;/usr/local/lib/php/20170718/xmlreader.so.so&quot;)) in Unknown on line 0
[Tue Jun 04 08:09:25.183392 2019] [mpm_prefork:notice] [pid 31982] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:09:25.183419 2019] [core:notice] [pid 31982] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:10:58.056820 2019] [mpm_prefork:notice] [pid 31982] AH00171: Graceful restart requested, doing restart
[Tue Jun 04 08:10:58.121255 2019] [mpm_prefork:notice] [pid 31982] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:10:58.121318 2019] [core:notice] [pid 31982] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:12:06.662762 2019] [mpm_prefork:notice] [pid 31982] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:12:06.840672 2019] [mpm_prefork:notice] [pid 32182] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:12:06.840733 2019] [core:notice] [pid 32182] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:12:10.124017 2019] [php7:notice] [pid 32183] [client 192.168.1.99:63125] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:10.124075 2019] [php7:error] [pid 32183] [client 192.168.1.99:63125] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:10.906406 2019] [php7:notice] [pid 32184] [client 192.168.1.99:63126] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:10.906480 2019] [php7:error] [pid 32184] [client 192.168.1.99:63126] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:11.140667 2019] [php7:notice] [pid 32185] [client 192.168.1.99:63127] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:11.140804 2019] [php7:error] [pid 32185] [client 192.168.1.99:63127] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:11.315600 2019] [php7:notice] [pid 32186] [client 192.168.1.99:63128] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:11.315676 2019] [php7:error] [pid 32186] [client 192.168.1.99:63128] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:14.320141 2019] [php7:notice] [pid 32187] [client 192.168.1.99:63129] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:14.320219 2019] [php7:error] [pid 32187] [client 192.168.1.99:63129] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.038086 2019] [php7:notice] [pid 32183] [client 192.168.1.99:63130] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.038125 2019] [php7:error] [pid 32183] [client 192.168.1.99:63130] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.355996 2019] [php7:notice] [pid 32184] [client 192.168.1.99:63131] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.356030 2019] [php7:error] [pid 32184] [client 192.168.1.99:63131] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.579643 2019] [php7:notice] [pid 32188] [client 192.168.1.99:63132] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.579715 2019] [php7:error] [pid 32188] [client 192.168.1.99:63132] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.766971 2019] [php7:notice] [pid 32185] [client 192.168.1.99:63133] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:15.767011 2019] [php7:error] [pid 32185] [client 192.168.1.99:63133] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:16.908619 2019] [php7:notice] [pid 32186] [client 192.168.1.99:63134] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:12:16.908662 2019] [php7:error] [pid 32186] [client 192.168.1.99:63134] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:13:37.749038 2019] [mpm_prefork:notice] [pid 32182] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:13:37.973758 2019] [mpm_prefork:notice] [pid 32229] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:13:37.973832 2019] [core:notice] [pid 32229] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:13:40.706135 2019] [php7:notice] [pid 32230] [client 192.168.1.99:63148] PHP Notice:  Undefined variable: db in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:13:40.706202 2019] [php7:error] [pid 32230] [client 192.168.1.99:63148] PHP Fatal error:  Uncaught Error: Call to a member function prepare() on null in /usr/local/www/apache24/data/header.php:3\nStack trace:\n#0 /usr/local/www/apache24/data/index.php(1): include()\n#1 {main}\n  thrown in /usr/local/www/apache24/data/header.php on line 3
[Tue Jun 04 08:15:38.351411 2019] [mpm_prefork:notice] [pid 32229] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:15:38.548520 2019] [mpm_prefork:notice] [pid 32258] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:15:38.548612 2019] [core:notice] [pid 32258] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:16:24.475732 2019] [mpm_prefork:notice] [pid 32258] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:16:24.690843 2019] [mpm_prefork:notice] [pid 32286] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:16:24.690911 2019] [core:notice] [pid 32286] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:18:57.083933 2019] [mpm_prefork:notice] [pid 32286] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:18:57.282450 2019] [mpm_prefork:notice] [pid 37424] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:18:57.282506 2019] [core:notice] [pid 37424] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:19:16.120742 2019] [mpm_prefork:notice] [pid 37424] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:19:16.296917 2019] [mpm_prefork:notice] [pid 37456] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:19:16.297142 2019] [core:notice] [pid 37456] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:19:41.068540 2019] [mpm_prefork:notice] [pid 37456] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:19:41.261817 2019] [mpm_prefork:notice] [pid 37484] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:19:41.261874 2019] [core:notice] [pid 37484] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:19:56.837014 2019] [mpm_prefork:notice] [pid 37484] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:19:57.012691 2019] [mpm_prefork:notice] [pid 37516] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:19:57.012751 2019] [core:notice] [pid 37516] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:21:53.377509 2019] [mpm_prefork:notice] [pid 37516] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:21:53.586705 2019] [mpm_prefork:notice] [pid 37550] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:21:53.586770 2019] [core:notice] [pid 37550] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:24:55.526694 2019] [mpm_prefork:notice] [pid 37550] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:26:09.762618 2019] [mpm_prefork:notice] [pid 1916] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:26:09.771140 2019] [core:notice] [pid 1916] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:35:14.750960 2019] [mpm_prefork:notice] [pid 1916] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:35:14.934680 2019] [mpm_prefork:notice] [pid 3573] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:35:14.934729 2019] [core:notice] [pid 3573] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:35:21.653469 2019] [php7:warn] [pid 3574] [client 159.146.61.16:2422] PHP Warning:  Use of undefined constant TEMA_DIZIN - assumed 'TEMA_DIZIN' (this will throw an Error in a future version of PHP) in /usr/local/www/apache24/data/PANEL/index.php on line 4, referer: http://159.146.61.17/
[Tue Jun 04 08:35:21.653508 2019] [php7:notice] [pid 3574] [client 159.146.61.16:2422] PHP Notice:  Undefined variable: tema in /usr/local/www/apache24/data/PANEL/index.php on line 8, referer: http://159.146.61.17/
[Tue Jun 04 08:35:21.653545 2019] [php7:error] [pid 3574] [client 159.146.61.16:2422] PHP Fatal error:  Uncaught Error: Call to a member function header() on null in /usr/local/www/apache24/data/PANEL/index.php:8\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/PANEL/index.php on line 8, referer: http://159.146.61.17/
[Tue Jun 04 08:35:34.408540 2019] [php7:warn] [pid 3581] [client 159.146.61.16:2446] PHP Warning:  Use of undefined constant TEMA_DIZIN - assumed 'TEMA_DIZIN' (this will throw an Error in a future version of PHP) in /usr/local/www/apache24/data/PANEL/index.php on line 4, referer: http://159.146.61.17/
[Tue Jun 04 08:35:34.408609 2019] [php7:notice] [pid 3581] [client 159.146.61.16:2446] PHP Notice:  Undefined variable: tema in /usr/local/www/apache24/data/PANEL/index.php on line 8, referer: http://159.146.61.17/
[Tue Jun 04 08:35:34.408680 2019] [php7:error] [pid 3581] [client 159.146.61.16:2446] PHP Fatal error:  Uncaught Error: Call to a member function header() on null in /usr/local/www/apache24/data/PANEL/index.php:8\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/PANEL/index.php on line 8, referer: http://159.146.61.17/
[Tue Jun 04 08:35:35.462309 2019] [php7:warn] [pid 3580] [client 159.146.61.16:2447] PHP Warning:  Use of undefined constant TEMA_DIZIN - assumed 'TEMA_DIZIN' (this will throw an Error in a future version of PHP) in /usr/local/www/apache24/data/PANEL/index.php on line 4, referer: http://159.146.61.17/
[Tue Jun 04 08:35:35.462349 2019] [php7:notice] [pid 3580] [client 159.146.61.16:2447] PHP Notice:  Undefined variable: tema in /usr/local/www/apache24/data/PANEL/index.php on line 8, referer: http://159.146.61.17/
[Tue Jun 04 08:35:35.462428 2019] [php7:error] [pid 3580] [client 159.146.61.16:2447] PHP Fatal error:  Uncaught Error: Call to a member function header() on null in /usr/local/www/apache24/data/PANEL/index.php:8\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/PANEL/index.php on line 8, referer: http://159.146.61.17/
[Tue Jun 04 08:35:38.695006 2019] [php7:warn] [pid 3582] [client 159.146.61.16:2448] PHP Warning:  Use of undefined constant TEMA_DIZIN - assumed 'TEMA_DIZIN' (this will throw an Error in a future version of PHP) in /usr/local/www/apache24/data/PANEL/index.php on line 4
[Tue Jun 04 08:35:38.695084 2019] [php7:notice] [pid 3582] [client 159.146.61.16:2448] PHP Notice:  Undefined variable: tema in /usr/local/www/apache24/data/PANEL/index.php on line 8
[Tue Jun 04 08:35:38.695146 2019] [php7:error] [pid 3582] [client 159.146.61.16:2448] PHP Fatal error:  Uncaught Error: Call to a member function header() on null in /usr/local/www/apache24/data/PANEL/index.php:8\nStack trace:\n#0 {main}\n  thrown in /usr/local/www/apache24/data/PANEL/index.php on line 8
[Tue Jun 04 08:38:09.867562 2019] [mpm_prefork:notice] [pid 3573] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:38:10.053859 2019] [mpm_prefork:notice] [pid 3602] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:38:10.053911 2019] [core:notice] [pid 3602] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:39:58.352560 2019] [mpm_prefork:notice] [pid 3602] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:39:58.530975 2019] [mpm_prefork:notice] [pid 3630] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:39:58.531022 2019] [core:notice] [pid 3630] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:40:24.788750 2019] [mpm_prefork:notice] [pid 3630] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:40:24.984301 2019] [mpm_prefork:notice] [pid 3658] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:40:24.984364 2019] [core:notice] [pid 3658] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:41:35.714083 2019] [mpm_prefork:notice] [pid 3658] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:41:35.912668 2019] [mpm_prefork:notice] [pid 3684] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:41:35.912716 2019] [core:notice] [pid 3684] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:43:55.606015 2019] [mpm_prefork:notice] [pid 3684] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:43:55.820045 2019] [mpm_prefork:notice] [pid 3710] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:43:55.820147 2019] [core:notice] [pid 3710] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:44:18.630510 2019] [mpm_prefork:notice] [pid 3710] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:44:18.817125 2019] [mpm_prefork:notice] [pid 3741] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:44:18.817183 2019] [core:notice] [pid 3741] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:45:00.203447 2019] [mpm_prefork:notice] [pid 3741] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:45:00.384960 2019] [mpm_prefork:notice] [pid 3770] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:45:00.385019 2019] [core:notice] [pid 3770] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:45:32.570625 2019] [mpm_prefork:notice] [pid 3770] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:45:32.756637 2019] [mpm_prefork:notice] [pid 3796] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:45:32.756693 2019] [core:notice] [pid 3796] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:46:17.695233 2019] [mpm_prefork:notice] [pid 3796] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:46:17.886387 2019] [mpm_prefork:notice] [pid 3823] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:46:17.886437 2019] [core:notice] [pid 3823] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:52:22.076752 2019] [mpm_prefork:notice] [pid 3823] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:52:22.274687 2019] [mpm_prefork:notice] [pid 3863] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:52:22.274782 2019] [core:notice] [pid 3863] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:52:23.802307 2019] [core:alert] [pid 3865] [client 159.146.61.16:2767] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:24.579966 2019] [core:alert] [pid 3864] [client 159.146.61.16:2768] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:26.962900 2019] [core:alert] [pid 3866] [client 159.146.61.16:2769] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:28.247809 2019] [core:alert] [pid 3867] [client 159.146.61.16:2770] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:29.258650 2019] [core:alert] [pid 3868] [client 159.146.61.16:2771] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:31.088569 2019] [core:alert] [pid 3865] [client 159.146.61.16:2772] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:33.039302 2019] [core:alert] [pid 3869] [client 159.146.61.16:2773] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:33.378014 2019] [core:alert] [pid 3864] [client 159.146.61.16:2775] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:34.373315 2019] [core:alert] [pid 3866] [client 159.146.61.16:2776] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:34.417062 2019] [core:alert] [pid 3867] [client 159.146.61.16:2777] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:35.079738 2019] [core:alert] [pid 3868] [client 159.146.61.16:2778] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:35.121607 2019] [core:alert] [pid 3865] [client 159.146.61.16:2779] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:35.648635 2019] [core:alert] [pid 3870] [client 159.146.61.16:2780] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:35.697015 2019] [core:alert] [pid 3869] [client 159.146.61.16:2781] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:36.064056 2019] [core:alert] [pid 3864] [client 159.146.61.16:2782] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:36.134529 2019] [core:alert] [pid 3866] [client 159.146.61.16:2783] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:49.005382 2019] [core:alert] [pid 3867] [client 159.146.61.16:2786] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:49.051060 2019] [core:alert] [pid 3868] [client 159.146.61.16:2787] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:49.543956 2019] [core:alert] [pid 3865] [client 159.146.61.16:2788] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:49.579037 2019] [core:alert] [pid 3870] [client 159.146.61.16:2789] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:49.761582 2019] [core:alert] [pid 3869] [client 159.146.61.16:2790] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
[Tue Jun 04 08:52:49.813133 2019] [core:alert] [pid 3864] [client 159.146.61.16:2791] /usr/local/www/apache24/data/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration, referer: http://159.146.61.17/index.php
[Tue Jun 04 08:52:50.956485 2019] [mpm_prefork:notice] [pid 3863] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:52:51.162053 2019] [mpm_prefork:notice] [pid 3891] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:52:51.162098 2019] [core:notice] [pid 3891] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:56:00.547328 2019] [mpm_prefork:notice] [pid 3891] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:56:00.754409 2019] [mpm_prefork:notice] [pid 3925] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:56:00.754426 2019] [core:notice] [pid 3925] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:56:24.021127 2019] [mpm_prefork:notice] [pid 3925] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:56:24.198900 2019] [mpm_prefork:notice] [pid 3951] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:56:24.198963 2019] [core:notice] [pid 3951] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 08:57:57.520576 2019] [mpm_prefork:notice] [pid 3951] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 08:57:57.695806 2019] [mpm_prefork:notice] [pid 3992] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 08:57:57.695927 2019] [core:notice] [pid 3992] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 09:29:45.118140 2019] [php7:error] [pid 3995] [client 159.146.61.16:3591] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:29:47.295501 2019] [php7:error] [pid 3993] [client 159.146.61.16:3592] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:29:48.388709 2019] [php7:error] [pid 3996] [client 159.146.61.16:3593] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:07.956442 2019] [php7:error] [pid 3997] [client 159.146.61.16:3596] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:08.529642 2019] [php7:error] [pid 3994] [client 159.146.61.16:3597] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:09.395794 2019] [php7:error] [pid 3998] [client 159.146.61.16:3598] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:20.877690 2019] [mpm_prefork:notice] [pid 3992] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 09:30:21.122179 2019] [mpm_prefork:notice] [pid 4082] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.2.18 configured -- resuming normal operations
[Tue Jun 04 09:30:21.122270 2019] [core:notice] [pid 4082] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 09:30:21.882320 2019] [php7:error] [pid 4084] [client 159.146.61.16:3602] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:22.567080 2019] [php7:error] [pid 4085] [client 159.146.61.16:3603] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:23.285435 2019] [php7:error] [pid 4083] [client 159.146.61.16:3604] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:24.053614 2019] [php7:error] [pid 4086] [client 159.146.61.16:3605] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:24.690499 2019] [php7:error] [pid 4087] [client 159.146.61.16:3606] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:26.877591 2019] [php7:error] [pid 4084] [client 159.146.61.16:3607] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:27.892836 2019] [php7:error] [pid 4088] [client 159.146.61.16:3608] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:30:29.333682 2019] [php7:error] [pid 4085] [client 159.146.61.16:3610] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:31:46.977039 2019] [php7:error] [pid 4086] [client 159.146.61.16:3639] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:31:48.375205 2019] [php7:error] [pid 4087] [client 159.146.61.16:3640] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:31:53.697783 2019] [php7:error] [pid 4088] [client 159.146.61.16:3643] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:32:32.653793 2019] [php7:error] [pid 4083] [client 159.146.61.16:3647] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
[Tue Jun 04 09:36:02.184733 2019] [php7:error] [pid 4087] [client 159.146.61.16:3780] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_connect() in /usr/local/www/apache24/data/classlarim/database.php:84\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#1 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#2 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#3 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 84
 
mysql_connect bağlantısı hata veriyor. php versiyonunu 5'e çekmeniz lazım.

Buradan detaylı bi şekilde bakabilirsiniz:
Linkleri görebilmek için giriş yap veya kayıt ol.
 
mysql_connect bağlantısı hata veriyor. php versiyonunu 5'e çekmeniz lazım.

Buradan detaylı bi şekilde bakabilirsiniz:
Linkleri görebilmek için giriş yap veya kayıt ol.

FreeBSD 12 kullanıyorum, herhalde bu sürüm için php55 bulunmuyor. "pkg search" komudu ile php yi arattığımda en düşük php71 çıkıyor. Ne yapmalıyım?
 
Kendi bilgisayarınıza kuruyorsanız wampserver’i deneyebilirsiniz. Yada daha güncel bi metin2 paneli bulun
 
Selamlar,

İnternet sağlayıcımdan Sabit IP alıp metin2 serveri açma işine koyuldum. Serveri açtım, dışardan oyuncu alabiliyorum ancak sorun şu ki serverin sitesi yok.

Ee bende dururmuyum? tabii ki durmam. Site açmak için yazılar okudum ve başarılıda oldum. İndex sayfalarını apache yardımıyla yayınlayabiliyorum ancak sorun şu ki MHMS, WMCP panel kurduğumda hata ile karşılaşıyorum.

MHMS'de beyaz ekranda kalırken, WMCP'de "Veri tabanına bağlanılamadı!" hatası alıyorum..

Ayarlar şöyle;

Panelin "Ayarlar.php" dosyasının içeriği;
Kod:
<?php
/*
MySQL Bağlantısı için sabit değişkenleri ayarlıyoruz
*/

define("SERVER_IP","159.146.61.17 (Burayı "localhost" ve "127.0.0.1" yapıyorum yine olmuyor");             // Servenize tahsis edilmiş sunucu IP Adresini Yazınız
define("MYSQL_KULLANICI","BURADAKULLANICIADIVAR");             // Serverinizin MySQL Kullanıcı adını yazınız.
define("MYSQL_PAROLA","BURADASIFREVAR");    // MySQL Kullanıcı Şifrenizi Yazınız...
define("MYSQL_PORT","3306");                    // MySQL Erişim Port Numarısı Default olarak "3306" olur  eğer sizinki değişik ise yazabilirsiniz.
define("DATABASE_ADI","durablee");                 // Scriptin SQL dosylarını hangi database'ye kurduysanız adını yazınız.



/*
Web Sitesi Tekniksel Ayarları
*/
define("SITE_URL","http://".$_SERVER["SERVER_NAME"]."/");     // Scriptin Kurulduğu URL Adresi Tarayıcınızın adresi Örn : http://www.domain.com/
define("KAYIT_BILGISI_GONDER",false); // Oyuncu kayıt olunca E-posta adresine kayıt bilgileri gitmesi için true gitmemesini istiyorsanız false yazın.




// Header Content Ayarı
header("Content-Type:text/html; Charset=UTF-8");
// Zaman Ayarı : "Europe/Istanbul"
date_default_timezone_set("Europe/Istanbul");

// Php Hatalarını Gizleyelim....
error_reporting(0);
// CRSF TOKEN
$token_id                 = md5(uniqid(mt_rand(), true));
$giris_token_id         = md5(uniqid(mt_rand(), true));
?>

Apache'nin "httpd.conf" dosyasının içeriği;
Kod:
#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
# will be interpreted as '/logs/access_log'.

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to specify a local disk on the
# Mutex directive, if file-based mutexes are used.  If you wish to share the
# same ServerRoot for multiple httpd daemons, you will need to change at
# least PidFile.
#
ServerRoot "/usr/local"

#
# Mutex: Allows you to set the mutex mechanism and mutex file directory
# for individual mutexes, or change the global defaults
#
# Uncomment and change the directory if mutexes are file-based and the default
# mutex file directory is not on a local disk or is not appropriate for some
# other reason.
#
# Mutex default:/var/run

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
#LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so
LoadModule authn_file_module libexec/apache24/mod_authn_file.so
#LoadModule authn_dbm_module libexec/apache24/mod_authn_dbm.so
#LoadModule authn_anon_module libexec/apache24/mod_authn_anon.so
#LoadModule authn_dbd_module libexec/apache24/mod_authn_dbd.so
#LoadModule authn_socache_module libexec/apache24/mod_authn_socache.so
LoadModule authn_core_module libexec/apache24/mod_authn_core.so
LoadModule authz_host_module libexec/apache24/mod_authz_host.so
LoadModule authz_groupfile_module libexec/apache24/mod_authz_groupfile.so
LoadModule authz_user_module libexec/apache24/mod_authz_user.so
#LoadModule authz_dbm_module libexec/apache24/mod_authz_dbm.so
#LoadModule authz_owner_module libexec/apache24/mod_authz_owner.so
#LoadModule authz_dbd_module libexec/apache24/mod_authz_dbd.so
LoadModule authz_core_module libexec/apache24/mod_authz_core.so
#LoadModule authnz_fcgi_module libexec/apache24/mod_authnz_fcgi.so
LoadModule access_compat_module libexec/apache24/mod_access_compat.so
LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
#LoadModule auth_form_module libexec/apache24/mod_auth_form.so
#LoadModule auth_digest_module libexec/apache24/mod_auth_digest.so
#LoadModule allowmethods_module libexec/apache24/mod_allowmethods.so
#LoadModule file_cache_module libexec/apache24/mod_file_cache.so
#LoadModule cache_module libexec/apache24/mod_cache.so
#LoadModule cache_disk_module libexec/apache24/mod_cache_disk.so
#LoadModule cache_socache_module libexec/apache24/mod_cache_socache.so
#LoadModule socache_shmcb_module libexec/apache24/mod_socache_shmcb.so
#LoadModule socache_dbm_module libexec/apache24/mod_socache_dbm.so
#LoadModule socache_memcache_module libexec/apache24/mod_socache_memcache.so
#LoadModule watchdog_module libexec/apache24/mod_watchdog.so
#LoadModule macro_module libexec/apache24/mod_macro.so
#LoadModule dbd_module libexec/apache24/mod_dbd.so
#LoadModule dumpio_module libexec/apache24/mod_dumpio.so
#LoadModule buffer_module libexec/apache24/mod_buffer.so
#LoadModule data_module libexec/apache24/mod_data.so
#LoadModule ratelimit_module libexec/apache24/mod_ratelimit.so
LoadModule reqtimeout_module libexec/apache24/mod_reqtimeout.so
#LoadModule ext_filter_module libexec/apache24/mod_ext_filter.so
#LoadModule request_module libexec/apache24/mod_request.so
#LoadModule include_module libexec/apache24/mod_include.so
LoadModule filter_module libexec/apache24/mod_filter.so
#LoadModule reflector_module libexec/apache24/mod_reflector.so
#LoadModule substitute_module libexec/apache24/mod_substitute.so
#LoadModule sed_module libexec/apache24/mod_sed.so
#LoadModule charset_lite_module libexec/apache24/mod_charset_lite.so
#LoadModule deflate_module libexec/apache24/mod_deflate.so
#LoadModule xml2enc_module libexec/apache24/mod_xml2enc.so
#LoadModule proxy_html_module libexec/apache24/mod_proxy_html.so
LoadModule mime_module libexec/apache24/mod_mime.so
LoadModule log_config_module libexec/apache24/mod_log_config.so
#LoadModule log_debug_module libexec/apache24/mod_log_debug.so
#LoadModule log_forensic_module libexec/apache24/mod_log_forensic.so
#LoadModule logio_module libexec/apache24/mod_logio.so
LoadModule env_module libexec/apache24/mod_env.so
#LoadModule mime_magic_module libexec/apache24/mod_mime_magic.so
#LoadModule cern_meta_module libexec/apache24/mod_cern_meta.so
#LoadModule expires_module libexec/apache24/mod_expires.so
LoadModule headers_module libexec/apache24/mod_headers.so
#LoadModule usertrack_module libexec/apache24/mod_usertrack.so
#LoadModule unique_id_module libexec/apache24/mod_unique_id.so
LoadModule setenvif_module libexec/apache24/mod_setenvif.so
LoadModule version_module libexec/apache24/mod_version.so
#LoadModule remoteip_module libexec/apache24/mod_remoteip.so
#LoadModule proxy_module libexec/apache24/mod_proxy.so
#LoadModule proxy_connect_module libexec/apache24/mod_proxy_connect.so
#LoadModule proxy_ftp_module libexec/apache24/mod_proxy_ftp.so
#LoadModule proxy_http_module libexec/apache24/mod_proxy_http.so
#LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so
#LoadModule proxy_scgi_module libexec/apache24/mod_proxy_scgi.so
#LoadModule proxy_uwsgi_module libexec/apache24/mod_proxy_uwsgi.so
#LoadModule proxy_fdpass_module libexec/apache24/mod_proxy_fdpass.so
#LoadModule proxy_wstunnel_module libexec/apache24/mod_proxy_wstunnel.so
#LoadModule proxy_ajp_module libexec/apache24/mod_proxy_ajp.so
#LoadModule proxy_balancer_module libexec/apache24/mod_proxy_balancer.so
#LoadModule proxy_express_module libexec/apache24/mod_proxy_express.so
#LoadModule proxy_hcheck_module libexec/apache24/mod_proxy_hcheck.so
#LoadModule session_module libexec/apache24/mod_session.so
#LoadModule session_cookie_module libexec/apache24/mod_session_cookie.so
#LoadModule session_crypto_module libexec/apache24/mod_session_crypto.so
#LoadModule session_dbd_module libexec/apache24/mod_session_dbd.so
#LoadModule slotmem_shm_module libexec/apache24/mod_slotmem_shm.so
#LoadModule slotmem_plain_module libexec/apache24/mod_slotmem_plain.so
#LoadModule ssl_module libexec/apache24/mod_ssl.so
#LoadModule dialup_module libexec/apache24/mod_dialup.so
#LoadModule http2_module libexec/apache24/mod_http2.so
#LoadModule proxy_http2_module libexec/apache24/mod_proxy_http2.so
#LoadModule lbmethod_byrequests_module libexec/apache24/mod_lbmethod_byrequests.so
#LoadModule lbmethod_bytraffic_module libexec/apache24/mod_lbmethod_bytraffic.so
#LoadModule lbmethod_bybusyness_module libexec/apache24/mod_lbmethod_bybusyness.so
#LoadModule lbmethod_heartbeat_module libexec/apache24/mod_lbmethod_heartbeat.so
LoadModule unixd_module libexec/apache24/mod_unixd.so
#LoadModule heartbeat_module libexec/apache24/mod_heartbeat.so
#LoadModule heartmonitor_module libexec/apache24/mod_heartmonitor.so
#LoadModule dav_module libexec/apache24/mod_dav.so
LoadModule status_module libexec/apache24/mod_status.so
LoadModule autoindex_module libexec/apache24/mod_autoindex.so
#LoadModule asis_module libexec/apache24/mod_asis.so
#LoadModule info_module libexec/apache24/mod_info.so
<IfModule !mpm_prefork_module>
    #LoadModule cgid_module libexec/apache24/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
    #LoadModule cgi_module libexec/apache24/mod_cgi.so
</IfModule>
#LoadModule dav_fs_module libexec/apache24/mod_dav_fs.so
#LoadModule dav_lock_module libexec/apache24/mod_dav_lock.so
#LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
#LoadModule negotiation_module libexec/apache24/mod_negotiation.so
LoadModule dir_module libexec/apache24/mod_dir.so
#LoadModule imagemap_module libexec/apache24/mod_imagemap.so
#LoadModule actions_module libexec/apache24/mod_actions.so
#LoadModule speling_module libexec/apache24/mod_speling.so
#LoadModule userdir_module libexec/apache24/mod_userdir.so
LoadModule alias_module libexec/apache24/mod_alias.so
LoadModule rewrite_module libexec/apache24/mod_rewrite.so
LoadModule php7_module        libexec/apache24/libphp7.so

# Third party modules
IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf
<IfModule unixd_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User www
Group www

</IfModule>

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin [email protected]

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName localhost:80

#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
#
<Directory />
    AllowOverride none
    Require all denied
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/usr/local/www/apache24/data"
<Directory "/usr/local/www/apache24/data">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
    Require all denied
</Files>

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
AddHandler php5-script .php
AddType text/html .php
#
ErrorLog "/var/log/httpd-error.log"

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    #
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    #
    CustomLog "/var/log/httpd-access.log" common

    #
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog "/var/log/httpd-access.log" combined
</IfModule>

<IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar

    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.

    #
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    ScriptAlias /cgi-bin/ "/usr/local/www/apache24/cgi-bin/"

</IfModule>

<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock cgisock
</IfModule>

#
# "/usr/local/www/apache24/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/usr/local/www/apache24/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule headers_module>
    #
    # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied
    # backend servers which have lingering "httpoxy" defects.
    # 'Proxy' request header is undefined by the IETF, not listed by IANA
    #
    RequestHeader unset Proxy early
</IfModule>

<IfModule mime_module>
    #
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    #
    TypesConfig etc/apache24/mime.types

    #
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi

    # For type maps (negotiated resources):
    #AddHandler type-map var

    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
</IfModule>

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
#MIMEMagicFile etc/apache24/magic

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited

#
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall may be used to deliver
# files.  This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
# Defaults: EnableMMAP On, EnableSendfile Off
#
#EnableMMAP off
#EnableSendfile on

# Supplemental configuration
#
# The configuration files in the etc/apache24/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.

# Server-pool management (MPM specific)
#Include etc/apache24/extra/httpd-mpm.conf

# Multi-language error messages
#Include etc/apache24/extra/httpd-multilang-errordoc.conf

# Fancy directory listings
#Include etc/apache24/extra/httpd-autoindex.conf

# Language settings
#Include etc/apache24/extra/httpd-languages.conf

# User home directories
#Include etc/apache24/extra/httpd-userdir.conf

# Real-time info on requests and configuration
#Include etc/apache24/extra/httpd-info.conf

# Virtual hosts
#Include etc/apache24/extra/httpd-vhosts.conf

# Local access to the Apache HTTP Server Manual
#Include etc/apache24/extra/httpd-manual.conf

# Distributed authoring and versioning (WebDAV)
#Include etc/apache24/extra/httpd-dav.conf

# Various default settings
#Include etc/apache24/extra/httpd-default.conf

# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include etc/apache24/extra/proxy-html.conf
</IfModule>

# Secure (SSL/TLS) connections
#Include etc/apache24/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

Include etc/apache24/Includes/*.conf

IFCONFIG komutu;

1658 eklentisini görüntüle


Şuanda tıkandım, ne yapmalıyım bilmiyorum.. HELP ME!
Hemen yardımcı olayım mhms panelin
classlarim/database.php ve admin_klasorü/classlarim/database.php her zaman silinir :D bunun çözümde şu database.phplerin içini açın orada bash_history idi galiba o kodu silin sonra bir daha atın şuan paneli indiriyorum doğru kodu biraz sonra yazarım
 
Hemen yardımcı olayım mhms panelin
classlarim/database.php ve admin_klasorü/classlarim/database.php her zaman silinir :D bunun çözümde şu database.phplerin içini açın orada bash_history idi galiba o kodu silin sonra bir daha atın şuan paneli indiriyorum doğru kodu biraz sonra yazarım

Dediğiniz doğru olabilir ancak şuanda sorunun DÜZELTME : benim FreeBSD'nin php sürümünün 5 olmaması olarak tespit ettik. "mysql_connection" kodu php55,56 sürümlerinde var iken 72,73 sürümlerinde yok.

Whistle adlı arkadaşın dediği gibi php sürümü 7 olan bir panel bulmam gerekli.
 
Son düzenleme:
Dediğiniz doğru olabilir ancak şuanda sorunun php sürümünün 5 olmaması olarak tespit ettik. "mysql_connection" kodu php55,56 sürümlerinde var iken 72,73 sürümlerinde yok.

Whistle adlı arkadaşın dediği gibi php sürümü 7 olan bir panel bulmam gerekli.
Php 5 de çalıştırdım sorunsuz bir biçimde , ondan kaynaklı olduğunu düşünmüyorum
 
Dediğiniz doğru olabilir ancak şuanda sorunun php sürümünün 5 olmaması olarak tespit ettik. "mysql_connection" kodu php55,56 sürümlerinde var iken 72,73 sürümlerinde yok.

Whistle adlı arkadaşın dediği gibi php sürümü 7 olan bir panel bulmam gerekli.
Bu arada kod da şuymuş ".bash_history" bu kodu iki databasedende silip kaydedin ve sunucunuza atın php 7 yi bence sonra deneyin.Çünkü sorun %90 çözülecektir
 
Bu arada kod da şuymuş ".bash_history" bu kodu iki databasedende silip kaydedin ve sunucunuza atın php 7 yi bence sonra deneyin.Çünkü sorun %90 çözülecektir

Yeni hatalar bunlar :) ;

Kod:
[Tue Jun 04 12:45:13.350056 2019] [mpm_prefork:notice] [pid 2428] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:45:13.536735 2019] [mpm_prefork:notice] [pid 2456] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:45:13.536788 2019] [core:notice] [pid 2456] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:45:14.284296 2019] [php7:error] [pid 2457] [client 192.168.1.99:7403] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:45:14.945323 2019] [php7:error] [pid 2459] [client 192.168.1.99:7404] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:45:16.343303 2019] [php7:error] [pid 2458] [client 192.168.1.99:7405] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:45:17.074241 2019] [php7:error] [pid 2460] [client 192.168.1.99:7406] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:46:05.813576 2019] [php7:error] [pid 2457] [client 192.168.1.99:7426] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:46:06.488596 2019] [php7:error] [pid 2462] [client 192.168.1.99:7427] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:04.038275 2019] [mpm_prefork:notice] [pid 2456] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:48:04.238213 2019] [mpm_prefork:notice] [pid 2482] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:48:04.238263 2019] [core:notice] [pid 2482] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:48:12.613712 2019] [mpm_prefork:notice] [pid 2482] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:48:12.812412 2019] [mpm_prefork:notice] [pid 2507] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:48:12.812459 2019] [core:notice] [pid 2507] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:48:16.017559 2019] [php7:warn] [pid 2508] [client 192.168.1.99:7444] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:16.017685 2019] [php7:error] [pid 2508] [client 192.168.1.99:7444] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:16.542695 2019] [php7:warn] [pid 2509] [client 192.168.1.99:7445] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:16.542830 2019] [php7:error] [pid 2509] [client 192.168.1.99:7445] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:17.427891 2019] [php7:warn] [pid 2510] [client 192.168.1.99:7446] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:17.428028 2019] [php7:error] [pid 2510] [client 192.168.1.99:7446] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:18.031506 2019] [php7:warn] [pid 2511] [client 192.168.1.99:7447] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:18.031637 2019] [php7:error] [pid 2511] [client 192.168.1.99:7447] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:25.784379 2019] [mpm_prefork:notice] [pid 2507] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:52:25.968993 2019] [mpm_prefork:notice] [pid 2535] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:52:25.969053 2019] [core:notice] [pid 2535] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:52:27.552999 2019] [php7:warn] [pid 2537] [client 192.168.1.99:7494] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:27.553131 2019] [php7:error] [pid 2537] [client 192.168.1.99:7494] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:28.181042 2019] [php7:warn] [pid 2540] [client 192.168.1.99:7495] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:28.181206 2019] [php7:error] [pid 2540] [client 192.168.1.99:7495] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.045126 2019] [php7:warn] [pid 2539] [client 192.168.1.99:7496] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.045263 2019] [php7:error] [pid 2539] [client 192.168.1.99:7496] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.834498 2019] [php7:warn] [pid 2536] [client 192.168.1.99:7497] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.834631 2019] [php7:error] [pid 2536] [client 192.168.1.99:7497] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
 
Yeni hatalar bunlar :) ;

Kod:
[Tue Jun 04 12:45:13.350056 2019] [mpm_prefork:notice] [pid 2428] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:45:13.536735 2019] [mpm_prefork:notice] [pid 2456] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:45:13.536788 2019] [core:notice] [pid 2456] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:45:14.284296 2019] [php7:error] [pid 2457] [client 192.168.1.99:7403] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:45:14.945323 2019] [php7:error] [pid 2459] [client 192.168.1.99:7404] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:45:16.343303 2019] [php7:error] [pid 2458] [client 192.168.1.99:7405] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:45:17.074241 2019] [php7:error] [pid 2460] [client 192.168.1.99:7406] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:46:05.813576 2019] [php7:error] [pid 2457] [client 192.168.1.99:7426] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:46:06.488596 2019] [php7:error] [pid 2462] [client 192.168.1.99:7427] PHP Fatal error:  Uncaught Error: Non-static method mysqli::select_db() cannot be called statically in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:04.038275 2019] [mpm_prefork:notice] [pid 2456] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:48:04.238213 2019] [mpm_prefork:notice] [pid 2482] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:48:04.238263 2019] [core:notice] [pid 2482] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:48:12.613712 2019] [mpm_prefork:notice] [pid 2482] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:48:12.812412 2019] [mpm_prefork:notice] [pid 2507] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:48:12.812459 2019] [core:notice] [pid 2507] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:48:16.017559 2019] [php7:warn] [pid 2508] [client 192.168.1.99:7444] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:16.017685 2019] [php7:error] [pid 2508] [client 192.168.1.99:7444] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:16.542695 2019] [php7:warn] [pid 2509] [client 192.168.1.99:7445] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:16.542830 2019] [php7:error] [pid 2509] [client 192.168.1.99:7445] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:17.427891 2019] [php7:warn] [pid 2510] [client 192.168.1.99:7446] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:17.428028 2019] [php7:error] [pid 2510] [client 192.168.1.99:7446] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:18.031506 2019] [php7:warn] [pid 2511] [client 192.168.1.99:7447] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:48:18.031637 2019] [php7:error] [pid 2511] [client 192.168.1.99:7447] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:25.784379 2019] [mpm_prefork:notice] [pid 2507] AH00169: caught SIGTERM, shutting down
[Tue Jun 04 12:52:25.968993 2019] [mpm_prefork:notice] [pid 2535] AH00163: Apache/2.4.39 (FreeBSD) PHP/7.3.5 configured -- resuming normal operations
[Tue Jun 04 12:52:25.969053 2019] [core:notice] [pid 2535] AH00094: Command line: '/usr/local/sbin/httpd -D NOHTTPACCEPT'
[Tue Jun 04 12:52:27.552999 2019] [php7:warn] [pid 2537] [client 192.168.1.99:7494] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:27.553131 2019] [php7:error] [pid 2537] [client 192.168.1.99:7494] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:28.181042 2019] [php7:warn] [pid 2540] [client 192.168.1.99:7495] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:28.181206 2019] [php7:error] [pid 2540] [client 192.168.1.99:7495] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.045126 2019] [php7:warn] [pid 2539] [client 192.168.1.99:7496] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.045263 2019] [php7:error] [pid 2539] [client 192.168.1.99:7496] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.834498 2019] [php7:warn] [pid 2536] [client 192.168.1.99:7497] PHP Warning:  mysqli_select_db() expects parameter 1 to be mysqli, string given in /usr/local/www/apache24/data/classlarim/database.php on line 95
[Tue Jun 04 12:52:29.834631 2019] [php7:error] [pid 2536] [client 192.168.1.99:7497] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_error() in /usr/local/www/apache24/data/classlarim/database.php:95\nStack trace:\n#0 /usr/local/www/apache24/data/classlarim/database.php(87): Database->databaseConnect()\n#1 /usr/local/www/apache24/data/classlarim/database.php(7): Database->mysqlConnect()\n#2 /usr/local/www/apache24/data/fonksiyon.php(41): Database->__construct()\n#3 /usr/local/www/apache24/data/index.php(1): require('/usr/local/www/...')\n#4 {main}\n  thrown in /usr/local/www/apache24/data/classlarim/database.php on line 95
Bu hatayı az önce sildiğiniz kodu bulamadığı için veriyo ama o kod olunca da bu sefer database siliniyo, site şuan açıldı mı ?
 
Dediğiniz doğru olabilir ancak şuanda sorunun DÜZELTME : benim FreeBSD'nin php sürümünün 5 olmaması olarak tespit ettik. "mysql_connection" kodu php55,56 sürümlerinde var iken 72,73 sürümlerinde yok.

Whistle adlı arkadaşın dediği gibi php sürümü 7 olan bir panel bulmam gerekli.
Eğer php bilginiz varsa mevcut paneli pdoya taşıyabilirsiniz ancak mhms paneli çok geniş içerikli olduğu için bu denli büyük iş yapmak yerine baştan panel kodlamak veya forumlardan güncel panel bulmak daha mantıklı olur. :)
 
Çözüm
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.
Geri
Üst