PHPとMysql(XAMPP)を使用してサインアップページを作成する方法を学んでいます。
今、私はこのウェブサイトのソースコードをダウンロードしました:
http://net.tutsplus.com/tutorials/php/create-a-signup-form-with-email-confirmation/
そしてそれが機能することを確認しようとしました。しかし、開くとき:
http://localhost/source/index.php
次の警告が表示されました。
Warning: include_once(C:\xampp\htdocs\source\inc\php\config.php) [function.include-once]: failed to open stream: Permission denied in C:\xampp\htdocs\source\index.php on line 3
Warning: include_once() [function.include]: Failed opening 'inc/php/config.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\source\index.php on line 3
Warning: include_once(C:\xampp\htdocs\source\inc\php\functions.php) [function.include-once]: failed to open stream: Permission denied in C:\xampp\htdocs\source\index.php on line 4
Warning: include_once() [function.include]: Failed opening 'inc/php/functions.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\source\index.php on line 4
警告が表示された行は次のとおりです。
<?php
include_once 'inc/php/config.php';
include_once 'inc/php/functions.php';
.
.
ヘルプはありますか?