Детектив из меня так себе... вебом занимаюсь порядка 2 лет (не профессионально)
Вся система стоит на yii2, в одной странице есть iфрейм (сам который находится в отдельной папке)
суть в том что в этом фрейме много php и js скриптов, пара скриптов (я их выделю) после перезагрузки то выдают ответ, то не выдают... Для меня это вообще странно с чем это может быть связано я даже представить не могу
ниже приведу код фрейма (извините за говнокод потом всё аккуратно сделаю по файлам)
Кликните здесь для просмотра всего текста
HTML5 |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
| <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<style type="text/css" media="screen">
#editor_html {
margin: 0;
position: absolute;
top: 0px;
bottom: 0;
left: 0;
right: 60%;
}
#editor_css {
margin: 0;
position: absolute;
top: 0px;
bottom: 0;
left: 40%;
right: 30%;
}
#view{
z-index: 999;
position: absolute;
top:-13px;
bottom: 0;
left: 0;
right: 0;
border-style: solid;
border-width: 25px 0px 0px 0px;
-moz-border-image: url(top.png) 25 0 0 0 ;
-webkit-border-image: url(top.png) 25 0 0 0;
-o-border-image: url(top.png) 25 0 0 0;
border-top-image: url(top.png) 25 0 0 0;
}
.round_view{
border-right: 4px solid #1E90FF;
border-left: 4px solid #1E90FF;
border-bottom: 10px solid #1E90FF;
border-radius: 4px;
margin: 5px 5px 25px 5px ;
padding-left: 15px;
position: absolute;
top:0px;
bottom: 0;
left: 70%;
right: 0;
}
.btn-html-container{
margin: 0;
position: absolute;
top: 90%;
bottom: 0;
left: 4.3%;
right: 0;
}
.btn-css-container{
margin: 0;
position: absolute;
top: 90%;
bottom: 0;
left: 43.8%;
right: 0;
}
#top_img{
}
.title_to{
position:absolute;
top:1.4%;
left:71.7%;
font-family: Arial;
font-size: 13px;
color:#000;
}
#message{
position:absolute;
top:94.4%;
left:70%;
font-family: Arial;
font-size: 13px;
color:#000;
background-color:red;
}
</style>
<script>
[B]var onmessage = function(e) {
var data = e.data;
var origin = e.origin;
/**
* Проверка октуда пришел запрос
*/
if (origin !== "http://localhost") {
alert('Запрос пришел с другого домена');
return;
}
var str = 'Пришли неверные данные';
if (data.title && data.value) {
str = 'Сообщение:' + data.title + '. Значение объекта:' + data.value;
}
document.getElementById('message').innerHTML = str;
};
if (typeof window.addEventListener != 'undefined') {
window.addEventListener('message', onmessage, false);
} else if (typeof window.attachEvent != 'undefined') {
window.attachEvent('onmessage', onmessage);
}
[/B]
</script>
<?php
session_start();
if (empty($_SESSION['id']))
{
$_SESSION['id'] = time();
echo "<script>alert(\"Добро пожаловать ".$_SESSION['id']."\");</script>";
}
else
{
//echo "<script>alert(\"".$_SESSION['id']."! рады снова вас видеть \");</script>";
}
$user_id = $_SESSION['id'];
echo '<script language="javascript">var user_id = '.$user_id.';</script>';
?>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js?ver=1.6.4'></script>
<script src="src/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
//ajax запрос загрузки страницы
$(document).ready(function(){
$(function() {
$.ajax({
url: user_id+'index.html',
complete: function(xhr, textStatus) {
if (xhr.status == 404)
$("#view").load("index.html")
else{
$("#view").load(user_id+"index.html")
}
}
});
})
var title = "Моя первая web страница";
var editor_html = ace.edit("editor_html");
editor_html.getSession().setMode("ace/mode/html_ruby");
editor_html.setTheme("ace/theme/monokai");
$('#repeat_html').click(function(){
$.ajax({
type: "POST",
url: "del_files.php",
data: {"user_id" : user_id},
success: function(){
$("#view").load(user_id+"index.html");
}
});
//$("#editor_html").load("index.html");
});
editor_css = ace.edit("editor_css");
editor_css.getSession().setMode("ace/mode/css");
editor_css.setTheme("ace/theme/monokai");
$('#submit_css').click(function sub(){
new_css = editor_css.getValue();
new_html = editor_html.getValue();
$.ajax({
type: "POST",
url: "gen_css.php",
data: {"text" : new_css, "user_id" : user_id, "text_html" : new_html},
success: function(data){
[B]var text = editor_html.getValue();
$("#view").load(user_id+"index.html");
title = data;
$(".title_to").text(title);[/B]
}
});
});
});
</script>
</head>
<body>
<div id="message">/ </div>
<pre id="editor_html">
<?php
if (file_exists($user_id.'index.html'))
{
echo htmlentities(file_get_contents($user_id.'index.html')); //(костыль желательно избавится)
}
else
{
echo htmlentities(file_get_contents("index.html")); //(костыль желательно избавится)
}
?>
</pre>
<pre id="editor_css">
<?php
if (file_exists($user_id.'style.css'))
{
echo htmlentities(file_get_contents($user_id.'style.css'));
}
else
{
echo htmlentities(file_get_contents("style.css")); //(костыль желательно избавится)
}
?>
</pre>
<span class="round_view">
<pre id="view">
</pre>
</span>
<span class="title_to"> </span>
<form class="btn-html-container">
<!-- <input id="submit_html" type="button" value="Отправить html"> -->
<input id="submit_css" type="button" value="Отправить">
<input id="repeat_html" type="button" value="По умолчанию">
</form>
</body>
</html> |
|