Init.
@@ -0,0 +1,814 @@
|
||||
<?php
|
||||
if(!defined('GAME'))
|
||||
{
|
||||
die();
|
||||
}
|
||||
|
||||
//Forum class
|
||||
class forum
|
||||
{
|
||||
public $mod = 0,$see = array(), $lst = array(),$gd = array(),$menu = '',$pages = '',$r ,$user = false,$fm = false,$error,$acs = array(0=>'Äîñòóï çàêðûò',1=>'Òîëüêî ÷òåíèå',2=>'Ðàçðåøåíî äîáàâëÿòü îòâåòû',3=>'Ðàçðåøåíî ñîçäîâàòü òîïèêè',4=>'Ðàçðåøåíî äîáàâëÿòü îòâåòû è ñîçäàâàòü òîïèêè');
|
||||
|
||||
|
||||
public function paginator($t,$pagers=0){
|
||||
if(isset($_GET['search'])) {
|
||||
$where = '( `text` LIKE "%'.mysql_real_escape_string($_GET['search']).'%" OR `title` LIKE "%'.mysql_real_escape_string($_GET['search']).'%" OR `login` LIKE "%'.mysql_real_escape_string($_GET['search']).'%" ) AND `topic` < "0" AND `delete` = "0"' ;
|
||||
$pre_url='search='.htmlspecialchars($_GET['search'],NULL,'cp1251').'&read='.$pagers.'&';
|
||||
$idpaginator=$pagers;
|
||||
}elseif($pagers!=0){
|
||||
$where = '`topic` = "'.$pagers.'" AND `delete` = "0"' ;
|
||||
$pre_url='read='.$pagers.'&';
|
||||
$idpaginator=$pagers;
|
||||
}elseif($t==1){
|
||||
$where = '`topic` < "0" AND `fid` = "'.$this->r.'" AND `delete` = "0"';
|
||||
$pre_url='r='.$this->r.'&';
|
||||
$idpaginator=$this->r;
|
||||
}elseif($t==2){
|
||||
$where = '`topic` = "'.$this->see['id'].'" AND `delete` = "0"' ;
|
||||
$pre_url='read='.$this->see['id'].'&';
|
||||
$idpaginator=$this->see['id'];
|
||||
}
|
||||
$q="SELECT count(*) FROM forum_msg WHERE ".$where;
|
||||
$res=mysql_query($q);
|
||||
$row=mysql_fetch_row($res);
|
||||
$total_rows=$row[0];
|
||||
$num_pages=ceil($total_rows/20);
|
||||
$plist='';
|
||||
for($i=1;$i<=$num_pages;$i++) {
|
||||
if( (!isset($_GET['page']) || round((int)$_GET['page']) < 1) && $i == 1 && ($t!=2 || isset($_GET['read']))) {
|
||||
$plist.='<u>'.$i."</u>";
|
||||
}elseif( ( $_GET['page']!=$i || $pagers!=0 ) ){
|
||||
$plist.='<a href="'.$_SERVER['PHP_SELF'].'?'.$pre_url.'page='.$i.'"><b>'.$i."</b></a>";
|
||||
}else{
|
||||
$plist.='<u>'.$i.'</u>';
|
||||
}
|
||||
}
|
||||
if($plist == '') {
|
||||
$plist = '<u>1</u>';
|
||||
}
|
||||
return '<pages>'.$plist.'</pages>';
|
||||
}
|
||||
|
||||
public function testAnswer($text) {
|
||||
|
||||
$r = str_replace('[/?]','[?]',$text);
|
||||
$r = explode('[?]',$r);
|
||||
$i = 1;
|
||||
$pr_us_all = 0;
|
||||
while($i != -1) {
|
||||
if(isset($r[$i])) {
|
||||
$ra = explode('[:]',$r[$i]);
|
||||
$j = 0;
|
||||
if(isset($this->user['id'])) {
|
||||
$yg = mysql_fetch_array(mysql_query('SELECT * FROM `forum_answers` WHERE `msg_id` = "'.$this->see['id'].'" AND `q_id` = "'.$i.'" AND `uid` = "'.$this->user['id'].'" AND `delete` = "0" LIMIT 1'));
|
||||
if(!isset($yg['id'],$_GET['q_now'],$_GET['answer_now']) && $_GET['q_now'] == $i) {
|
||||
$_GET['answer_now'] = round((int)$_GET['answer_now']);
|
||||
$_GET['q_now'] = round((int)$_GET['q_now']);
|
||||
if(isset($ra[$_GET['answer_now']])) {
|
||||
mysql_query('INSERT INTO `forum_answers` (`uid`,`msg_id`,`q_id`,`answer`,`time`,`city`) VALUES
|
||||
("'.$this->user['id'].'","'.$this->see['id'].'","'.mysql_real_escape_string($_GET['q_now']).'","'.mysql_real_escape_string($_GET['answer_now']).'",
|
||||
"'.time().'","'.$this->user['city'].'")');
|
||||
die('<meta http-equiv="refresh" content="0; URL=https://new-combats.com/forum?read='.round((int)$_GET['read']).'&page='.round((int)$_GET['page']).'">');
|
||||
}
|
||||
}
|
||||
}
|
||||
$pr_all = mysql_fetch_array(mysql_query('SELECT COUNT(`id`) FROM `forum_answers` WHERE `msg_id` = "'.$this->see['id'].'" AND `q_id` = "'.$i.'" AND `delete` = "0" LIMIT 1'));
|
||||
$pr_all = $pr_all[0];
|
||||
$pr_us_all += $pr_all;
|
||||
$pr_lst = 0;
|
||||
$pr_asw = 0;
|
||||
while($j != -1) {
|
||||
if(isset($ra[$j]) && $ra[$j] != '') {
|
||||
if($j > 0) {
|
||||
|
||||
$prc = mysql_fetch_array(mysql_query('SELECT COUNT(`id`) FROM `forum_answers` WHERE `msg_id` = "'.$this->see['id'].'" AND `answer` = "'.$j.'" AND `q_id` = "'.$i.'" AND `delete` = "0" LIMIT 1'));
|
||||
$prc = 0+$prc[0];
|
||||
$pr_asw += $prc;
|
||||
if( $pr_asw == $pr_all ) {
|
||||
$prc = 100-$pr_lst;
|
||||
$pr_lst += $prc;
|
||||
if($prc > 0) {
|
||||
$prc = '<b>'.$prc.'</b>';
|
||||
}
|
||||
}else{
|
||||
$prc = floor($prc/$pr_all*100);
|
||||
if($prc > 0) {
|
||||
$pr_lst += $prc;
|
||||
$prc = '<b>'.$prc.'</b>';
|
||||
}
|
||||
}
|
||||
if(isset($this->user['id'])) {
|
||||
if(isset($yg['id'])) {
|
||||
if($yg['answer'] == $j) {
|
||||
$zm = '<tr class="answ1h"><td>• <b>'.$ra[$j].'</b></td><td> - '.$prc.'% <small style="color:red">(Âàø ãîëîñ)</small></td></tr>';
|
||||
}else{
|
||||
$zm = '<tr><td>• '.$ra[$j].'</td><td> - '.$prc.'%</td></tr>';
|
||||
}
|
||||
}else{
|
||||
$zm = '<tr onclick="location.href=\'?read='.round((int)$_GET['read']).'&page='.round((int)$_GET['page']).'&q_now='.$i.'&answer_now='.$j.'\'" class="answ1" title="Ãîëîñîâàòü çà ýòîò âàðèàíò"><td>• '.$ra[$j].'</td><td> - '.$prc.'%</td></tr>';
|
||||
}
|
||||
}else{
|
||||
$zm = '<tr><td>• '.$ra[$j].'</td><td> - '.$prc.'%</td></tr>';
|
||||
}
|
||||
|
||||
$text = str_replace('[:]'.$ra[$j],$zm,$text);
|
||||
}else{
|
||||
$zm = '<h4>'.$ra[$j].'</h4><table>';
|
||||
$text = str_replace(str_replace('<br>','',$ra[$j]),$zm,$text);
|
||||
}
|
||||
}else{
|
||||
$j = -2;
|
||||
}
|
||||
$j++;
|
||||
}
|
||||
$text = str_replace('[?]','',$text);
|
||||
}else{
|
||||
$i = -2;
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
$text = str_replace('[/?]','</table><br><br>Âñåãî ïðîãîëîñîâàëî ëþäåé '.$pr_us_all.'<div class="line2"></div>',$text);
|
||||
return $text;
|
||||
}
|
||||
|
||||
public function startForum()
|
||||
{
|
||||
//Âûäåëÿåì ïîëüçîâàòåëÿ
|
||||
$ufr = mysql_fetch_array(mysql_query('SELECT * FROM `users` WHERE `login` = "'.mysql_real_escape_string($_COOKIE['login']).'" AND `pass` = "'.mysql_real_escape_string($_COOKIE['pass']).'" AND `banned` = "0" LIMIT 1'));
|
||||
if(!isset($ufr['id']) || $ufr['banned']>0)
|
||||
{
|
||||
unset($u);
|
||||
}else{
|
||||
$ufr['sl'] = '<b>'.$ufr['login'].'</b> ['.$ufr['level'].']';
|
||||
$this->user = $ufr;
|
||||
}
|
||||
|
||||
//Âûäåëÿåì ðàçäåë êîòîðûé ïðîñìàòðèâàåò ïîëüçîâàòåëü
|
||||
if(isset($_GET['read']))
|
||||
{
|
||||
//÷èòàåì ñîîáùåíèå
|
||||
$see = mysql_fetch_array(mysql_query('SELECT * FROM `forum_msg` WHERE `id` = "'.mysql_real_escape_string($_GET['read']).'" AND `delete` = "0" LIMIT 1'));
|
||||
if(!isset($see['id']) || ($see['fid']==65 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2)) || ($see['fid']==75 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4)))
|
||||
{
|
||||
$this->r = -2;
|
||||
$this->error = 'Òîïèê ôîðóìà íå íàéäåí.';
|
||||
}else{
|
||||
$this->r = -1;
|
||||
$see['goodAdd'] = 1;
|
||||
if($see['nocom']>0)
|
||||
{
|
||||
if($this->user['align']>1 && $this->user['align']<2)
|
||||
{
|
||||
if($see['nocom']==2 || $see['nocom']==4)
|
||||
{
|
||||
$see['goodAdd'] = 0;
|
||||
}
|
||||
}
|
||||
if($this->user['align']>3 && $this->user['align']<4)
|
||||
{
|
||||
if($see['nocom']==2 || $see['nocom']==3)
|
||||
{
|
||||
$see['goodAdd'] = 0;
|
||||
}
|
||||
}
|
||||
if($this->user['admin']>0)
|
||||
{
|
||||
$see['goodAdd'] = 1;
|
||||
}
|
||||
}
|
||||
$this->see = $see;
|
||||
$this->fm = mysql_fetch_array(mysql_query('SELECT * FROM `forum_menu` WHERE `id` = "'.mysql_real_escape_string($see['fid']).'" LIMIT 1'));
|
||||
}
|
||||
}else{
|
||||
if(isset($_GET['r']))
|
||||
{
|
||||
$this->r = (int)$_GET['r'];
|
||||
}else{
|
||||
$this->r = 1;
|
||||
}
|
||||
|
||||
$fm = mysql_fetch_array(mysql_query('SELECT * FROM `forum_menu` WHERE `id` = "'.mysql_real_escape_string($this->r).'" LIMIT 1'));
|
||||
if(!isset($fm['id']) || ($fm['id']==65 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2)) || ($fm['id']==75 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4)) )
|
||||
{
|
||||
$this->r = -2;
|
||||
$this->fm = false;
|
||||
$this->error = 'Ðàçäåë ôîðóìà íå íàéäåí.';
|
||||
}else{
|
||||
$this->fm = $fm;
|
||||
}
|
||||
}
|
||||
|
||||
$this->genMenu();
|
||||
|
||||
$this->lst = mysql_fetch_array(mysql_query('SELECT `id`,`time` FROM `forum_msg` WHERE `uid` = "'.$this->user['id'].'" AND `delete` = "0" ORDER BY `time` DESC LIMIT 1'));
|
||||
|
||||
//Ïðîâåðÿåì ôîðóì íà äîñòóïíîñòü
|
||||
if($this->gd[$this->fm['id']]==0 && $ufr['admin']==0)
|
||||
{
|
||||
//ïðîñìîòð çàêðûò
|
||||
$this->r = -2;
|
||||
$this->error = 'Âû íå ìîæåòå ÷èòàòü äàííóþ êîíôåðåíöèþ.';
|
||||
}elseif($this->fm['only_admin']==1 && $this->user['admin']==0)
|
||||
{
|
||||
//ïðîñìîòð çàêðûò
|
||||
$this->r = -2;
|
||||
$this->error = 'Âû íå ìîæåòå ÷èòàòü äàííóþ êîíôåðåíöèþ.';
|
||||
}
|
||||
}
|
||||
|
||||
public function seeTopic()
|
||||
{
|
||||
global $c;
|
||||
$fd_limit=20;
|
||||
if(isset($_GET['page'])){
|
||||
$start=$_GET['page']*$fd_limit-$fd_limit;
|
||||
}else{
|
||||
$start=0;
|
||||
//echo 'SELECT * FROM `forum_msg` WHERE `topic` < "0" AND `fid` = "'.$this->r.'" AND `delete` = "0" ORDER BY `id` DESC LIMIT '.$start.','.$fd_limit;
|
||||
}
|
||||
if($this->see['fid']==65 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2)){
|
||||
|
||||
}elseif($this->see['fid']==75 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4)){
|
||||
|
||||
}elseif(isset($this->see['id']))
|
||||
{
|
||||
//Âûâîäèì çàãîëîâîê
|
||||
echo $this->genuser($this->see['uid'],$this->see['login'],$this->see['level'],$this->see['align'],$this->see['clan'],$this->see['invis'],$this->see['city'],$this->see['cityreg']);
|
||||
if($this->user['admin']>0 || ($this->user['align'] > 1 && $this->user['align'] < 2) || ($this->user['align'] > 3 && $this->user['align'] < 4))
|
||||
{
|
||||
echo ' <div class="btnAdm">';
|
||||
if($this->user['admin']>0) {
|
||||
echo '<a href="?aem='.$this->see['id'].'"><img title="Ðåäàêòèðîâàòü" src="https://new-combats.com/forum_script/img/ic_acc3.gif" width="10" height="10"></a>';
|
||||
}
|
||||
echo '<a href="?delete_msg='.$this->see['id'].'&read='.$this->see['id'].'"><img title="Ñòåðåòü çàïèñü" src="https://new-combats.com/forum_script/img/ic_acc0.gif" width="10" height="10"></a>';
|
||||
echo '<img onclick="acma('.$this->see['id'].');" title="Êîììåíòèðîâàòü" src="https://new-combats.com/forum_script/img/ic_acc2.gif" width="10" height="10" style="cursor:pointer">';
|
||||
echo '</div>';
|
||||
}
|
||||
echo ' (<span class="date">'.date('d.m.Y H:i',$this->see['time']).'</span>)<br>';
|
||||
$this->see['text'] = str_replace("\n", "<br>", $this->see['text']);
|
||||
$this->see['text'] = $this->testAnswer($this->see['text']);
|
||||
$this->see['text'] = $this->parse_bb_code($this->see['text']);
|
||||
/*
|
||||
if($this->see['id'] ==1608) {
|
||||
$uslist = ''; $xu1 = 0;
|
||||
$su1 = mysql_query('SELECT `i`.`uid`,`u`.`login`,`u`.`level`,`u`.`online`,`u`.`clan`,`u`.`align` FROM `items_users` AS `i` LEFT JOIN `users` AS `u` ON `i`.`uid` = `u`.`id` WHERE `i`.`item_id` = "2852" LIMIT 25');
|
||||
$usrs = array();
|
||||
while($pu1 = mysql_fetch_array($su1)) {
|
||||
if(!isset($usrs[$pu1['uid']])) {
|
||||
$xu1++;
|
||||
$usrs[$pu1['uid']] = $xu1;
|
||||
$uslist .= $xu1.'. <b>'.$pu1['login'].'</b>['.$pu1['level'].']';
|
||||
if($pu1['online']>time()-520) {
|
||||
$uslist .= ' <small>online</small>';
|
||||
}
|
||||
$uslist .= '<br>';
|
||||
}
|
||||
}
|
||||
$this->see['text'] = str_replace("{users-list}", '<b style="color:green">Ñïèñîê ó÷àñòíèêîâ</b> ['.$xu1.'/25]:<br>'.$uslist.'<br>', $this->see['text']);
|
||||
unset($uslist,$pu1,$su1,$xu1,$usrs);
|
||||
}*/
|
||||
|
||||
$rtrn = '';
|
||||
$rtrn .= '<div';
|
||||
if($this->see['fixed'] > 0) {
|
||||
$rtrn .= ' class="fixed_topik"';
|
||||
}
|
||||
|
||||
$rtrn .= ' style="margin-left:31px;">';
|
||||
|
||||
if($this->see['clear']==0){
|
||||
$rtrn .= $this->see['text'];
|
||||
}else{
|
||||
if($this->user['admin'] > 0) {
|
||||
$rtrn .= '<div style="margin-left:31px;color:#9d9472;padding:10px;border:1px solid #ebdca0;">'.$this->see['text'].'</div>';
|
||||
}
|
||||
$rtrn .= '<div style="margin-left:31px;"><font color=red>Çàïèñü áûëà óäàëåíà';
|
||||
if($this->user['del_admin'] == 0) {
|
||||
$rtrn .= ', <img src="https://'.$c['img'].'/i/align/align'.$this->see['del_align'].'.gif"><b>'.$this->see['del_login'].'</b>';
|
||||
}
|
||||
$rtrn .= '</font></div>';
|
||||
}
|
||||
|
||||
//Çàïèñè ìîäåðàòîðîâ è àíãåëîâ
|
||||
$sp1 = mysql_query('SELECT * FROM `forum_msg_mod` WHERE `msg_id` = "'.$this->see['id'].'"');
|
||||
while($pl1 = mysql_fetch_array($sp1)) {
|
||||
$rtrn .= '<div style="margin-left:31px;color:'.$pl1['color'].';">';
|
||||
if($pl1['from_admin'] == 1) {
|
||||
$pl1['login'] = '<Àäìèíèñòðàöèÿ>';
|
||||
$pl1['city'] = '';
|
||||
$pl1['cityreg'] = '';
|
||||
$pl1['clan'] = '';
|
||||
$pl1['level'] = '??';
|
||||
$pl1['uid'] = 0;
|
||||
}
|
||||
$rtrn .= $this->genuser($pl1['uid'],$pl1['login'],$pl1['level'],$pl1['align'],$pl1['clan'],$pl1['invis'],$pl1['city'],$pl1['cityreg']);
|
||||
$rtrn .= ' ('.date('d.m.y H:i',$pl1['time']).'): ';
|
||||
$pl1['text'] = str_replace("\n", "<br>", $pl1['text']);
|
||||
$rtrn .= $this->link_it($pl1['text']).'</div>';
|
||||
}
|
||||
|
||||
$rtrn .= '</div><div class="line2"></div>';
|
||||
//Âûâîäèì êîììåíòàðèè
|
||||
$sp = mysql_query('SELECT * FROM `forum_msg` WHERE `topic` = "'.$this->see['id'].'" AND `delete` = "0" ORDER BY `time` ASC LIMIT '.$start.','.$fd_limit );
|
||||
while($pl = mysql_fetch_array($sp))
|
||||
{
|
||||
|
||||
$rtrn .= $this->genuser($pl['uid'],$pl['login'],$pl['level'],$pl['align'],$pl['clan'],$pl['invis'],$pl['city'],$pl['cityreg']);
|
||||
if($this->user['admin']>0 || ($this->user['align'] > 1 && $this->user['align'] < 2) || ($this->user['align'] > 3 && $this->user['align'] < 4))
|
||||
{
|
||||
$rtrn .= ' <div class="btnAdm">';
|
||||
if($this->user['admin']>0) {
|
||||
$rtrn .= '<a href="?aem='.$pl['id'].'"><img title="Ðåäàêòèðîâàòü" src="https://new-combats.com/forum_script/img/ic_acc3.gif" width="10" height="10"></a>';
|
||||
}
|
||||
$rtrn .= '<a href="?delete_msg='.$pl['id'].'&read='.$pl['topic'].'"><img title="Ñòåðåòü êîììåíòàðèé" src="https://new-combats.com/forum_script/img/ic_acc0.gif" width="10" height="10"></a>';
|
||||
$rtrn .= '<img onclick="acma('.$pl['id'].');" title="Êîììåíòèðîâàòü" src="https://new-combats.com/forum_script/img/ic_acc2.gif" width="10" height="10" style="cursor:pointer">';
|
||||
$rtrn .= '</div>';
|
||||
}
|
||||
$rtrn .= ' (<span class="date">'.date('d.m.Y H:i',$pl['time']).'</span>)<br>';
|
||||
$pl['text'] = $this->parse_bb_code($pl['text']);
|
||||
$pl['text'] = str_replace("\n", "<br>", $pl['text']);
|
||||
if($pl['clear']==0){
|
||||
$rtrn .= '<div style="margin-left:31px;">'.$pl['text'].'</div>';
|
||||
}else{
|
||||
if($this->user['admin'] > 0) {
|
||||
$rtrn .= '<div style="margin-left:31px;color:#9d9472;padding:10px;border:1px solid #ebdca0;">'.$pl['text'].'</div>';
|
||||
}
|
||||
$rtrn .= '<div style="margin-left:31px;"><font color=red>Êîììåíòàðèé óäàëåí';
|
||||
if($this->user['del_admin'] == 0) {
|
||||
$rtrn .= ', <img src="https://'.$c['img'].'/i/align/align'.$pl['del_align'].'.gif"><b>'.$pl['del_login'].'</b>';
|
||||
}
|
||||
$rtrn .= '</font></div>';
|
||||
}
|
||||
|
||||
//Çàïèñè ìîäåðàòîðîâ è àíãåëîâ
|
||||
$sp1 = mysql_query('SELECT * FROM `forum_msg_mod` WHERE `msg_id` = "'.$pl['id'].'"');
|
||||
while($pl1 = mysql_fetch_array($sp1)) {
|
||||
$rtrn .= '<div style="margin-left:31px;color:'.$pl1['color'].';">';
|
||||
if($pl1['from_admin'] == 1) {
|
||||
$pl1['login'] = '<Àäìèíèñòðàöèÿ>';
|
||||
$pl1['city'] = '';
|
||||
$pl1['cityreg'] = '';
|
||||
$pl1['clan'] = '';
|
||||
$pl1['level'] = '??';
|
||||
$pl1['uid'] = 0;
|
||||
}
|
||||
$rtrn .= $this->genuser($pl1['uid'],$pl1['login'],$pl1['level'],$pl1['align'],$pl1['clan'],$pl1['invis'],$pl1['city'],$pl1['cityreg']);
|
||||
$rtrn .= ' ('.date('d.m.y H:i',$pl1['time']).'): ';
|
||||
$pl1['text'] = str_replace("\n", "<br>", $pl1['text']);
|
||||
$rtrn .= $this->link_it($pl1['text']).'</div>';
|
||||
}
|
||||
|
||||
$rtrn .= '<div class="line2"></div>';
|
||||
}
|
||||
echo $rtrn;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public function link_it($text) {
|
||||
$text= preg_replace("/(^|[\n ])([\w]*?)((ht|f)tp(s)?:\/\/[\w]+[^ \,\"\n\r\t<]*)/is", "$1$2<a target=\"_blank\" href=\"$3\" >$3</a>", $text);
|
||||
$text= preg_replace("/(^|[\n ])([\w]*?)((www|ftp)\.[^ \,\"\t\n\r<]*)/is", "$1$2<a target=\"_blank\" href=\"https://$3\" >$3</a>", $text);
|
||||
$text= preg_replace("/(^|[\n ])([a-z0-9&\-_\.]+?)@([\w\-]+\.([\w\-\.]+)+)/i", "$1<a target=\"_blank\" href=\"mailto:$2@$3\">$2@$3</a>", $text);
|
||||
return($text);
|
||||
}
|
||||
|
||||
|
||||
public function genuser($id,$login,$level,$align,$clan,$invis,$city,$cityreg)
|
||||
{
|
||||
global $c,$code;
|
||||
$ufr = '';
|
||||
if($align>0)
|
||||
{
|
||||
$u .= '<img src="https://'.$c['img'].'/i/align/align'.$align.'.gif" />';
|
||||
}
|
||||
if($clan>0)
|
||||
{
|
||||
$clan = mysql_fetch_array(mysql_query('SELECT * FROM `clan` WHERE `id` = "'.((int)$clan).'" LIMIT 1'));
|
||||
if(isset($clan['id']))
|
||||
{
|
||||
$u .= '<img src="https://'.$c['img'].'/i/clan/'.$clan['name_mini'].'.gif" />';
|
||||
}
|
||||
}
|
||||
|
||||
if($login == '<Àäìèíèñòðàöèÿ>')
|
||||
{
|
||||
$login = 'Àäìèíèñòðàöèÿ';
|
||||
}
|
||||
|
||||
$u .= '<b>'.$login.'</b> ['.$level.']<a href="https://'.$c['host'].'/info/'.$id.'" target="_blank" title="Èíô. î '.$login.'"><img src="https://'.$c['img'].'/i/inf_capitalcity.gif"></a>';
|
||||
|
||||
if($city!='')
|
||||
{
|
||||
$ufr = '<img title="'.$city.'" src="https://new-combats.com/forum_script/img/city/'.$city.'.gif" width="17" height="15"> '.$u;
|
||||
}
|
||||
return $u;
|
||||
}
|
||||
|
||||
public function pravasee()
|
||||
{
|
||||
$prava = 1; //ìîæíî äîáàâëÿòü è ïðîñìàòðèâàòü
|
||||
if($this->see['fid']==65 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2))
|
||||
{
|
||||
//òîïèê ÎÑ
|
||||
$prava = 0;
|
||||
}elseif($this->see['fid']==75 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4))
|
||||
{
|
||||
//òîïèê Àðìàäû
|
||||
$prava = 0;
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==3 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4))
|
||||
{
|
||||
$prava = 0;
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==2 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2))
|
||||
{
|
||||
$prava = 0;
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==1 && $this->user['admin']==0)
|
||||
{
|
||||
$prava = 0;
|
||||
}elseif($this->user['level']<1)
|
||||
{
|
||||
$prava = 0;
|
||||
}elseif($this->lst['time']>time()-60)
|
||||
{
|
||||
$prava = 0;
|
||||
}
|
||||
return $prava;
|
||||
}
|
||||
|
||||
public function admintopmsg($read,$id,$text,$color,$adm) {
|
||||
|
||||
$msg = mysql_fetch_array(mysql_query('SELECT `id` FROM `forum_msg` WHERE `id` = "'.mysql_real_escape_string($id).'" LIMIT 1'));
|
||||
if(!isset($msg['id'])) {
|
||||
$this->error = 'Ñîîáùåíèå íå íàéäåíî';
|
||||
}elseif(trim($text,' ')=='' || iconv_strlen(trim($text,' '))<2)
|
||||
{
|
||||
$this->error = 'Ìèíèìàëüíàÿ äëèíà ñîîáùåíèÿ äîëæíà áûòü íå ìåíåå 2-õ ñèìâîëîâ';
|
||||
}elseif($this->user['molch2']>time())
|
||||
{
|
||||
$this->error = 'Âû íå ìîæåòå ïèñàòü ñîîáùåíèÿ è ñîçäàâàòü òîïèêè íà ôîðóìå, íà âàñ íàëîæåíî çàêëÿòèå ìîë÷àíèÿ';
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==3 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4))
|
||||
{
|
||||
$this->error = 'Â ýòîì òîïèêå çàïðåùåíî îñòàâëÿòü îòâåòû';
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==2 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2))
|
||||
{
|
||||
$this->error = 'Â ýòîì òîïèêå çàïðåùåíî îñòàâëÿòü îòâåòû';
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==1 && $this->user['admin']==0)
|
||||
{
|
||||
$this->error = 'Â ýòîì òîïèêå çàïðåùåíî îñòàâëÿòü îòâåòû';
|
||||
}elseif($this->user['level'] < 8)
|
||||
{
|
||||
$this->error = 'Âû íå ìîæåòå ïèñàòü ñîîáùåíèÿ è ñîçäàâàòü òîïèêè íà ôîðóìå, ýòî âîçìîæíî ñ 8-ãî óðîâíÿ';
|
||||
}else{
|
||||
mysql_query('INSERT INTO `forum_msg_mod` (`uid`,`login`,`align`,`level`,`admin`,`clan`,`time`,`text`,`msg_id`,`delete`,`color`,`city`,`cityreg`,`from_admin`) VALUES
|
||||
("'.$this->user['id'].'","'.$this->user['login'].'","'.$this->user['align'].'","'.$this->user['level'].'","'.$this->user['admin'].'","'.$this->user['clan'].'",
|
||||
"'.time().'","'.mysql_real_escape_string($text).'","'.mysql_real_escape_string($msg['id']).'","0","red","'.$this->user['city'].'","'.$this->user['cityreg'].'",
|
||||
"'.mysql_real_escape_string(round((int)$adm)).'") ');
|
||||
if(!isset($this->see['id'])) {
|
||||
header('location: ?r='.round((int)$_GET['r']).'&page='.round((int)$_GET['page']));
|
||||
}else{
|
||||
header('location: ?read='.$this->see['id'].'&page='.round((int)$_GET['page']));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function parse_bb_code($text) {
|
||||
$text = preg_replace('/\[(\/?)(b|i|u|s)\s*\]/', "<$1$2>", $text);
|
||||
|
||||
$text = preg_replace('/\[code\]/', '<pre><code>', $text);
|
||||
$text = preg_replace('/\[\/code\]/', '</code></pre>', $text);
|
||||
|
||||
$text = preg_replace('/\[(\/?)quote\]/', "<$1blockquote>", $text);
|
||||
$text = preg_replace('/\[(\/?)quote(\s*=\s*([\'"]?)([^\'"]+)\3\s*)?\]/', "<$1blockquote>Öèòàòà $4:<br>", $text);
|
||||
|
||||
//$text = preg_replace('/\[url\](?:https:\/\/)?([a-z0-9-.]+\.\w{2,4})\[\/url\]/', "<a href=\"https://$1\">$1</a>", $text);
|
||||
$text = preg_replace('/\[url=(.+?)\](.+?)\[\/url\]/', "<a target=\"_blank\" href=\"$1\">$2</a>", $text);
|
||||
$text = preg_replace('/\[url\s?=\s?([\'"]?)(?:https:\/\/)?([a-z0-9-.]+\.\w{2,4})\1\](.*?)\[\/url\]/', "<a href=\"https://$2\">$3</a>", $text);
|
||||
|
||||
|
||||
$text = preg_replace('/\[img\s*\]([^\]\[]+)\[\/img\]/', "<img src='$1'/>", $text);
|
||||
$text = preg_replace('/\[img\s*=\s*([\'"]?)([^\'"\]]+)\1\]/', "<img src='$2'/>", $text);
|
||||
|
||||
$text = $this->close_dangling_tags($text);
|
||||
|
||||
return $text;
|
||||
}
|
||||
|
||||
// $s - ñòðîêà, â êîòîðîé íåîáõîäèìî çàêðûòü òåãè
|
||||
// $tags - ñïèñîê òåãîâ äëÿ çàêðûòèÿ ÷åðåç ñèìâîë | (b|u|i)
|
||||
public function close_dangling_tags($html){
|
||||
#put all opened tags into an array
|
||||
preg_match_all("#<([a-z]+)( .*)?(?!/)>#iU",$html,$result);
|
||||
$openedtags=$result[1];
|
||||
|
||||
#put all closed tags into an array
|
||||
preg_match_all("#</([a-z]+)>#iU",$html,$result);
|
||||
$closedtags=$result[1];
|
||||
$len_opened = count($openedtags);
|
||||
# all tags are closed
|
||||
if(count($closedtags) == $len_opened){
|
||||
return $html;
|
||||
}
|
||||
|
||||
$openedtags = array_reverse($openedtags);
|
||||
# close tags
|
||||
for($i=0;$i < $len_opened;$i++) {
|
||||
if (!in_array($openedtags[$i],$closedtags)){
|
||||
if( $openedtags[$i] != 'br' ) {
|
||||
$html .= '</'.$openedtags[$i].'>';
|
||||
}
|
||||
} else {
|
||||
unset($closedtags[array_search($openedtags[$i],$closedtags)]);
|
||||
}
|
||||
}
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function addnewtop($title,$text,$ico,$time,$login,$uid,$fid,$topic)
|
||||
{
|
||||
if(trim($text,' ')=='' || iconv_strlen(trim($text,' '))<5)
|
||||
{
|
||||
$this->error = 'Ìèíèìàëüíàÿ äëèíà ñîîáùåíèÿ äîëæíà áûòü íå ìåíåå 5-òè ñèìâîëîâ';
|
||||
}elseif($this->user['molch2']>time())
|
||||
{
|
||||
$this->error = 'Âû íå ìîæåòå ïèñàòü ñîîáùåíèÿ è ñîçäàâàòü òîïèêè íà ôîðóìå, íà âàñ íàëîæåíî çàêëÿòèå ìîë÷àíèÿ';
|
||||
}elseif((trim($title,' ')=='' || iconv_strlen(trim($title,' '))<5) && $topic == -1)
|
||||
{
|
||||
$this->error = 'Ìèíèìàëüíàÿ äëèíà çàãîëîâêà äîëæíà áûòü íå ìåíåå 5-òè ñèìâîëîâ';
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==3 && $this->user['admin']==0 && ($this->user['align']<=3 || $this->user['align']>=4))
|
||||
{
|
||||
$this->error = 'Â ýòîì òîïèêå çàïðåùåíî îñòàâëÿòü îòâåòû';
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==2 && $this->user['admin']==0 && ($this->user['align']<=1 || $this->user['align']>=2))
|
||||
{
|
||||
$this->error = 'Â ýòîì òîïèêå çàïðåùåíî îñòàâëÿòü îòâåòû';
|
||||
}elseif(isset($this->see['id']) && $this->see['nocom']==1 && $this->user['admin']==0)
|
||||
{
|
||||
$this->error = 'Â ýòîì òîïèêå çàïðåùåíî îñòàâëÿòü îòâåòû';
|
||||
}elseif($this->user['level'] < 2)
|
||||
{
|
||||
$this->error = 'Îáùåíèå íà ôîðóìå äîñòóïíî ñ 2-ãî óðîâíÿ';
|
||||
}elseif($this->gd[$fid]>0 && $this->lst['time']<time()-60)
|
||||
{
|
||||
$ico= (int)$ico;
|
||||
if($ico<1 || $ico>14)
|
||||
{
|
||||
$ico = 13;
|
||||
}
|
||||
$tl = array();
|
||||
if(isset($_POST['adminname']) && $this->user['admin']>0)
|
||||
{
|
||||
$tl['login'] = '<Àäìèíèñòðàöèÿ>';
|
||||
$tl['level'] = '??';
|
||||
$tl['align'] = '0';
|
||||
$tl['clan'] = '0';
|
||||
$tl['cityreg'] = 'newvillage';
|
||||
$tl['city'] = 'questcity';
|
||||
$tl['id'] = '0';
|
||||
}else{
|
||||
$tl['login'] = $this->user['login'];
|
||||
$tl['level'] = $this->user['level'];
|
||||
$tl['align'] = $this->user['align'];
|
||||
$tl['clan'] = $this->user['clan'];
|
||||
$tl['cityreg'] = $this->user['cityreg'];
|
||||
$tl['city'] = $this->user['city'];
|
||||
$tl['id'] = $uid;
|
||||
}
|
||||
$lst = mysql_fetch_array(mysql_query('SELECT * FROM `forum_msg` WHERE `topic` = "'.mysql_real_escape_string($topic).'" OR (`topic` = "-1" AND `id` = "'.mysql_real_escape_string($topic).'") ORDER BY `time` DESC LIMIT 1'));
|
||||
$ins = mysql_query('INSERT INTO `forum_msg` (`cityreg`,`city`,`align`,`clan`,`level`,`login`,`fid`,`title`,`topic`,`ico`,`text`,`time`,`ip`,`uid`) VALUES ("'.mysql_real_escape_string($tl['cityreg']).'","'.mysql_real_escape_string($tl['city']).'","'.mysql_real_escape_string($tl['align']).'","'.mysql_real_escape_string($tl['clan']).'","'.mysql_real_escape_string($tl['level']).'","'.mysql_real_escape_string($tl['login']).'","'.mysql_real_escape_string($fid).'","'.mysql_real_escape_string(htmlspecialchars($title, NULL , 'cp1251')).'","'.mysql_real_escape_string($topic).'","'.mysql_real_escape_string($ico).'","'.mysql_real_escape_string(htmlspecialchars($text, NULL , 'cp1251')).'","'.mysql_real_escape_string($time).'","'.$_SERVER['HTTP_X_REAL_IP'].'","'.$tl['id'].'")');
|
||||
if(!$ins)
|
||||
{
|
||||
$this->error = 'Îøèáêà ñîçäàíèÿ òîïèêà';
|
||||
return false;
|
||||
}else{
|
||||
if($topic != -1) {
|
||||
//Åñëè àâòîð ïðåäûäóùåãî ñîîáùåíèÿ íå òåêóùèé þçåð - îòïðàâëÿåì â ÷àò ñîîáùåíèå î íîâîì îòâåòå
|
||||
if($lst['uid']+1!=$this->user['id']) {
|
||||
$fnt = '<b>'.date('d.m.Y H:i').'</b> Íà ôîðóìå îïóáëèêîâàí íîâûé îòâåò â îáñóæäåíèè, â êîòîðîì âû ïðèíèìàëè ó÷àñòèå. <a href=https://new-combats.com/forum?read='.$topic.' target=_blank \>×èòàòü äàëåå</a>';
|
||||
$ins = ''; $ll = array();
|
||||
$sp = mysql_query('SELECT `u`.`city`,`u`.`id`,`u`.`login`,`f`.`uid`,`f`.`login` FROM `forum_msg` AS `f` LEFT JOIN `users` AS `u` ON `f`.`uid` = `u`.`id` WHERE `f`.`delete` = "0" AND (`f`.`topic` = "'.mysql_real_escape_string($topic).'" OR (`f`.`topic` = "-1" AND `f`.`id` = "'.mysql_real_escape_string($topic).'")) LIMIT 1');
|
||||
while($pl = mysql_fetch_array($sp)) {
|
||||
if(!isset($ll[$pl['uid']]) && $pl['uid']!=$this->user['id']) {
|
||||
$ins .= '("'.$pl['city'].'","1","'.$pl['login'].'","6","-1","'.$fnt.'"),';
|
||||
$ll[$pl['uid']] = true;
|
||||
}
|
||||
}
|
||||
unset($ll);
|
||||
$ins = trim($ins,',');
|
||||
if($ins!='') {
|
||||
mysql_query('INSERT INTO `chat` (`city`,`new`,`to`,`type`,`time`,`text`) VALUES '.$ins.'');
|
||||
}
|
||||
}
|
||||
}
|
||||
$fid = mysql_insert_id();
|
||||
$this->lst['time'] = time();
|
||||
if(isset($this->see['id'])) {
|
||||
header('location: ?read='.$this->see['id'].'&page='.round((int)$_GET['page']));
|
||||
}else{
|
||||
header('location: ?r='.round((int)$_GET['r']).'&page='.round((int)$_GET['page']));
|
||||
}
|
||||
return $fid;
|
||||
}
|
||||
}elseif($this->lst['time']>time()-60)
|
||||
{
|
||||
$this->error = 'Âû íå ìîæåòå îñòàâëÿòü îòâåòû è ñîçäàâàòü òîïèêè òàê áûñòðî';
|
||||
}else{
|
||||
$this->error = 'Âû íå ìîæåòå îñòàâëÿòü îòâåòû è ñîçäàâàòü òîïèêè â ýòîé êîíôåðåíöèè';
|
||||
}
|
||||
}
|
||||
|
||||
public function forumData()
|
||||
{
|
||||
$fd_limit = 20;
|
||||
if(isset($_GET['page'])){
|
||||
$start=$_GET['page']*$fd_limit-$fd_limit;
|
||||
}else{
|
||||
$start=0;
|
||||
//echo 'SELECT * FROM `forum_msg` WHERE `topic` < "0" AND `fid` = "'.$this->r.'" AND `delete` = "0" ORDER BY `id` DESC LIMIT '.$start.','.$fd_limit;
|
||||
}
|
||||
global $code,$c,$filter;
|
||||
//îòîáðàæàåì òîïèêè äàííîé êîíôåðåíöèè
|
||||
$re = '';
|
||||
if(isset($_GET['search'])) {
|
||||
$sp = mysql_query('SELECT * FROM `forum_msg` WHERE ( `text` LIKE "%'.mysql_real_escape_string($_GET['search']).'%" OR `title` LIKE "%'.mysql_real_escape_string($_GET['search']).'%" OR `login` LIKE "%'.mysql_real_escape_string($_GET['search']).'%" ) AND `topic` < "0" AND `delete` = "0" ORDER BY `id` DESC LIMIT '.$start.','.$fd_limit );
|
||||
}else{
|
||||
$sp = mysql_query('SELECT * FROM `forum_msg` WHERE `topic` < "0" AND `fid` = "'.$this->r.'" AND `delete` = "0" ORDER BY `fixed` DESC,`id` DESC LIMIT '.$start.','.$fd_limit );
|
||||
}
|
||||
while($pl = mysql_fetch_array($sp))
|
||||
{
|
||||
$lstDT = $pl['time'];
|
||||
$row = mysql_num_rows(mysql_query('SELECT `id` FROM `forum_msg` WHERE `topic` = "'.$pl['id'].'" AND `delete` = "0"'));
|
||||
$plist='<small>'.$this->paginator(2,$pl['id']).'</small>';
|
||||
if($plist!=''){
|
||||
$plist='<img src="https://new-combats.com/forum_script/img/p.gif" width="10" height="12"> '.$plist.'';}
|
||||
|
||||
$re .= '<div';
|
||||
$fxd = '';
|
||||
if($pl['fixed'] > 0) {
|
||||
$fxd = '<img src="https://new-combats.com/forum_script/img/fixed.gif"> ';
|
||||
$re .= ' class="fixed_topik"';
|
||||
}
|
||||
$re .= ' style="margin-top:10px;">';
|
||||
$re .= '<div>'.$fxd.'<img style="border:0px;" src="https://new-combats.com/forum_script/img/icon'.$pl['ico'].'.gif"> <a href="?read='.$pl['id'].'&rnd='.$code.'"><b>'.$pl['title'].'</b></a> '.$plist.' '.$this->genuser($pl['uid'],$pl['login'],$pl['level'],$pl['align'],$pl['clan'],$pl['invis'],$pl['city'],$pl['cityreg']).'</div>';
|
||||
$re .= '<div style="margin-left:21px;"><small class="date">'.date('d.m.Y H:i',$pl['time']).'</small> » <small style="color:#606060;">';
|
||||
if($pl['fid'] == 24) {
|
||||
$re .= $filter->str_count(str_replace('[?]','Âîïðîñ: ',str_replace('[/?]','',str_replace('[:]',', ',$pl['text']))),250);
|
||||
}else{
|
||||
$re .= $filter->str_count(str_replace('[?]','Âîïðîñ: ',str_replace('[/?]','',str_replace('[:]',', ',$pl['text']))),250);
|
||||
}
|
||||
$re .= '</small></div>';
|
||||
$re .= '<div style="margin-left:21px;"><small>Îòâåòîâ: <b>'.$row.'</b> ... ';
|
||||
|
||||
$pku = mysql_query('SELECT `login`,`invis`,`time` FROM `forum_msg` WHERE `topic` = "'.$pl['id'].'" AND `delete` = 0 ORDER BY `id` DESC LIMIT 10');
|
||||
$pkusr = '';
|
||||
while($plku = mysql_fetch_array($pku)) {
|
||||
$pkusr = $plku['login'].', '.$pkusr;
|
||||
$lstDT = $plku['time'];
|
||||
}
|
||||
$pkusr = rtrim($pkusr,', ');
|
||||
$re .= $pkusr;
|
||||
unset($pkusr);
|
||||
|
||||
$re .= ' ('.date('d.m.Y H:i',$lstDT).')</small></div>';
|
||||
$re .= '</div>';
|
||||
$re .="\n";
|
||||
}
|
||||
echo $re;
|
||||
}
|
||||
|
||||
public function history($id,$uid,$act,$text)
|
||||
{
|
||||
if($type==1)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public function actionSee($id)
|
||||
{
|
||||
if($id==1)
|
||||
{
|
||||
//óäàëèòü òîïèê \ êîììåíò
|
||||
$up = mysql_query('UPDATE `forum_msg` SET `delete` = "'.time().'",`del_login`="'.$this->user['login'].'" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
$this->see['delete'] = time();
|
||||
}elseif($id==2)
|
||||
{
|
||||
//çàïðåòèòü êîììåíòèðîâàòü
|
||||
mysql_query('UPDATE `forum_msg` SET `nocom` = "1" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
$this->see['nocom'] = 1;
|
||||
}elseif($id==3)
|
||||
{
|
||||
//ðàçðåøèòü êîììåíòèðîâàòü òîëüêî Àíãåëàì
|
||||
mysql_query('UPDATE `forum_msg` SET `nocom` = "2" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
$this->see['nocom'] = 2;
|
||||
}elseif($id==4)
|
||||
{
|
||||
//ðàçðåøèòü êîììåíòèðîâàòü òîëüêî ïàëàäèíàì
|
||||
mysql_query('UPDATE `forum_msg` SET `nocom` = "3" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
$this->see['nocom'] = 3;
|
||||
}elseif($id==5)
|
||||
{
|
||||
//ðàçðåøèòü êîììåíòèðîâàòü òîëüêî òàðìàíàì
|
||||
mysql_query('UPDATE `forum_msg` SET `nocom` = "4" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
$this->see['nocom'] = 4;
|
||||
}elseif($id==6)
|
||||
{
|
||||
//ðàçðåøèòü êîììåíòèðîâàòü âñåì
|
||||
mysql_query('UPDATE `forum_msg` SET `nocom` = "0" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
$this->see['nocom'] = 0;
|
||||
}elseif($id==9)
|
||||
{
|
||||
//ðàçðåøèòü êîììåíòèðîâàòü âñåì
|
||||
$rzn = mysql_fetch_array(mysql_query('SELECT * FROM `forum_menu` WHERE `id` = "'.mysql_real_escape_string($_GET['trm']).'" LIMIT 1'));
|
||||
if(isset($rzn['id'])) {
|
||||
mysql_query('UPDATE `forum_msg` SET `fid` = "'.mysql_real_escape_string($rzn['id']).'" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
}
|
||||
}elseif($id==7) {
|
||||
//ôèêñàöèÿ òîïèêà èëè ñîîáùåíèÿ
|
||||
if( $this->see['fixed'] == 0 ) {
|
||||
$this->see['fixed'] = time();
|
||||
}else{
|
||||
$this->see['fixed'] = 0;
|
||||
}
|
||||
mysql_query('UPDATE `forum_msg` SET `fixed` = "'.$this->see['fixed'].'" WHERE `id` = "'.$this->see['id'].'" LIMIT 1');
|
||||
}elseif($id==8) {
|
||||
//óäàëåíèå ñîîáùåíèÿ
|
||||
$tpdms = mysql_fetch_array(mysql_query('SELECT `id`,`clear`,`delete` FROM `forum_msg` WHERE `id` = "'.mysql_real_escape_string(round((int)$_GET['delete_msg'])).'" LIMIT 1' ));
|
||||
if(isset($tpdms['id'])) {
|
||||
// if(isset($this->see['id'])) {
|
||||
if( $tpdms['clear'] == 0 ) {
|
||||
$tpdms['clear'] = time();
|
||||
}else{
|
||||
$tpdms['delete'] = $this->user['id'];
|
||||
}
|
||||
mysql_query('UPDATE `forum_msg` SET `clear` = "'.$tpdms['clear'].'",`delete` = "'.$tpdms['delete'].'",`del_login` = "'.$this->user['login'].'",`del_align` = "'.$this->user['align'].'",`del_clan` = "'.$this->user['clan'].'",`del_admin` = "'.$this->user['admin'].'" WHERE `id` = "'.$tpdms['id'].'" LIMIT 1');
|
||||
// }
|
||||
}
|
||||
}
|
||||
if(!isset($this->see['id'])) {
|
||||
header('location: ?r='.round((int)$_GET['r']).'&page='.round((int)$_GET['page']));
|
||||
}else{
|
||||
header('location: ?read='.$this->see['id'].'&page='.round((int)$_GET['page']));
|
||||
}
|
||||
}
|
||||
|
||||
public function genRz($pl)
|
||||
{
|
||||
global $code;
|
||||
$rt = '';
|
||||
if(isset($pl['id']))
|
||||
{
|
||||
//0 - äîñòóï çàêðûò, íåëüÿ äàæå ÷èòàòü, 1 - òîëüêî ÷òåíèå, 2 - ðàçðåøåíî äîáàâëÿòü îòâåòû, 3 - ðàçðåøåíî ñîçäàâàòü òîïèêè, 4 - ðàçðåøåíî ñîçäàâàòü òîïèêè è äîáàâëÿòü îòâåòû
|
||||
$ico = 4;
|
||||
if($pl['level']>$this->user['level'])
|
||||
{
|
||||
$ico = 1;
|
||||
}
|
||||
//ïðîâåðÿåì óðîâåíü äîñòóïà
|
||||
$this->gd[$pl['id']] = $ico;
|
||||
$ico = '<img width="10" height="10" title="'.$this->acs[$ico].'" src="https://new-combats.com/forum_script/img/ic_acc'.$ico.'.gif">';
|
||||
$rt = ''.$ico.' <a href="?r='.$pl['id'].'&rnd='.$code.'"><b>'.$pl['name'].'</b></a>';
|
||||
}else{
|
||||
$rt = 'Ðàçäåë íå íàéäåí';
|
||||
}
|
||||
return $rt;
|
||||
}
|
||||
|
||||
public function genMenu()
|
||||
{
|
||||
$m = '';
|
||||
|
||||
|
||||
$sp = mysql_query('SELECT * FROM `forum_menu` WHERE `parent` = "0" ORDER BY `pos` DESC');
|
||||
while($pl = mysql_fetch_array($sp))
|
||||
{
|
||||
if( $pl['id'] == 65 && $this->user['admin'] == 0 && ($this->user['align'] <= 1 ||$this->user['align'] >= 2) ) {
|
||||
|
||||
}elseif( $pl['id'] == 75 && $this->user['admin'] == 0 && ($this->user['align'] <= 3 ||$this->user['align'] >= 4) ) {
|
||||
|
||||
}elseif($pl['only_admin']==0 || $this->user['admin']>0)
|
||||
{
|
||||
$m .= $this->genRz($pl).'<br>';
|
||||
if($this->r==$pl['id'] || $this->fm['parent']==$pl['id'])
|
||||
{
|
||||
$sp2 = mysql_query('SELECT * FROM `forum_menu` WHERE `parent` = "'.$pl['id'].'" AND `parent2`="0"');
|
||||
while($pl2 = mysql_fetch_array($sp2))
|
||||
{
|
||||
$m .= ' '.$this->genRz($pl2).'<br>';
|
||||
if($this->r==$pl2['id'] || $this->fm['parent2']==$pl2['id'])
|
||||
{
|
||||
$sp3 = mysql_query('SELECT * FROM `forum_menu` WHERE `parent2` = "'.$pl2['id'].'"');
|
||||
while($pl3 = mysql_fetch_array($sp3))
|
||||
{
|
||||
$m .= ' '.$this->genRz($pl3).'<br>';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$this->menu = $m;
|
||||
}
|
||||
}
|
||||
|
||||
$f = new forum;
|
||||
?>
|
||||
@@ -0,0 +1,455 @@
|
||||
[14-Mar-2018 01:45:40 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 02:24:07 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 02:31:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 03:16:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 03:55:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 04:07:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 05:08:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 05:08:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 05:11:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:06:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:06:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:06:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:28 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:32 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:07:34 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:23:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 06:24:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:12:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:33:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:33:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:33:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:33:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:11 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:28 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:36 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:34:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:35:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:35:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:35:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:35:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:36:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:36:34 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:39:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:39:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:39:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:39:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:29 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:40:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:41:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:41:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:41:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:41:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:41:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:42:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:02 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:07 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:43:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:44:56 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:44:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:45:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:45:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:45:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:45:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:45:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:46:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:46:02 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:46:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:46:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:47:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:50:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:50:20 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:50:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:50:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:50:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:51:07 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:51:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:51:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:29 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:36 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:51 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 07:55:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:01:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:02:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:02:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:02:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:05:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:05:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:09:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:09:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:17:36 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:22:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:25:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:31:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:36:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:36:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:37:20 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:41:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:43:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:43:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:43:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:43:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:52:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:40 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:55:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:59:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:59:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:59:25 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:59:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 08:59:56 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:00:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:01:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:01:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:01:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:01:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:01:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:06:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:10:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:10:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:23:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:30:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:30:11 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:30:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:42:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:42:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:44:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:44:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:45:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:51:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:52:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:52:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:54:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:54:23 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:54:25 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:54:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:54:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:54:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 09:59:58 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:00:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:00:29 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:00:29 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:11:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:11:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:11:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:13:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:13:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:23:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:38:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:39:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:39:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:47:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:47:25 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:47:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 10:59:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:00:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:08:56 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:09:07 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:14:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:19:55 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:21:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:21:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:34:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:38:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:38:20 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:43:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:43:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 11:43:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:15:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:15:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:30:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:30:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:32:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:44:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:57:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 12:57:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:06:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:23:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:25:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:27:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:41:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:41:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:41:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:41:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:41:28 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:45:07 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:51:56 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:52:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 13:52:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:10:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:23:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:23:55 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:35:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:37:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:37:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:45:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:45:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:45:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:47:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:48:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:48:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:48:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:06 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:49:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:56:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:57:28 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:57:28 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 14:58:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:04:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:14:02 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:14:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:16:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:17:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:17:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:20:11 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:20:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:20:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:21:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:30:25 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:32:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:32:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:32:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:32:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:50:02 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:50:11 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:50:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:50:40 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:50:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:51:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:51:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:53:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:53:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:53:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:56:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:57:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:57:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:57:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 15:57:34 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:02:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:02:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:10:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:23:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:23:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:23:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:24:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:24:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:24:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:24:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:24:55 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:25:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:25:51 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:31:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:31:56 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:42:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 16:44:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:02:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:06:25 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:06:36 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:06:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:26:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:26:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:26:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:26:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:26:40 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:27:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:27:28 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:28:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:29:02 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:48:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:51:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:18 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:53:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:54:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:54:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:54:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:54:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:55:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:56:13 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 17:56:36 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:14:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:14:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:14:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:14:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:14:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:22:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:22:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:26:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:31:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:32:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:32:32 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 18:32:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 19:01:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 19:01:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 19:03:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 19:36:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 19:45:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 19:50:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:07:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:07:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:14:32 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:22:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:32:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:34:32 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:34:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:34:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:34:51 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:39:47 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:39:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:39:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:40:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:40:00 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:40:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:41:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:41:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:42:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:42:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 20:42:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:00:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:01:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:31 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:49 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:52 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:06:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:08:33 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:08:40 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:08:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:08:56 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:09:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:09:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:09:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:12:09 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:12:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:12:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:16:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:47:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:47:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:51:29 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:51:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:52:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:52:19 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:53:01 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:53:03 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:53:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:53:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:53:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:53:17 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 21:59:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:09:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:17:27 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:20:30 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:20:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:37:36 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:38:38 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:38:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:38:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:38:45 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:38:51 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:38:54 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:39:37 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:40:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:40:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:43:11 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:49:46 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:54:42 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:54:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:54:50 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:54:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:54:59 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:55:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 22:57:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:00:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:02:24 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:07:15 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:07:21 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:07:57 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:08:35 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:16:05 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:16:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:16:12 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:22:32 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:27:10 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:52:26 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:53:14 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[14-Mar-2018 23:53:20 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 00:13:08 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 00:13:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 00:13:16 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 00:14:20 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 00:14:22 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 00:30:20 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
[15-Mar-2018 01:20:04 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/cpanel/ea-php54/root/usr/lib64/php/modules/curl.so' - libnghttp2.so.14: cannot open shared object file: No such file or directory in Unknown on line 0
|
||||
|
After Width: | Height: | Size: 135 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 996 B |
|
After Width: | Height: | Size: 311 B |
|
After Width: | Height: | Size: 590 B |
|
After Width: | Height: | Size: 1018 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 295 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 651 B |
|
After Width: | Height: | Size: 150 B |
|
After Width: | Height: | Size: 1012 B |
|
After Width: | Height: | Size: 995 B |
|
After Width: | Height: | Size: 589 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 954 B |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 123 KiB |
|
After Width: | Height: | Size: 9.4 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 504 B |
|
After Width: | Height: | Size: 505 B |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 521 B |
|
After Width: | Height: | Size: 510 B |
|
After Width: | Height: | Size: 288 B |
|
After Width: | Height: | Size: 374 B |
|
After Width: | Height: | Size: 372 B |
|
After Width: | Height: | Size: 387 B |
|
After Width: | Height: | Size: 361 B |
|
After Width: | Height: | Size: 385 B |
|
After Width: | Height: | Size: 361 B |
|
After Width: | Height: | Size: 327 B |
|
After Width: | Height: | Size: 375 B |
|
After Width: | Height: | Size: 349 B |
|
After Width: | Height: | Size: 384 B |
|
After Width: | Height: | Size: 361 B |
|
After Width: | Height: | Size: 370 B |
|
After Width: | Height: | Size: 376 B |
|
After Width: | Height: | Size: 382 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 338 B |
|
After Width: | Height: | Size: 167 B |
|
After Width: | Height: | Size: 124 B |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 539 B |
@@ -0,0 +1,888 @@
|
||||
<?
|
||||
|
||||
define('GAME',true);
|
||||
include('../_incl_data/__config.php');
|
||||
include('../_incl_data/class/__db_connect.php');
|
||||
include('../_incl_data/class/__filter_class.php');
|
||||
include('../_incl_data/class/__user.php');
|
||||
include('_forum.class.php');
|
||||
|
||||
$url = explode('?',$_SERVER["REQUEST_URI"]);
|
||||
if(isset($url[1])) {
|
||||
$i = 0;
|
||||
$x = explode('&',$url[1]);
|
||||
while( $i < count($x) ) {
|
||||
$x2 = explode('=',$x[$i]);
|
||||
if(is_array($x2)) {
|
||||
if(!isset($x2[1])) {
|
||||
$x2[1] = true;
|
||||
}
|
||||
$_GET[$x2[0]] = $x2[1];
|
||||
}else{
|
||||
$_GET[$x[$i]] = true;
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
||||
if(isset($_GET['page'])) {
|
||||
$_GET['page'] = round((int)$_GET['page']);
|
||||
if($_GET['page'] < 1) {
|
||||
$_GET['page'] = 1;
|
||||
}
|
||||
}else{
|
||||
$_GET['page'] = 1;
|
||||
}
|
||||
|
||||
|
||||
$f->startForum();
|
||||
|
||||
if(($f->user['align']>1 && $f->user['align']<2) || ($f->user['align']>3 && $f->user['align']<4) || $f->user['admin']>0)
|
||||
{
|
||||
if(isset($_GET['mod_use']))
|
||||
{
|
||||
if(!isset($_COOKIE['mod']))
|
||||
{
|
||||
setcookie('mod',true,time()+60*60*24*30);
|
||||
$_COOKIE['mod'] = true;
|
||||
}else{
|
||||
setcookie('mod',true,time()-60*60*24*30);
|
||||
unset($_COOKIE['mod']);
|
||||
}
|
||||
}elseif(isset($_GET['mod_use2']) && $f->user['admin']>0)
|
||||
{
|
||||
if(!isset($_COOKIE['mod2']))
|
||||
{
|
||||
setcookie('mod2',true,time()+60*60*24*30);
|
||||
$_COOKIE['mod2'] = true;
|
||||
}else{
|
||||
setcookie('mod2',true,time()-60*60*24*30);
|
||||
unset($_COOKIE['mod2']);
|
||||
}
|
||||
}
|
||||
|
||||
$mod = 'on';
|
||||
$mod2 = 'off';
|
||||
|
||||
if(isset($_COOKIE['mod']))
|
||||
{
|
||||
$mod = 'off';
|
||||
$f->mod = 1;
|
||||
}
|
||||
if(isset($_COOKIE['mod2']) && $f->user['admin']>0)
|
||||
{
|
||||
$mod2 = 'on';
|
||||
$f->user['admin'] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if(isset($f->user['id']))
|
||||
{
|
||||
if(isset($_POST['add_otv_adm']) && (($f->user['align']>1 && $f->user['align']<2) || ($f->user['align']>3 && $f->user['align']<4) || $f->user['admin']>0)) {
|
||||
|
||||
$f->admintopmsg(round((int)$_GET['read']),round((int)$_POST['add_otv_adm']),$_POST['text2_adm'],'Red',round((int)$_POST['adminname_adm']));
|
||||
|
||||
}elseif(isset($_POST['add_top']))
|
||||
{
|
||||
//if($f->gd[$f->fm['id']]==3 || $f->gd[$f->fm['id']]==4 || $f->user['admin']>0)
|
||||
//{
|
||||
$add = $f->addnewtop($_POST['title'],$_POST['text'],$_POST['icon'],time(),$f->user['login'],$f->user['id'],$_POST['add_top'],-1);
|
||||
if($add>0)
|
||||
{
|
||||
$fnt = 'Íà ôîðóìå, â ðàçäåëå "Íîâîñòè" îïóáëèêîâàíà íîâàÿ ñòàòüÿ "<b>'.$_POST['title'].'</b>". <a href=https://'.$c['host'].'/forum?read='.$add.' target=_blank \>×èòàòü äàëåå</a>';
|
||||
mysql_query('INSERT INTO `chat` (`type`,`time`,`text`) VALUES ("45","'.time().'","'.$fnt.'")');
|
||||
}
|
||||
//}
|
||||
}elseif(isset($_POST['add_otv']))
|
||||
{
|
||||
$addTo = mysql_fetch_array(mysql_query('SELECT `id`,`time`,`delete`,`fid` FROM `forum_msg` WHERE `id` = "'.mysql_real_escape_string($_POST['add_otv']).'" LIMIT 1'));
|
||||
if(isset($addTo['id']))
|
||||
{
|
||||
//if($f->gd[$addTo['fid']]==2 || $f->gd[$addTo['fid']]==4 || $f->user['admin']>0)
|
||||
//{
|
||||
$add = $f->addnewtop('',$_POST['text2'],0,time(),$f->user['login'],$f->user['id'],$addTo['fid'],$addTo['id']);
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(isset($_GET['read']) && $f->mod==1)
|
||||
{
|
||||
|
||||
if(isset($_GET['trm']) && (($f->user['align']>1 && $f->user['align']<2) || ($f->user['align']>3 && $f->user['align']<4) || $f->user['admin']>0)) {
|
||||
$f->actionSee(9);
|
||||
}elseif(isset($_GET['delete_msg']) && (($f->user['align']>=1.5 && $f->user['align']<2) || ($f->user['align']>=3.05 && $f->user['align']<4) || $f->user['admin']>0)) {
|
||||
$f->actionSee(8);
|
||||
}elseif(isset($_GET['delete']) && isset($f->see['id']) && (($f->user['align']>=1.5 && $f->user['align']<2) || ($f->user['align']>=3.05 && $f->user['align']<4) || $f->user['admin']>0))
|
||||
{
|
||||
$f->actionSee(1);
|
||||
}elseif(isset($_GET['nocomment']) && isset($f->see['id']) && (($f->user['align']>=1.5 && $f->user['align']<2) || ($f->user['align']>=3.05 && $f->user['align']<4) || $f->user['admin']>0))
|
||||
{
|
||||
$f->actionSee(2);
|
||||
}elseif(isset($_GET['fixed']) && isset($f->see['id']) && (($f->user['align']>=1.5 && $f->user['align']<2) || ($f->user['align']>=3.05 && $f->user['align']<4) || $f->user['admin']>0))
|
||||
{
|
||||
$f->actionSee(7);
|
||||
}elseif(isset($_GET['onlyadmin']) && isset($f->see['id']) && $f->user['admin']>0)
|
||||
{
|
||||
$f->actionSee(3);
|
||||
}elseif(isset($_GET['onlymoder']) && isset($f->see['id']) && (($f->user['align']>=3.05 && $f->user['align']<4) || ($f->user['admin']>0 && $_GET['onlymoder']==2)))
|
||||
{
|
||||
$f->actionSee(5);
|
||||
}elseif(isset($_GET['onlymoder']) && isset($f->see['id']) && (($f->user['align']>=1.5 && $f->user['align']<2) || ($f->user['admin']>0 && $_GET['onlymoder']==1)))
|
||||
{
|
||||
$f->actionSee(4);
|
||||
}elseif(isset($_GET['onlyall']) && isset($f->see['id']) && (($f->user['align']>=1.5 && $f->user['align']<2) || ($f->user['align']>=3.05 && $f->user['align']<4) || $f->user['admin']>0))
|
||||
{
|
||||
$f->actionSee(6);
|
||||
}
|
||||
}
|
||||
|
||||
$dost = array(0=>'âñåì ïîëüçîâàòåëÿì',1=>'òîëüêî ÷òåíèå',2=>'òîëüêî äëÿ Àíãåëîâ',3=>'òîëüêî äëÿ Ïàëàäèíîâ',4=>'òîëüêî äëÿ Òàðìàíîâ');
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="windows-1251" />
|
||||
<link rel="canonical" href="https://new-combats.com/forum"/>
|
||||
<title>Ôîðóì áðàóçåðíîé îíëàéí èãðû Íîâûé «Áîéöîâñêèé êëóá»</title>
|
||||
<meta name="description" content="Çäåñü ó÷àñòíèêè ïðîåêòà New Combats ? èìåþò âîçìîæíîñòü îáñóäèòü ëþáûå èãðîâûå òåìû, ïîñâÿùåííûå èãðå ÁÊ. Ïðèñîåäèíÿéòåñü ê îáùåíèþ ñ èãðîêàìè ïîïóëÿðíîé MMORPG."/>
|
||||
<meta name="keywords" content="Áîéöîâñêèé êëóá èãðàòü, áîéöîâñêèé êëóá, Combats.com, ñòàðûé áîéöîâñêèé êëóá, èãðà áîéöîâñêèé êëóá, èãðàòü â êîìáàòñ, êîìáàòñ, áðàóçåðíàÿ îíëàéí èãðà, Acombats, ñòàðûé ÁÊ, èãðàòü â ñòàðûé ÁÊ, oldcombats, îíëàéí ìèð, ìàã, likebk, Comabts, legbk, acomabts.com, ãàéä êðèò, ãàéä óâîðîò, ãàéä òàíê, ãàéä êðèò"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=0.5, maximum-scale=1.0, user-scalable=no">
|
||||
<script src="https://<?=$c['host']?>/js/jquery.js"></script>
|
||||
<script src="https://<?=$c['host']?>/js/jquery.zclip.js"></script>
|
||||
<script>
|
||||
$.ajaxSetup({cache: false});
|
||||
$(window).error(function(){
|
||||
return true;
|
||||
});
|
||||
</script>
|
||||
<script src="https://<?=$c['host']?>/js/interface.js"></script>
|
||||
<script src="https://<?=$c['host']?>/js/jqueryrotate.js"></script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://<?=$c['host']?>/css/windows.css" />
|
||||
<style type="text/css">
|
||||
<!--
|
||||
html {
|
||||
width:100%;
|
||||
height:100%;
|
||||
}
|
||||
img {
|
||||
border:none;
|
||||
}
|
||||
body {
|
||||
width:100%;
|
||||
height:100%;
|
||||
margin-left: 0px;
|
||||
margin-top: 0px;
|
||||
margin-right: 0px;
|
||||
margin-bottom: 0px;
|
||||
background-color: #3D3D3B;
|
||||
font-size: 10pt; font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
#header {
|
||||
width:100%;
|
||||
height:135px;
|
||||
text-align:center;
|
||||
background-image:url(https://new-combats.com/forum_script/img/line_capitalcity.jpg);
|
||||
}
|
||||
#footer {
|
||||
width:100%;
|
||||
text-align:center;
|
||||
background-image:url(https://new-combats.com/forum_script/img/footer_capitalcity.jpg);
|
||||
background-repeat:repeat-x;
|
||||
padding-top:13px;
|
||||
background-color:#000000;
|
||||
}
|
||||
#main {
|
||||
width:100%;
|
||||
text-align:center;
|
||||
}
|
||||
#leftground {
|
||||
background-image:url(https://new-combats.com/forum_script/img/leftground.jpg);
|
||||
}
|
||||
.text {
|
||||
font-weight: normal;
|
||||
/* font-size: 13px; */
|
||||
font-size: 10pt;
|
||||
color: #000000;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
|
||||
H3 {
|
||||
font-weight: bold;
|
||||
/* font-size: 16px; */
|
||||
font-size: 12pt;
|
||||
color: #8f0000;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.answ1 {
|
||||
|
||||
}
|
||||
.answ1:hover {
|
||||
background-color: #EBDCA0;
|
||||
background-image: url(https://new-combats.com/forum_script/img/ao.png);
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.answ1h {
|
||||
background-color: #EBDCA0;
|
||||
background-image: url(https://new-combats.com/forum_script/img/ao.png);
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
H4 {
|
||||
font-weight: bold;
|
||||
/* font-size: 15px; */
|
||||
font-size: 11pt;
|
||||
margin-bottom: 5px;
|
||||
color: #8f0000;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
A:link {
|
||||
font-weight: normal;
|
||||
color: #524936;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:visited {
|
||||
font-weight: normal;
|
||||
color: #633525;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:active {
|
||||
font-weight: normal;
|
||||
color: #77684d;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #1E1E1E;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.date {
|
||||
font-weight: normal;
|
||||
/* font-size: 11px; */
|
||||
font-size: 8pt;
|
||||
color: #007000;
|
||||
font-family: Courier, Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
text-decoration: none;
|
||||
}
|
||||
.line1 {
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-top-color: #837B5C;
|
||||
width:100%;
|
||||
margin-top:7px;
|
||||
margin-bottom:7px;
|
||||
}
|
||||
.line2 {
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-top-color: #C4BFAA;
|
||||
width:100%;
|
||||
margin-top:9px;
|
||||
margin-bottom:9px;
|
||||
}
|
||||
.text1 {
|
||||
color:#8F0000;
|
||||
font-size:12px;
|
||||
}
|
||||
.inup {
|
||||
border-right: #302F2A 1px double;
|
||||
border-top: #302F2A 1px double;
|
||||
/* font-size: 11px; */
|
||||
font-size: 8pt;
|
||||
border-left: #302F2A 1px double;
|
||||
color: #000000;
|
||||
border-bottom: #302F2A 1px double;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
background-color: #DED7BD;
|
||||
}
|
||||
.text {
|
||||
font-weight: normal;
|
||||
/* font-size: 13px; */
|
||||
font-size: 10pt;
|
||||
color: #000000;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
SELECT {
|
||||
border-right: #b0b0b0 1pt solid; border-top: #b0b0b0 1pt solid; margin-top: 1px; font-size: 10px;
|
||||
margin-bottom: 2px; border-left: #b0b0b0 1pt solid; color: #191970; border-bottom: #b0b0b0 1pt solid;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
TEXTAREA {
|
||||
border-right: #b0b0b0 1pt solid; border-top: #b0b0b0 1pt solid; margin-top: 1px; font-size: 10px;
|
||||
margin-bottom: 2px; border-left: #b0b0b0 1pt solid; color: #191970; border-bottom: #b0b0b0 1pt solid;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
INPUT {
|
||||
border-right: #b0b0b0 1pt solid; border-top: #b0b0b0 1pt solid; margin-top: 1px; font-size: 10px;
|
||||
margin-bottom: 2px; border-left: #b0b0b0 1pt solid; color: #191970; border-bottom: #b0b0b0 1pt solid;
|
||||
font-family: Verdana, Helvetica, Arial, Tahoma, sans-serif;
|
||||
}
|
||||
pages a {
|
||||
color:#5b3e33;
|
||||
padding: 1px 3px 1px 3px;
|
||||
}
|
||||
pages u {
|
||||
padding: 1px 3px 1px 3px;
|
||||
color: #6f0000;
|
||||
font-weight: bold;
|
||||
}
|
||||
pages a:hover {
|
||||
background-color:#FFFFFF;
|
||||
}
|
||||
div.fixed_topik {
|
||||
background-color: #EBDCA0;
|
||||
background-image: url(https://new-combats.com/forum_script/img/ao.png);
|
||||
background-repeat: repeat-x;
|
||||
-webkit-border-radius:8px;
|
||||
-moz-border-radius:8px;
|
||||
border-radius:8px;
|
||||
-ms-border-radius:8px;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
padding:5px;
|
||||
|
||||
}
|
||||
div.fixed_topik_in {
|
||||
background-color: #EBDCA0;
|
||||
background-image: url(https://new-combats.com/forum_script/img/ao.png);
|
||||
background-repeat: repeat-x;
|
||||
margin-right: 120px;
|
||||
-webkit-border-radius:8px;
|
||||
-moz-border-radius:8px;
|
||||
border-radius:8px;
|
||||
-ms-border-radius:8px;
|
||||
padding:5px;
|
||||
}
|
||||
.btnAdm {
|
||||
display:inline-block;
|
||||
background-color:#ebdda4;
|
||||
border:1px solid #cabb80;
|
||||
margin:1px 1px -5px 1px;
|
||||
}
|
||||
.btnAdm img {
|
||||
padding:5px;
|
||||
display:block;
|
||||
float:left;
|
||||
}
|
||||
.btnAdm img:hover {
|
||||
background-color:#c1b278;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
<script>
|
||||
var c = {
|
||||
url:'<?=$c['host']?>',
|
||||
img:'<?=$c['img']?>',
|
||||
uid:<?=(0+$f->user['id'])?>,
|
||||
login:'<?=$f->user['login']?>',
|
||||
city:'<?=$f->user['city']?>',
|
||||
lvl:<?=(0+$f->user['level'])?>,
|
||||
rnd:'1',
|
||||
filter:0,
|
||||
time:<?=time()?>,
|
||||
pl:0,
|
||||
align:<?=(0+$f->user['align'])?>,
|
||||
clan:<?=(0+$f->user['clan'])?>,
|
||||
admin:<?=(0+$f->user['admin'])?>,
|
||||
sound:0,
|
||||
money:0}, sd4key = "0f27a8a6a79921703aee0ba6ff02e4c2", lafstReg = {},enterUse = 0;
|
||||
|
||||
function ctest(city) {
|
||||
if(city != c['city']) {
|
||||
top.location = 'club';
|
||||
}
|
||||
}
|
||||
var key_actions = {};
|
||||
<!--
|
||||
function MM_jumpMenu(targ,selObj,restore){ //v3.0
|
||||
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
|
||||
if (restore) selObj.selectedIndex=0;
|
||||
}
|
||||
function acma(id) {
|
||||
var html = '';
|
||||
|
||||
html += '<form method="post" action="https://new-combats.com/forum?read=<?=round((int)$_GET['read'])?>&page=<?=$_GET['page']?>">'+
|
||||
'<table align="center">'+
|
||||
'<tr>'+
|
||||
'<td><h4>Òåêñò âàøåé çàïèñè:</h4></td>'+
|
||||
'</tr>'+
|
||||
'<tr>'+
|
||||
'<td><textarea rows="8" class="inup" name="text2_adm" cols="85" wrap="virtual"></textarea></td>'+
|
||||
'<td><input name="add2" type="button" class="btn" value=" Æ " title="Æèðíûé">'+
|
||||
'<br />'+
|
||||
'<input name="add2" type="button" class="btn" value=" Ê " title="Íàêëîííûé">'+
|
||||
'<br />'+
|
||||
'<input name="add2" type="button" class="btn" value=" × " title="Ïîä÷åðêíóòûé">'+
|
||||
'<br />'+
|
||||
'<input name="add2" type="button" class="btn" value="Êîä" title="Òåêñò ïðîãðàììû"></td>'+
|
||||
'</tr>'+
|
||||
'<tr>'+
|
||||
'<td colspan="2"><table width="100%">'+
|
||||
'<tr>'+
|
||||
<? if($f->user['admin'] > 0 ) { ?>
|
||||
'<td><div align="left"><input name="adminname_adm" id="adminname_adm" type="checkbox" value="1" /><label for="adminname_adm"> Îò èìåíè Àäìèíèñòðàöèè ïðîåêòà.</label></div><br><br /></td>'+
|
||||
<? } ?>
|
||||
'<td width="120" align="right"><input type="submit" class="btn" value="Äîáàâèòü" name="add2_adm" />'+
|
||||
'<input type="hidden" id="add_otv_adm" name="add_otv_adm" value="'+id+'" /></td>'+
|
||||
'</tr>'+
|
||||
'</table></td>'+
|
||||
'</tr>'+
|
||||
'</table>'+
|
||||
'</form>';
|
||||
|
||||
|
||||
win.add('cmments1forum','Îñòàâèòü çàïèñü ê êîììåíòàðèþ',html,{'a1':'alert('+id+');'},0,1,'width:630px;');
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="windows" style="position:absolute;z-index:1101;"></div>
|
||||
<? /*
|
||||
<div id="wupbox" style="position:absolute;z-index:10101;width:100%;height:100%;" onmouseup="win.WstopDrag()" onmousemove="win.WmoveDrag(event)" onselectstart="return false"></div>
|
||||
*/ ?>
|
||||
<div id="header"><a href="https://new-combats.com/forum/"><img src="https://new-combats.com/inx/newlogo.jpg" width="924" height="135"></a></div>
|
||||
<div id="main">
|
||||
<table width="<? if($f->r==-1){ echo '80%'; }else{ echo '80%'; } ?>" border="0" align="center" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td width="29" background="https://new-combats.com/forum_script/img/leftground.jpg"> </td>
|
||||
<td width="1" bgcolor="#F2E5B1"> </td>
|
||||
<td valign="top" bgcolor="#F2E5B1" align="left">
|
||||
<!-- -->
|
||||
<?
|
||||
if(isset($f->error) && $f->error!='' && $f->r!=-2)
|
||||
{
|
||||
echo '<font color="red"><b>'.$f->error.'</b></font>';
|
||||
}
|
||||
if($f->user['admin']>0 && isset($_GET['aem']))
|
||||
{
|
||||
?>
|
||||
<div style="margin:30px;">
|
||||
<p><a href="javascript:void(0);" onClick="history.back();">Âåðíóòüñÿ íàçàä</a></p>
|
||||
<br>
|
||||
<?
|
||||
$ed = mysql_fetch_array(mysql_query('SELECT * FROM `forum_msg` WHERE `id` = "'.((int)$_GET['aem']).'" LIMIT 1'));
|
||||
if(!isset($ed['id']))
|
||||
{
|
||||
echo '<br><br><center>Äàííûå äëÿ ðåäàêòèðîâàíèÿ íå íàéäåíû</center><br><br>';
|
||||
}else{
|
||||
$fm = mysql_fetch_array(mysql_query('SELECT * FROM `forum_menu` WHERE `id` = "'.$ed['fid'].'" LIMIT 1'));
|
||||
echo 'ID: '.$ed['id'].'<br>Ðàçäåë: <b>'.$fm['name'].'</b><br>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?
|
||||
}elseif(isset($_GET['search'])) {
|
||||
//Èùåì íà ôîðóìå
|
||||
if(isset($_POST['search'])) {
|
||||
$_GET['search'] = $_POST['search'];
|
||||
}else{
|
||||
$_POST['search'] = $_GET['search'];
|
||||
}
|
||||
$word = $_POST['search'];
|
||||
$word = htmlspecialchars($word,NULL,'cp1251');
|
||||
$limw = mysql_fetch_array(mysql_query('SELECT COUNT(*) FROM `forum_msg` WHERE ( `text` LIKE "%'.mysql_real_escape_string($_POST['search']).'%" OR `title` LIKE "%'.mysql_real_escape_string($_POST['search']).'%" OR `login` LIKE "%'.mysql_real_escape_string($_POST['search']).'%" ) AND `topic` < "0" AND `delete` = "0"'));
|
||||
$limw = $limw[0];
|
||||
?>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="210" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td valign="top"><img src="https://new-combats.com/forum_script/img/fone1.jpg" width="118" height="257" style="margin-left:-15px;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="center"><? if($f->user==false){ echo 'Âû íå àâòîðèçîâàíû<br><a href="https://'.$c['host'].'/">Âîéòè íà ïåðñîíàæà</a>'; }else{ echo 'Âû âîøëè êàê: <br>'.$u->microLogin($u->info['id'],1).'<br><br>'; } ?>
|
||||
<? if(($f->user['align']>1 && $f->user['align']<2) || ($f->user['align']>3 && $f->user['align']<4) || $f->user['admin']>0){ echo '<br><a href="?r='.$_GET['r'].'&mod_use&rnd='.$code.'">«Ìîäåðèðîâàíèå» ['.$mod.']</a>'; }
|
||||
if($f->user['admin']>0 || $mod2=='on'){ echo '<br><a href="?r='.$_GET['r'].'&mod_use2&rnd='.$code.'">«Àäìèíèñòðèðîâàíèå» ['.$mod2.']</a>'; } ?>
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50" valign="bottom">
|
||||
<div align="center" class="text1">
|
||||
<div align="left"><b>Êîíôåðåíöèÿ</b></div>
|
||||
<div class="line1"></div>
|
||||
</div> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<? echo $f->menu; ?>
|
||||
<div class="line1"></div> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="center"><img src="https://new-combats.com/forum_script/img/icon7.gif" width="15" height="15" title="Ñìàéëèêè"> <a href="?smiles=1">Ñìàéëèêè</a></div>
|
||||
<br><br><br></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
<td valign="top"><div align="center">
|
||||
<table width="100%" border="0" align="left" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><div align="center">
|
||||
<? echo '<H3>Ðåçóëüòàòû ïîèñêà ïî çàïðîñó: "'.$word.'". Íàéäåíî çàïèñåé '.$limw.' øò.</H3><br>'; ?></div><div align="left"></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<?
|
||||
$p_list=$f->paginator(1);
|
||||
?>
|
||||
<td><div align="left"><img src="https://new-combats.com/forum_script/img/news.gif" width="16" height="16"> Ñòðàíèöû: <?echo $p_list;?></div></td>
|
||||
<td width="250"><div class="line2"></div><form method="post" action="?search">Ïîèñê: <input type="text" value="<?=$word?>" name="search"/> <input type="submit" value="íàéòè"></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="line2"></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><div align="left">
|
||||
<? $f->forumData(); ?>
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="left" style="margin-top:5px;"><img src="https://new-combats.com/forum_script/img/news.gif" width="16" height="16"> Ñòðàíèöû: <?echo $p_list;?></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div></td>
|
||||
</tr>
|
||||
</table>
|
||||
<?
|
||||
}elseif($f->r>=1){
|
||||
//ñìîòðèì ðàçäåëû
|
||||
?>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="210" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td valign="top"><img src="https://new-combats.com/forum_script/img/fone1.jpg" width="118" height="257" style="margin-left:-15px;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="center"><? if($f->user==false){ echo 'Âû íå àâòîðèçîâàíû<br><a href="https://'.$c['host'].'/">Âîéòè íà ïåðñîíàæà</a>'; }else{ echo 'Âû âîøëè êàê: <br>'.$u->microLogin($u->info['id'],1).'<br><br>'; } ?>
|
||||
<? if(($f->user['align']>1 && $f->user['align']<2) || ($f->user['align']>3 && $f->user['align']<4) || $f->user['admin']>0){ echo '<br><a href="?r='.$_GET['r'].'&mod_use&rnd='.$code.'">«Ìîäåðèðîâàíèå» ['.$mod.']</a>'; }
|
||||
if($f->user['admin']>0 || $mod2=='on'){ echo '<br><a href="?r='.$_GET['r'].'&mod_use2&rnd='.$code.'">«Àäìèíèñòðèðîâàíèå» ['.$mod2.']</a>'; } ?>
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50" valign="bottom">
|
||||
<div align="center" class="text1">
|
||||
<div align="left"><b>Êîíôåðåíöèÿ</b></div>
|
||||
<div class="line1"></div>
|
||||
</div> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<? echo $f->menu; ?>
|
||||
<div class="line1"></div> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="center"><img src="https://new-combats.com/forum_script/img/icon7.gif" width="15" height="15" title="Ñìàéëèêè"> <a href="?smiles=1">Ñìàéëèêè</a></div>
|
||||
<br><br><br></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
<td valign="top"><div align="center">
|
||||
<table width="100%" border="0" align="left" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><div align="center">
|
||||
<? echo '<H3>Êîíôåðåíöèÿ "'.$f->fm['name'].'"</H3><br><br>'.$f->fm['opisan']; ?></div><div align="left"></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<?
|
||||
$p_list=$f->paginator(1);
|
||||
?>
|
||||
<td><div align="left"><img src="https://new-combats.com/forum_script/img/news.gif" width="16" height="16"> Ñòðàíèöû: <?echo $p_list;?></div></td>
|
||||
<td width="250"><div class="line2"></div><form method="post" action="?search">Ïîèñê: <input type="text" value="" name="search"/> <input type="submit" value="íàéòè"></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="line2"></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><div align="left">
|
||||
<? $f->forumData(); ?>
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="left" style="margin-top:5px;"><img src="https://new-combats.com/forum_script/img/news.gif" width="16" height="16"> Ñòðàíèöû: <?echo $p_list;?></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<? if(isset($f->user['id'])){ ?>
|
||||
<div style="border:1px solid #FFFFFF; margin:21px;">
|
||||
<?
|
||||
if($f->gd[$f->fm['id']]!=2 && $f->gd[$f->fm['id']]!=4 && $f->user['admin']==0)
|
||||
{
|
||||
echo '<center><br>Âû íå ìîæåòå ñîçäàâàòü òîïèêè â ýòîé êîíôåðåíöèè<br><br></center>';
|
||||
}elseif($f->lst['time']<time()-60){ ?>
|
||||
<form method="post" action="https://new-combats.com/forum?r=<? echo $f->r.'&rnd='.$code.''; ?>">
|
||||
<table align="center">
|
||||
<tr>
|
||||
<td colspan="2"><h4>Äîáàâèòü ñâîé âîïðîñ â ôîðóì</h4>
|
||||
Òåìà ñîîáùåíèÿ
|
||||
<input type="text" class="inup" name="title" size="57" maxlength="70" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="8" class="inup" name="text" cols="85" wrap="virtual"></textarea>
|
||||
</td>
|
||||
<td><input name="add" style="width:35px;" type="button" class="btn" value=" Æ " title="Æèðíûé">
|
||||
<br />
|
||||
<input name="add" style="width:35px;" type="button" class="btn" value=" Ê " title="Íàêëîííûé">
|
||||
<br />
|
||||
<input name="add" style="width:35px;" type="button" class="btn" value=" × " title="Ïîä÷åðêíóòûé">
|
||||
<br />
|
||||
<input name="add" style="width:35px;" type="button" class="btn" value="Êîä" title="Òåêñò ïðîãðàììû">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><table width="100%">
|
||||
<tr>
|
||||
<td><?
|
||||
if($f->user['admin']>0)
|
||||
{
|
||||
echo '<div align="left"><input name="adminname" id="adminname" type="checkbox" value="1" /><label for="adminname"> Îò èìåíè Àäìèíèñòðàöèè ïðîåêòà.</label></div><br>';
|
||||
}
|
||||
?>
|
||||
<input type="radio" name="icon" value="13" checked>
|
||||
<img src="https://new-combats.com/forum_script/img/icon13.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="14">
|
||||
<img src="https://new-combats.com/forum_script/img/icon14.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="6">
|
||||
<img src="https://new-combats.com/forum_script/img/icon6.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="9">
|
||||
<img src="https://new-combats.com/forum_script/img/icon9.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="1">
|
||||
<img src="https://new-combats.com/forum_script/img/icon1.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="10">
|
||||
<img src="https://new-combats.com/forum_script/img/icon10.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="11">
|
||||
<img src="https://new-combats.com/forum_script/img/icon11.gif" height="15" width="15"><BR>
|
||||
<input type="radio" name="icon" value="12">
|
||||
<img src="https://new-combats.com/forum_script/img/icon12.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="2">
|
||||
<img src="https://new-combats.com/forum_script/img/icon2.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="3">
|
||||
<img src="https://new-combats.com/forum_script/img/icon3.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="4">
|
||||
<img src="https://new-combats.com/forum_script/img/icon4.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="5">
|
||||
<img src="https://new-combats.com/forum_script/img/icon5.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="7">
|
||||
<img src="https://new-combats.com/forum_script/img/icon7.gif" height="15" width="15">
|
||||
<input type="radio" name="icon" value="8">
|
||||
<img src="https://new-combats.com/forum_script/img/icon8.gif" height="15" width="15"> <br /></td>
|
||||
<td align="right" valign="top">
|
||||
<input type="submit" class="btn" value="Äîáàâèòü" name="add" />
|
||||
<input type="hidden" id="key" name="key" value="<? echo $f->user['nextAct']; ?>" />
|
||||
<input type="hidden" id="add_top" name="add_top" value="<? echo $f->fm['id']; ?>" /> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<? }else{ echo '<br><center>Âðåìåííîå îãðàíè÷åíèå íà ñîçäàíèå òîïèêîâ.<br> Îñòàëîñü ïîäîæäàòü '.round($f->lst['time']+61-time()).' ñåê.</center><br>'; } ?>
|
||||
</div>
|
||||
<? } ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div></td>
|
||||
</tr>
|
||||
</table>
|
||||
<? }elseif($f->r==-1){
|
||||
//îñòàâëÿåì êîììåíòàðèé
|
||||
?>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="118" valign="top"><img src="https://new-combats.com/forum_script/img/fone1.jpg" width="118" height="257" style="margin-left:-15px;"></td>
|
||||
<td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div align="center">
|
||||
<?
|
||||
$url1 = mysql_fetch_array(mysql_query('SELECT `id`,`title` FROM `forum_msg` WHERE `fid` = "'.$f->see['fid'].'" AND `topic` = "-1" AND `delete` = "0" AND `id` > '.$f->see['id'].' ORDER BY `id` ASC LIMIT 1'));
|
||||
$url2 = mysql_fetch_array(mysql_query('SELECT `id`,`title` FROM `forum_msg` WHERE `fid` = "'.$f->see['fid'].'" AND `topic` = "-1" AND `delete` = "0" AND `id` < '.$f->see['id'].' ORDER BY `id` DESC LIMIT 1'));
|
||||
|
||||
if(isset($url1['id'])) {
|
||||
$url1 = '<a href="?read='.$url1['id'].'" title="'.$url1['title'].'"><b>« ïðåäûäóùàÿ âåòâü</b></a>';
|
||||
}else{
|
||||
$url1 = '« ïðåäûäóùàÿ âåòâü';
|
||||
}
|
||||
if(isset($url2['id'])) {
|
||||
$url2 = '<a href="?read='.$url2['id'].'" title="'.$url2['title'].'"><b>ñëåäóþùàÿ âåòâü »</b></a>';
|
||||
}else{
|
||||
$url2 = 'ñëåäóþùàÿ âåòâü »';
|
||||
}
|
||||
|
||||
?>
|
||||
<DIV align="center"><?=$url1?> | <A href="?r=<? echo $f->fm['id']; ?>" title="Êîíôåðåíöèÿ "<? echo $f->fm['name']; ?>""><b>ôîðóì</b></A> | <?=$url2?><BR>
|
||||
</DIV>
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?
|
||||
$p_list=$f->paginator(2);
|
||||
?>
|
||||
<td>Ñòðàíèöû: <?echo $p_list;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-top:11px; padding-bottom:11px;" align="left">
|
||||
<div style="float:left"><h4><img src="https://new-combats.com/forum_script/img/icon<? echo $f->see['ico']; ?>.gif"> <a href="?r=<? echo $f->fm['id'].'&rnd='.$code; ?>"><b><? echo $f->fm['name']; ?></b></a> > <? echo $f->see['title']; ?></h4></div>
|
||||
<? if(($f->user['align']>1.5 || $f->user['align']>3.05 || $f->user['admin']>0) && $f->mod == 1){ ?>
|
||||
<div style="float:right;">
|
||||
Äîñòóï: <? echo $dost[$f->see['nocom']]; ?><br>
|
||||
<select name="jumpTopic" id="jumpTopic" onChange="MM_jumpMenu('parent',this,0)">
|
||||
<option selected="selected">--------- ïåðåìåñòèòü ---------</option>
|
||||
<?
|
||||
$rtn = '';
|
||||
$sp = mysql_query('SELECT * FROM `forum_menu`');
|
||||
while($pl = mysql_fetch_array($sp)) {
|
||||
if($pl['only_admin'] == 0 || $f->user['admin'] > 0) {
|
||||
$rtn .= '<option value="?read='.$_GET['read'].'&trm='.$pl['id'].'">'.$pl['name'].'</option>';
|
||||
}
|
||||
}
|
||||
echo $rtn;
|
||||
?>
|
||||
</select><br>
|
||||
<select name="actionTopic" id="actionTopic" onChange="MM_jumpMenu('parent',this,0)">
|
||||
<option selected>----------- äåéñòâèÿ -----------</option>
|
||||
<? if($f->see['nocom']==0) { ?>
|
||||
<option value="?read=<? echo $_GET['read'].'&nocomment=1&rnd='.$code.''; ?>">Çàïðåòèòü îñòàâëÿòü îòâåòû</option>
|
||||
<? } ?>
|
||||
<option value="?read=<? echo $_GET['read'].'&delete=1&rnd='.$code.''; ?>">óäàëèòü òîïèê</option>
|
||||
<? if($f->see['fixed']==0) { ?>
|
||||
<option value="?read=<? echo $_GET['read'].'&fixed=1&rnd='.$code.''; ?>">Çàôèêñèðîâàòü òîïèê</option>
|
||||
<? }else{ ?>
|
||||
<option value="?read=<? echo $_GET['read'].'&fixed=1&rnd='.$code.''; ?>">Óáðàòü ôèêñàöèþ òîïèêà</option>
|
||||
<?
|
||||
}
|
||||
if($f->see['nocom']==0)
|
||||
{
|
||||
if($f->user['admin']>0)
|
||||
{
|
||||
?>
|
||||
<option value="?read=<? echo $_GET['read'].'&onlyadmin=1&rnd='.$code.''; ?>">òîëüêî äëÿ Àíãåëîâ</option>
|
||||
<?
|
||||
}
|
||||
if(($f->user['align']>1.5 && $f->user['align']<2) || $f->user['admin']>0)
|
||||
{
|
||||
?>
|
||||
<option value="?read=<? echo $_GET['read'].'&onlymoder=1&rnd='.$code.''; ?>">òîëüêî äëÿ Ïàëàäèíîâ</option>
|
||||
<?
|
||||
}
|
||||
if(($f->user['align']>3.05 && $f->user['align']<4) || $f->user['admin']>0)
|
||||
{
|
||||
?>
|
||||
<option value="?read=<? echo $_GET['read'].'&onlymoder=2&rnd='.$code.''; ?>">òîëüêî äëÿ Òàðìàíîâ</option>
|
||||
<?
|
||||
}
|
||||
}else{
|
||||
?>
|
||||
<option value="?read=<? echo $_GET['read'].'&onlyall=1&rnd='.$code.''; ?>">ðàçðåøèòü îñòàâëÿòü îòâåò</option>
|
||||
<?
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
<? } ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><? $f->seeTopic(); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-top:3px; padding-bottom:3px;" align="left">Ñòðàíèöû: <?echo $p_list;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-top:3px; padding-bottom:3px;" align="left"><? if(isset($f->user['id']) || !isset($f->user['id'])){ ?>
|
||||
<div style="border:1px solid #EFEFEF; margin:21px;">
|
||||
<?
|
||||
if($f->see['nocom']>0)
|
||||
{
|
||||
echo '<center><br><font color="red"><b>Îáñóæäåíèå çàêðûòî</b></font><br><br></center>';
|
||||
}elseif($f->see['goodAdd']!=1 || $f->pravasee()!=1)
|
||||
{
|
||||
echo '<center><br>Âû íå ìîæåòå îñòàâëÿòü îòâåòû â ýòîì òîïèêå.<br>Ïîïðîáóéòå ÷åðåç '.round($f->lst['time']+62-time()).' ñåê.<br><br></center>';
|
||||
}/*elseif($f->gd[$f->see['fid']]!=3 && $f->gd[$f->see['fid']]!=4 && $f->user['admin']==0)
|
||||
{
|
||||
echo '<center><br>Âû íå ìîæåòå îñòàâëÿòü îòâåòû â ýòîì òîïèêå<br><br></center>';
|
||||
}*/elseif($f->lst['time']<time()-60){ ?>
|
||||
<form method="post" action="https://new-combats.com/forum?read=<? echo $f->see['id'].'&rnd='.$code.''; ?>">
|
||||
<table align="center">
|
||||
<tr>
|
||||
<td colspan="2"><h4>Äîáàâèòü ñâîé îòâåò</h4> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="8" class="inup" name="text2" cols="85" wrap="virtual"></textarea> </td>
|
||||
<td><input name="add2" type="button" class="btn" value=" Æ " title="Æèðíûé">
|
||||
<br />
|
||||
<input name="add2" type="button" class="btn" value=" Ê " title="Íàêëîííûé">
|
||||
<br />
|
||||
<input name="add2" type="button" class="btn" value=" × " title="Ïîä÷åðêíóòûé">
|
||||
<br />
|
||||
<input name="add2" type="button" class="btn" value="Êîä" title="Òåêñò ïðîãðàììû"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><table width="100%">
|
||||
<tr>
|
||||
<td><?
|
||||
if($f->user['admin']>0)
|
||||
{
|
||||
echo '<div align="left"><input name="adminname" id="adminname" type="checkbox" value="1" /><label for="adminname"> Îò èìåíè Àäìèíèñòðàöèè ïðîåêòà.</label></div><br>';
|
||||
}
|
||||
?> <br /></td>
|
||||
<td width="120" align="right"><input type="submit" class="btn" value="Äîáàâèòü" name="add2" />
|
||||
<input type="hidden" id="key2" name="key2" value="<? echo $f->user['nextAct']; ?>" />
|
||||
<input type="hidden" id="add_otv" name="add_otv" value="<? echo $f->see['id']; ?>" /> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<? }else{ echo '<br><center>Âðåìåííîå îãðàíè÷åíèå íà äîáàâëåíèå îòâåòîâ.</center><br>'; } ?>
|
||||
</div>
|
||||
<? } ?></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
<td width="118" valign="top"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<? }elseif($f->r==-2){
|
||||
//ÌÅÃÀ-âûâîäèì îøèáêó
|
||||
?>
|
||||
<table width="100%" height="500" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td valign="middle" align="center"><strong>Îøèáêà:</strong> <? echo $f->error; ?><br><a href="https://new-combats.com/forum?rnd=<? echo $code; ?>">Âåðíóòüñÿ íà ôîðóì</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<? } ?>
|
||||
<!-- -->
|
||||
</td>
|
||||
<td width="1" bgcolor="#F2E5B1"> </td>
|
||||
<td width="24" background="https://new-combats.com/forum_script/img/rightground.jpg"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td width="10%" scope="col"><DIV> <? echo $c['counters']; ?> </DIV></td>
|
||||
<td width="80%" scope="col"><div align="center"><? echo $c['copyright']; ?></div></td>
|
||||
<td width="10%" scope="col"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,50 @@
|
||||
const censorChars = 'abcdefghijklmnopqrstuvwxyz';
|
||||
var animating = false;
|
||||
|
||||
$(function() {
|
||||
setInterval(changeCensor, 100);
|
||||
|
||||
var hash = document.location.hash.substring(1);
|
||||
var offset = $("#" + hash + "-fake").offset();
|
||||
if(offset != undefined)
|
||||
$('html, body').animate({ scrollTop: offset.top - 72 }, 1000);
|
||||
|
||||
$.material.init();
|
||||
});
|
||||
|
||||
$('.hide-div').click(function() {
|
||||
var divname = $(this).attr('id').substring('hide-'.length);
|
||||
var div = $('#' + divname);
|
||||
if(div.is(':visible')) {
|
||||
div.hide(300);
|
||||
$(this).text('(show)');
|
||||
} else {
|
||||
div.show(300);
|
||||
$(this).text('(hide)');
|
||||
}
|
||||
});
|
||||
|
||||
$(".hashlink").click(function() {
|
||||
var hash = $(this).text();
|
||||
|
||||
if(hash == 'Back to top' || hash == '(back to top)')
|
||||
$('html, body').delay(hash == 'Back to top' ? 400 : 0).animate({ scrollTop: 0 }, 500);
|
||||
else $('html, body').animate({ scrollTop: $("#" + hash + "-fake").offset().top - 100 }, 1000);
|
||||
});
|
||||
|
||||
$(".moe-scroll").click(function() {
|
||||
$('html, body').animate({ scrollTop: $("#moe-counter").offset().top - 100 }, 1000);
|
||||
});
|
||||
|
||||
function changeCensor() {
|
||||
$('.censored').each(function() {
|
||||
$(this).text(randomStr($(this).text().length));
|
||||
});
|
||||
}
|
||||
|
||||
function randomStr(length) {
|
||||
var str = '';
|
||||
for(var i = 0; i < length; i++)
|
||||
str += censorChars.charAt(Math.floor(Math.random() * censorChars.length));
|
||||
return str;
|
||||
}
|
||||
@@ -0,0 +1,388 @@
|
||||
(function($) {
|
||||
|
||||
/*****************************************************************
|
||||
* Select
|
||||
*****************************************************************/
|
||||
function Select(el, options) {
|
||||
this.$el = $(el);
|
||||
this.id = Math.random();
|
||||
this.options = options;
|
||||
this.multiple = this.$el.prop('multiple');
|
||||
this.activeOpt = null;
|
||||
this.widthSet = false;
|
||||
|
||||
this.generate();
|
||||
}
|
||||
|
||||
Select.prototype = {
|
||||
generate: function() {
|
||||
if (!this.$select) {
|
||||
var _self = this;
|
||||
|
||||
this.$select = $('<div class="wSelect"><div class="wSelect-arrow"></div></div>');
|
||||
this.$optionsHolder = $('<div class="wSelect-options-holder"></div>');
|
||||
this.$options = $('<div class="wSelect-options"></div>');
|
||||
|
||||
// ie 7 fix to get proper zIndex on select dropdowns
|
||||
if(!$.support.placeholder) {
|
||||
this.$select.css('zIndex', 100 - this.$el.index());
|
||||
}
|
||||
|
||||
var click = function(e) {
|
||||
e.stopPropagation();
|
||||
|
||||
$('select').each(function() {
|
||||
var wSelect = $(this).data('wSelect');
|
||||
|
||||
if (wSelect && wSelect.id !== _self.id) {
|
||||
if (!wSelect.multiple) { wSelect.$optionsHolder.hide(); }
|
||||
wSelect.onBlur();
|
||||
}
|
||||
});
|
||||
|
||||
if (!_self.multiple) { _self.onClick(e); }
|
||||
_self.$el.focus();
|
||||
};
|
||||
|
||||
if (this.multiple) {
|
||||
this.$select.addClass('wSelect-multiple');
|
||||
this.$optionsHolder.click(click);
|
||||
}
|
||||
else {
|
||||
this.$selected = $('<div class="wSelect-selected"></div>');
|
||||
this.$select.append(this.$selected);
|
||||
this.$select.click(click);
|
||||
this.$optionsHolder.click(function(e) {
|
||||
e.stopPropagation();
|
||||
_self.$el.focus();
|
||||
});
|
||||
}
|
||||
|
||||
this.$select.hover(
|
||||
function(){ _self.onFocus('hover'); },
|
||||
function(){ _self.onBlur('hover'); }
|
||||
);
|
||||
|
||||
this.$el.addClass('wSelect-el')
|
||||
.change(function() { _self.change(); })
|
||||
.focus(function() { _self.onFocus(); })
|
||||
.keydown(function(e) { _self.keydown(e); })
|
||||
.keyup(function(e) { _self.keyup(e); });
|
||||
|
||||
$(document).click(function() {
|
||||
if (!_self.multiple) { _self.$optionsHolder.hide(); }
|
||||
_self.onBlur();
|
||||
});
|
||||
|
||||
this.widthSet = this.$select.width() > 0;
|
||||
this.setTheme(this.options.theme);
|
||||
this.setSize(this.options.size);
|
||||
|
||||
this.reset();
|
||||
this.$optionsHolder.append(this.$options);
|
||||
this.$select.append(this.$optionsHolder);
|
||||
this.$el.after(this.$select);//.hide();
|
||||
}
|
||||
|
||||
return this.$select;
|
||||
},
|
||||
|
||||
reset: function() {
|
||||
var _self = this;
|
||||
|
||||
this.$options.children().remove();
|
||||
this.$el.children().each(function() {
|
||||
var option = new Option(this, _self);
|
||||
$.data(this, 'wSelect-option', option);
|
||||
|
||||
_self.$options.append(option.generate());
|
||||
});
|
||||
|
||||
this.$options.children().removeClass('wSelect-option-last').last().addClass('wSelect-option-last');
|
||||
this.setSize(this.options.size);
|
||||
},
|
||||
|
||||
change: function() {
|
||||
this.$options.children().removeClass('wSelect-option-selected wSelect-option-active');
|
||||
|
||||
this.$el.children(':selected').each(function() {
|
||||
$(this).data('wSelect-option').select();
|
||||
});
|
||||
},
|
||||
|
||||
keydown: function(e) {
|
||||
// tab
|
||||
if (e.keyCode === 9) {
|
||||
this.$optionsHolder.hide();
|
||||
this.onBlur();
|
||||
}
|
||||
},
|
||||
|
||||
keyup: function(e) {
|
||||
// enter
|
||||
if (e.keyCode === 13) {
|
||||
this.$optionsHolder.hide();
|
||||
}
|
||||
// left, up, right, down
|
||||
else if (e.keyCode >= 37 && e.keyCode <= 40) {
|
||||
this.change();
|
||||
|
||||
var $option = this.$options.find('.wSelect-option-selected:last'),
|
||||
scrollTop = this.$options.scrollTop(),
|
||||
top = $option.position().top + scrollTop,
|
||||
optionsHeight = this.$options.height(),
|
||||
optionHeight = $option.outerHeight(true);
|
||||
|
||||
if (top - scrollTop < 0) {
|
||||
this.$options.scrollTop(top);
|
||||
}
|
||||
else if (top + optionHeight - scrollTop > optionsHeight) {
|
||||
this.$options.scrollTop(top - optionsHeight + optionHeight);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
onClick: function(e) {
|
||||
// find best fit for dropdowns (top or bottom)
|
||||
if (!this.$optionsHolder.is(':visible')) {
|
||||
var top = this.$select.offset().top - $(window).scrollTop(),
|
||||
optionsHeight = this.$optionsHolder.outerHeight(),
|
||||
topDiff = top - optionsHeight,
|
||||
botDiff = $(window).height() - (top + this.$select.outerHeight() + optionsHeight + 5), // 5 is just for some bottom screen padding
|
||||
newTop = (botDiff > 0 || botDiff > topDiff) ? this.$select.height() : -optionsHeight;
|
||||
|
||||
this.$optionsHolder.css('top', newTop);
|
||||
}
|
||||
|
||||
this.$optionsHolder.toggle();
|
||||
},
|
||||
|
||||
onFocus: function(className) {
|
||||
className = className || 'active';
|
||||
|
||||
if (this.options.highlight) {
|
||||
this.$select.addClass('wSelect-' + className);
|
||||
}
|
||||
},
|
||||
|
||||
onBlur: function(className) {
|
||||
className = className || 'active';
|
||||
|
||||
if (this.options.highlight) {
|
||||
this.$select.removeClass('wSelect-' + className);
|
||||
}
|
||||
},
|
||||
|
||||
setTheme: function(theme) {
|
||||
this.$select.attr('class', this.$select.attr('class').replace(/wSelect-theme-.+\s|wSelect-theme-.+$/, ''));
|
||||
this.$select.addClass('wSelect-theme-' + theme);
|
||||
},
|
||||
|
||||
setSize: function(size) {
|
||||
var $option = this.$options.children(':first').clone().css({position:'absolute', left:-10000}),
|
||||
numOptions = this.$el.children().length,
|
||||
height;
|
||||
|
||||
$('body').append($option);
|
||||
height = $option.outerHeight(true);
|
||||
$option.remove();
|
||||
|
||||
if (!this.multiple && size > numOptions) {
|
||||
size = numOptions;
|
||||
}
|
||||
|
||||
this.$options.height(height * size - 1);
|
||||
}
|
||||
};
|
||||
|
||||
/*****************************************************************
|
||||
* Option
|
||||
*****************************************************************/
|
||||
function Option(el, wSelect) {
|
||||
this.$el = $(el);
|
||||
this.wSelect = wSelect;
|
||||
}
|
||||
|
||||
Option.prototype = {
|
||||
generate: function() {
|
||||
var _self = this;
|
||||
if (!this.$option) {
|
||||
var icon = this.$el.attr('data-icon');
|
||||
|
||||
this.$option = $('<div class="wSelect-option"></div>');
|
||||
this.$value = $('<div class="wSelect-option-value"></div>');
|
||||
this.$option.append(this.$value);
|
||||
|
||||
if (typeof icon === 'string') {
|
||||
this.$value.addClass('wSelect-option-icon');
|
||||
this.$value.css('backgroundImage', 'url(' + icon + ')');
|
||||
}
|
||||
}
|
||||
|
||||
if (this.$el.prop('selected')) {
|
||||
this.select();
|
||||
}
|
||||
|
||||
if (this.$el.prop('disabled')) {
|
||||
this.$option.addClass('wSelect-option-disabled');
|
||||
}
|
||||
else {
|
||||
this.$option.removeClass('wSelect-option-disabled');
|
||||
this.$option.unbind('click').click(function(e){ _self.onClick(e); });
|
||||
}
|
||||
|
||||
this.$value.html(this.$el.html()); // in case html has changed we always set it here
|
||||
this.setWidth();
|
||||
|
||||
return this.$option;
|
||||
},
|
||||
|
||||
select: function() {
|
||||
if (!this.wSelect.activeOpt) {
|
||||
this.wSelect.activeOpt = this;
|
||||
}
|
||||
|
||||
if (!this.wSelect.multiple) {
|
||||
var icon = this.$el.attr('data-icon');
|
||||
|
||||
if (typeof icon === 'string') {
|
||||
this.wSelect.$selected.addClass('wSelect-option-icon');
|
||||
this.wSelect.$selected.css('backgroundImage', 'url(' + icon + ')');
|
||||
}
|
||||
else {
|
||||
this.wSelect.$selected.removeClass('wSelect-option-icon');
|
||||
this.wSelect.$selected.css('backgroundImage', '');
|
||||
}
|
||||
|
||||
//if(!this.wSelect.focus) { this.wSelect.$optionsHolder.hide(); }
|
||||
this.wSelect.$selected.html(this.$el.html());
|
||||
}
|
||||
|
||||
this.$option.addClass('wSelect-option-selected');
|
||||
},
|
||||
|
||||
onClick: function(e) {
|
||||
var selVal = null;
|
||||
|
||||
if (this.wSelect.multiple && (e.ctrlKey || e.shiftKey) ) {
|
||||
if (e.ctrlKey || !this.wSelect.activeOpt) {
|
||||
selVal = this.wSelect.$el.val() || [];
|
||||
|
||||
var optVal = this.$el.val(),
|
||||
arrayPos = $.inArray(optVal, selVal);
|
||||
|
||||
if (arrayPos === -1) {
|
||||
selVal.push(this.$el.val());
|
||||
this.wSelect.activeOpt = this; // only set active when "selecting"
|
||||
}
|
||||
else {
|
||||
selVal.splice(arrayPos, 1);
|
||||
}
|
||||
}
|
||||
// don't set active here as the shift+click only highlights from active option
|
||||
else if (e.shiftKey) {
|
||||
var indexActive = this.wSelect.activeOpt.$el.index(),
|
||||
indexCurrent = this.$el.index(),
|
||||
indexStart = 0,
|
||||
indexEnd = 0,
|
||||
$option = null;
|
||||
|
||||
if (indexCurrent > indexActive) {
|
||||
indexStart = indexActive;
|
||||
indexEnd = indexCurrent;
|
||||
} else {
|
||||
indexStart = indexCurrent;
|
||||
indexEnd = indexActive;
|
||||
}
|
||||
|
||||
selVal = [];
|
||||
|
||||
for (var i=indexStart; i<=indexEnd; i++) {
|
||||
$option = this.wSelect.$el.children(':eq(' + i + ')');
|
||||
if ($option.is(':not(:disabled)')) {
|
||||
selVal.push($option.val());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
selVal = this.$el.val();
|
||||
this.wSelect.$optionsHolder.hide();
|
||||
this.wSelect.activeOpt = this;
|
||||
}
|
||||
|
||||
this.wSelect.$el.val(selVal).change();
|
||||
},
|
||||
|
||||
// help us set the proper widths based on given values (this way so we can add options on the fly one at a time)
|
||||
setWidth: function() {
|
||||
if (this.wSelect.multiple || this.wSelect.widthSet) { return true; }
|
||||
|
||||
this.$option.hide().appendTo('body');
|
||||
var optionWidth = this.$option.width();
|
||||
|
||||
if (optionWidth > this.wSelect.$select.width()) {
|
||||
this.wSelect.$select.width(optionWidth);
|
||||
}
|
||||
|
||||
this.$option.detach().show();
|
||||
}
|
||||
};
|
||||
|
||||
/*****************************************************************
|
||||
* fn.wSelect
|
||||
*****************************************************************/
|
||||
$.support.placeholder = 'placeholder' in document.createElement('input');
|
||||
|
||||
$.fn.wSelect = function(options, value) {
|
||||
if (typeof options === 'string') {
|
||||
var values = [];
|
||||
var elements = this.each(function() {
|
||||
var wSelect = $(this).data('wSelect');
|
||||
|
||||
if (wSelect) {
|
||||
var func = (value ? 'set' : 'get') + options.charAt(0).toUpperCase() + options.substring(1).toLowerCase();
|
||||
|
||||
if (wSelect[options]) {
|
||||
wSelect[options].apply(wSelect, [value]);
|
||||
} else if (value) {
|
||||
if (wSelect[func]) { wSelect[func].apply(wSelect, [value]); }
|
||||
if (wSelect.options[options]) { wSelect.options[options] = value; }
|
||||
} else {
|
||||
if(wSelect[func]) { values.push(wSelect[func].apply(wSelect, [value])); }
|
||||
else if (wSelect.options[options]) { values.push(wSelect.options[options]); }
|
||||
else { values.push(null); }
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (values.length === 1) { return values[0]; }
|
||||
else if (values.length > 0) { return values; }
|
||||
else { return elements; }
|
||||
}
|
||||
|
||||
options = $.extend({}, $.fn.wSelect.defaults, options);
|
||||
|
||||
function get(el) {
|
||||
var wSelect = $.data(el, 'wSelect');
|
||||
if (!wSelect) {
|
||||
var _options = jQuery.extend(true, {}, options);
|
||||
_options.size = $(el).prop('size') || _options.size;
|
||||
|
||||
wSelect = new Select(el, _options);
|
||||
$.data(el, 'wSelect', wSelect);
|
||||
}
|
||||
|
||||
return wSelect;
|
||||
}
|
||||
|
||||
return this.each(function() { get(this); });
|
||||
};
|
||||
|
||||
$.fn.wSelect.defaults = {
|
||||
theme: 'classic', // theme
|
||||
size: '4', // default number of options to display (overwrite with `size` attr on `select` element)
|
||||
highlight: true // highlight fields when selected
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||