teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

4

画像表示追加

2019/11/07 21:19

投稿

Ms.yy
Ms.yy

スコア83

title CHANGED
File without changes
body CHANGED
@@ -93,6 +93,43 @@
93
93
  ### 補足情報(FW/ツールのバージョンなど)
94
94
 
95
95
 
96
+
97
+ ###追記(画像表示可)
98
+ session_startを追記したら無事に表示されるようになりました。
99
+
100
+ ```ここに言語を入力
101
+
102
+ <?php
103
+ session_start();
104
+
105
+ chmod("image/",0666);
106
+
107
+ $image=date('YmdHis').$_FILES['image']['name'];
108
+ move_uploaded_file($_FILES['image']['tmp_name'],
109
+ 'image/'.$image);
110
+
111
+ $_SESSION['join']=$_POST;
112
+ $_SESSION['join']['image']=$image;
113
+
114
+
115
+ <form action="" method="post" enctype="multipart/form-data">
116
+
117
+ <input type="file" name="image" >
118
+ <input type="submit" value="確認" >
119
+ </form>
120
+
121
+ <?php if($_SESSION['join']['image'] !==''):?>
122
+
123
+ <img src="image/<?php print($_SESSION['join']['image'])?>">
124
+
125
+ <?php endif;?>
126
+
127
+
128
+
129
+
130
+ ?>
131
+ ```
132
+
96
133
  imageフォルダアクセス権
97
134
  自分:読み/書き
98
135
  admin:読み出しのみ

3

chmod()→move_uploaded_file()エラー追加

2019/11/07 21:19

投稿

Ms.yy
Ms.yy

スコア83

title CHANGED
File without changes
body CHANGED
@@ -71,6 +71,19 @@
71
71
  ```
72
72
 
73
73
 
74
+
75
+
76
+ ###chmod()→move_uploaded_file()でのエラー
77
+ ```ここに言語を入力
78
+ Warning: chmod(): Operation not permitted in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 51
79
+
80
+ Warning: move_uploaded_file(image/20191102122837スクリーンショット 2019-11-01 21.14.10.png): failed to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 55
81
+
82
+ Warning: move_uploaded_file(): Unable to move '/Applications/XAMPP/xamppfiles/temp/phpBecTWu' to 'image/20191102122837スクリーンショット 2019-11-01 21.14.10.png' in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 55
83
+ ```
84
+
85
+
86
+
74
87
  ###ディレクトリ
75
88
  ```ここに言語を入力
76
89
  /Applications/XAMPP/htdocs/calendar_php/folio/image

2

ディレクトリ項目にディレクトリを表す画像を移動した。

2019/11/02 03:36

投稿

Ms.yy
Ms.yy

スコア83

title CHANGED
File without changes
body CHANGED
@@ -44,9 +44,9 @@
44
44
  ?>
45
45
  ```
46
46
 
47
- #
48
47
 
49
48
 
49
+
50
50
  ### 試したこと
51
51
  相対パスも設定してみましたが、同じくエラーとなりました。
52
52
  ```ここに言語を入力
@@ -75,11 +75,11 @@
75
75
  ```ここに言語を入力
76
76
  /Applications/XAMPP/htdocs/calendar_php/folio/image
77
77
  ```
78
+ ![イメージ説明](e84943b1f86ede1f59aac53581de253b.png)
78
79
 
79
-
80
80
  ### 補足情報(FW/ツールのバージョンなど)
81
- ![イメージ説明](e84943b1f86ede1f59aac53581de253b.png)
82
81
 
82
+
83
83
  imageフォルダアクセス権
84
84
  自分:読み/書き
85
85
  admin:読み出しのみ

1

相対パスエラーとディレクトリ追記

2019/11/01 23:51

投稿

Ms.yy
Ms.yy

スコア83

title CHANGED
File without changes
body CHANGED
@@ -16,6 +16,9 @@
16
16
  Warning: move_uploaded_file(): Unable to move '/Applications/XAMPP/xamppfiles/temp/php4B2fBp' to 'http://localhost/calendar_php/folio/imageout.php/calendar_php/folio/image20191101210345スクリーンショット 2019-10-31 21.21.13.png' in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 54
17
17
 
18
18
  Warning: chmod(): Operation not permitted in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 56
19
+
20
+
21
+
19
22
  ```
20
23
 
21
24
 
@@ -58,7 +61,22 @@
58
61
  ?>
59
62
  ```
60
63
 
64
+ ###相対パスのエラー
65
+ ```ここに言語を入力
66
+ Warning: move_uploaded_file(image20191101232932スクリーンショット 2019-10-31 21.46.25.png): failed to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 66
61
67
 
68
+ Warning: move_uploaded_file(): Unable to move '/Applications/XAMPP/xamppfiles/temp/phpl1b1sO' to 'image20191101232932スクリーンショット 2019-10-31 21.46.25.png' in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 66
69
+
70
+ Warning: chmod(): Operation not permitted in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 68
71
+ ```
72
+
73
+
74
+ ###ディレクトリ
75
+ ```ここに言語を入力
76
+ /Applications/XAMPP/htdocs/calendar_php/folio/image
77
+ ```
78
+
79
+
62
80
  ### 補足情報(FW/ツールのバージョンなど)
63
81
  ![イメージ説明](e84943b1f86ede1f59aac53581de253b.png)
64
82