PHP5 Запрошенный URL не найден - PullRequest
0 голосов
/ 22 ноября 2018

Я пытаюсь работать над уже созданным сайтом проекта.Этот веб-сайт в настоящее время работает на Ubuntu с Apache2 и PHP5.

Я установил проект на APACHE2.Но когда я захожу на веб-сайт, у меня появляется следующее сообщение:

Запрошенный URL / connexion / не найден на этом сервере.

Apache / 2.4.34 (Ubuntu) Сервер на локальном хосте Порт 80

Я не знаю, что делать, потому что на терминале я пишу:

sudo tail -100 / var/log/apache2/error.log

У меня ошибка PDO:

    [Thu Nov 22 09:17:30.492444 2018] [mpm_prefork:notice] [pid 2033] AH00163: Apache/2.4.34 (Ubuntu) configured -- resuming normal operations

[Thu Nov 22 09:17:30.492509 2018] [core:notice] [pid 2033] AH00094: Command line: '/usr/sbin/apache2'

[Thu Nov 22 09:48:49.461147 2018] [php7:warn] [pid 2070] [client ::1:51398] PHP Warning:  Declaration of Client::create(PDO $bdd, $nom, $prenom, $email, $password, $telephone, $fax, $is_active, $site_id) should be compatible with Utilisateur::create(PDO $bdd, $nom, $prenom, $email, $password, $telephone, $fax, $is_active) in /var/www/html/{websitename}/model/Classes/Client.php on line 0, referer: http://localhost/

[Thu Nov 22 09:48:49.461201 2018] [php7:warn] [pid 2070] [client ::1:51398] PHP Warning:  Declaration of Client::update(PDO $bdd, $utilisateur_id, $nom, $prenom, $email, $password, $telephone, $fax, $is_active, $client_id, $site_id) should be compatible with Utilisateur::update(PDO $bdd, $id, $nom, $prenom, $email, $password, $telephone, $fax, $is_active) in /var/www/html/{websitename}/model/Classes/Client.php on line 0, referer: http://localhost/

[Thu Nov 22 09:48:49.461218 2018] [php7:warn] [pid 2070] [client ::1:51398] PHP Warning:  Declaration of Client::updateWithoutPassword(PDO $bdd, $utilisateur_id, $nom, $prenom, $email, $telephone, $fax, $is_active, $client_id, $site_id) should be compatible with Utilisateur::updateWithoutPassword(PDO $bdd, $id, $nom, $prenom, $email, $telephone, $fax, $is_active) in /var/www/html/{websitedown}/model/Classes/Client.php on line 0, referer: http://localhost/

[Thu Nov 22 09:48:49.463732 2018] [php7:warn] [pid 2070] [client ::1:51398] PHP Warning:  Declaration of Employee::create(PDO $bdd, $nom, $prenom, $email, $password, $telephone, $fax, $is_active, $role_id, $agence_id) should be compatible with Utilisateur::create(PDO $bdd, $nom, $prenom, $email, $password, $telephone, $fax, $is_active) in /var/www/html/{websitedown}/model/Classes/Employee.php on line 0, referer: http://localhost/

[Thu Nov 22 09:48:49.463792 2018] [php7:warn] [pid 2070] [client ::1:51398] PHP Warning:  Declaration of Employee::update(PDO $bdd, $utilisateur_id, $employe_id, $nom, $prenom, $email, $password, $telephone, $fax, $is_active, $role_id, $agence_id) should be compatible with Utilisateur::update(PDO $bdd, $id, $nom, $prenom, $email, $password, $telephone, $fax, $is_active) in /var/www/html/{websitedown}/model/Classes/Employee.php on line 0, referer: http://localhost/

[Thu Nov 22 09:48:49.463817 2018] [php7:warn] [pid 2070] [client ::1:51398] PHP Warning:  Declaration of Employee::updateWithoutPassword(PDO $bdd, $utilisateur_id, $employe_id, $nom, $prenom, $email, $telephone, $fax, $is_active, $role_id, $agence_id) should be compatible with Utilisateur::updateWithoutPassword(PDO $bdd, $id, $nom, $prenom, $email, $telephone, $fax, $is_active) in /var/www/html/{websitedown}/model/Classes/Employee.php on line 0, referer: http://localhost/

ТАК Я включил PDO PHP в ini PHP, пытаясь установить PHP.Сайт все еще не работает ... Что я могу сделать?

(Я столкнулся с проблемой в Windows, меняя PHP, чтобы сайт работал, но не Ubuntu)

Ответы [ 2 ]

0 голосов
/ 26 ноября 2018

Ну, так что после нескольких проб я исправляю это ... Просто сделав это:

systemctl status mysql

Мой сайт теперь может работать нормально.

Спасибо вам всем за вас

0 голосов
/ 22 ноября 2018

Я думаю, проверьте ваш путь к документу

DocumentRoot: каталог, из которого вы будете обслуживать ваши документы.

В apache похоже на настройку apache в файле httpd.conf проверьте DocumentRoot=Your\document\path и <Directory Your\document\path>

    <Directory Your\document\path>
# 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 Includes ExecCGI

#
# 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>

, а также сравните конфигурацию ubuntu apache и php с конфигурацией Window apache и php

...