forked from pulamus/openclassifieds2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-openclassifieds.php
executable file
·748 lines (661 loc) · 31.2 KB
/
install-openclassifieds.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
<?php
/**
* HTML template for the install
*
* @package Install
* @category Helper
* @author Chema <chema@open-classifieds.com>
* @copyright (c) 2009-2014 Open Classifieds Team
* @license GPL v3
*/
ob_start();
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
ini_set('display_errors', 1);
@set_time_limit(0);
// Set the full path to the docroot
define('DOCROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR);
//we check first short tags if not we can not even load the installer
if (! ((bool) ini_get('short_open_tag')) )
die('<strong><u>OC Installation requirement</u></strong>: Before you proceed with your OC installation: Keep in mind OC uses the short tag "short cut" syntax.<br><br> Thus the <a href="http://php.net/manual/ini.core.php#ini.short-open-tag" target="_blank">short_open_tag</a> directive must be enabled in your php.ini.<br><br><u>Easy Solution</u>:<ol><li>Open php.ini file and look for line short_open_tag = Off</li><li>Replace it with short_open_tag = On</li><li>Restart then your PHP server</li><li>Refresh this page to resume your OC installation</li><li>Enjoy OC ;)</li></ol>');
//prevent from new install to be done over current existing one
if (file_exists(DOCROOT.'oc/config/database.php'))
die('It seems Open Classifieds is already installed');
//read from oc/versions.json on CDN
$versions = install::versions();
$last_version = key($versions);
$is_compatible = install::is_compatible();
/**
* Helper installation classes
*
* @package Install
* @category Helper
* @author Chema <chema@garridodiaz.com>
* @copyright (c) 2009-2014 Open Classifieds Team
* @license GPL v3
*/
/**
* Class with install functions helper
*/
class install{
/**
*
* Software install settings
* @var string
*/
const VERSION = '2.2.1';
/**
* message to notify
* @var string
*/
public static $msg = '';
/**
* installation error messages here
* @var string
*/
public static $error_msg = '';
/**
* checks that your hosting has everything that needs to have
* @return array
*/
public static function requirements()
{
/**
* mod rewrite check
*/
$mod_result = ((function_exists('apache_get_modules') AND in_array('mod_rewrite',apache_get_modules()))
OR (getenv('HTTP_MOD_REWRITE')=='On')
OR (strpos(@shell_exec('/usr/local/apache/bin/apachectl -l'), 'mod_rewrite') !== FALSE)
OR (isset($_SERVER['IIS_UrlRewriteModule'])));
$mod_msg = ($mod_result)?NULL:'Can not check if mod_rewrite is installed, probably everything is fine. Try to proceed with the installation anyway ;)';
/**
* all the install checks
*/
return array(
'New Installation'=>array('message' => 'It seems that Open Classifieds is already installed',
'mandatory' => TRUE,
'result' => !file_exists('oc/config/database.php')
),
'Write DIR' =>array('message' => 'Can\'t write to the current directory. Please fix this by giving the webserver user write access to the directory.',
'mandatory' => TRUE,
'result' => (is_writable(DOCROOT))
),
'PHP' =>array('message' => 'PHP 5.3 or newer is required, this version is '. PHP_VERSION,
'mandatory' => TRUE,
'result' => version_compare(PHP_VERSION, '5.3', '>=')
),
'mod_rewrite'=>array('message' => $mod_msg,
'mandatory' => FALSE,
'result' => $mod_result
),
'Short Tag' =>array('message' => '<a href="http://www.php.net/manual/en/ini.core.php#ini.short-open-tag">short_open_tag</a> must be enabled in your php.ini.',
'mandatory' => TRUE,
'result' => (bool) ini_get('short_open_tag')
),
'Safe Mode' =>array('message' => '<a href="http://php.net/manual/en/features.safe-mode.php>safe_mode</a> must be disabled.',
'mandatory' => TRUE,
'result' => ((bool) ini_get('safe_mode'))?FALSE:TRUE
),
'PCRE UTF8' =>array('message' => '<a href="http://php.net/pcre">PCRE</a> has not been compiled with UTF-8 support.',
'mandatory' => TRUE,
'result' => (bool) (@preg_match('/^.$/u', 'ñ'))
),
'PCRE Unicode'=>array('message' => '<a href="http://php.net/pcre">PCRE</a> has not been compiled with Unicode property support.',
'mandatory' => TRUE,
'result' => (bool) (@preg_match('/^\pL$/u', 'ñ'))
),
'SPL' =>array('message' => 'PHP <a href="http://www.php.net/spl">SPL</a> is either not loaded or not compiled in.',
'mandatory' => TRUE,
'result' => (function_exists('spl_autoload_register'))
),
'Reflection'=>array('message' => 'PHP <a href="http://www.php.net/reflection">reflection</a> is either not loaded or not compiled in.',
'mandatory' => TRUE,
'result' => (class_exists('ReflectionClass'))
),
'Filters' =>array('message' => 'The <a href="http://www.php.net/filter">filter</a> extension is either not loaded or not compiled in.',
'mandatory' => TRUE,
'result' => (function_exists('filter_list'))
),
'Iconv' =>array('message' => 'The <a href="http://php.net/iconv">iconv</a> extension is not loaded.',
'mandatory' => TRUE,
'result' => (extension_loaded('iconv'))
),
'Mbstring' =>array('message' => 'The <a href="http://php.net/mbstring">mbstring</a> extension is not loaded.',
'mandatory' => TRUE,
'result' => (extension_loaded('mbstring'))
),
'CType' =>array('message' => 'The <a href="http://php.net/ctype">ctype</a> extension is not enabled.',
'mandatory' => TRUE,
'result' => (function_exists('ctype_digit'))
),
'URI' =>array('message' => 'Neither <code>$_SERVER[\'REQUEST_URI\']</code>, <code>$_SERVER[\'PHP_SELF\']</code>, or <code>$_SERVER[\'PATH_INFO\']</code> is available.',
'mandatory' => TRUE,
'result' => (isset($_SERVER['REQUEST_URI']) OR isset($_SERVER['PHP_SELF']) OR isset($_SERVER['PATH_INFO']))
),
'cUrl' =>array('message' => 'Install requires the <a href="http://php.net/curl">cURL</a> extension for the Request_Client_External class.',
'mandatory' => TRUE,
'result' => (extension_loaded('curl'))
),
'mcrypt' =>array('message' => 'Install requires the <a href="http://php.net/mcrypt">mcrypt</a> for the Encrypt class.',
'mandatory' => TRUE,
'result' => (extension_loaded('mcrypt'))
),
'GD' =>array('message' => 'Install requires the <a href="http://php.net/gd">GD</a> v2 for the Image class',
'mandatory' => TRUE,
'result' => (function_exists('gd_info'))
),
'MySQL' =>array('message' => 'Install requires the <a href="http://php.net/mysqli">MySQLi</a> extension to support MySQL databases.',
'mandatory' => TRUE,
'result' => (function_exists('mysqli_connect'))
),
'ZipArchive' =>array('message' => 'PHP module zip not installed. You will need this to auto update the software.',
'mandatory' => FALSE,
'result' => class_exists('ZipArchive')
),
);
}
/**
* checks from requirements if its compatible or not. Also fills the msg variable
* @return boolean
*/
public static function is_compatible()
{
self::$msg = '';
$compatible = TRUE;
foreach (install::requirements() as $name => $values)
{
if ($values['mandatory'] == TRUE AND $values['result'] == FALSE)
$compatible = FALSE;
if ($values['result'] == FALSE)
self::$msg .= $values['message'].'<br>';
}
return $compatible;
}
/**
* get phpinfo clean in a string
* @return strin
*/
public static function phpinfo()
{
ob_start();
@phpinfo();
$phpinfo = ob_get_contents();
ob_end_clean();
//strip the body html
return preg_replace('%^.*<body>(.*)</body>.*$%ms', '$1', $phpinfo);
}
/**
* returns array of last versions from json
* @return array
*/
public static function versions()
{
return json_decode(core::curl_get_contents('http://open-classifieds.com/files/versions.json?r='.time()),TRUE);
}
}
class core{
/**
* copies files/directories recursively
* @param string $source from
* @param string $dest to
* @param integer $overwrite 0=do not overwrite 1=force overwrite 2=overwrite only is size is different
* @return void
*/
public static function copy($source, $dest, $overwrite = 0)
{
//be sure source exists..
if (!is_readable($source))
die('File ('.$source.') could not be readed, likely a permissions problem.');
//just a file to copy, so do it!
if(is_file($source))
{
$copy_file = FALSE;
//if doesnt exists OR we want to overwrite always OR different size copy the file.
if( !is_file( $dest ) OR $overwrite == 1 OR ( $overwrite == 2 AND filesize($source)===filesize($dest) ) )
$copy_file = TRUE;
if ($copy_file === TRUE)
{
try {
copy($source, $dest);
} catch (Exception $e) {
die('File ('.$source.') could not be copied, likely a permissions problem.');
}
}
//always return if its a file, so we dont move forward
return;
}
//was not a file, so folder...lets check exists, if not create it
if(!is_dir($dest))
mkdir($dest);
//read folder contents
$objects = scandir($source);
foreach ($objects as $object)
{
if($object != '.' && $object != '..')
{
$from = $source . '/' . $object;
$to = $dest . '/' . $object;
Core::copy($from, $to, $overwrite);
}
}
}
/**
* recursively deletes file or directory
* @param string $file
* @return void
*/
public static function delete($file)
{
if (is_dir($file))
{
$objects = scandir($file);
foreach ($objects as $object)
{
if ($object != '.' AND $object != '..')
{
if (is_dir($file.'/'.$object))
core::delete($file.'/'.$object); //recursive
else
unlink($file.'/'.$object);
}
}
reset($objects);
@rmdir($file);
}
elseif(is_file($file))
unlink($file);
}
/**
* gets the html content from a URL
* @param string $url
* @return string on success, false on errors
*/
public static function curl_get_contents($url)
{
$c = curl_init(); if ($c === FALSE) return FALSE;
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_TIMEOUT,30);
// curl_setopt($c, CURLOPT_FOLLOWLOCATION, TRUE);
// $contents = curl_exec($c);
$contents = core::curl_exec_follow($c);
curl_close($c);
return ($contents)? $contents : FALSE;
}
/**
* [curl_exec_follow description] http://us2.php.net/manual/en/function.curl-setopt.php#102121
* @param curl $ch handler
* @param integer $maxredirect hoe many redirects we allow
* @return contents
*/
public static function curl_exec_follow($ch, $maxredirect = 5)
{
//using normal curl redirect
if (ini_get('open_basedir') == '' AND ini_get('safe_mode' == 'Off'))
{
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $maxredirect > 0);
curl_setopt($ch, CURLOPT_MAXREDIRS, $maxredirect);
}
//using safemode...WTF!
else
{
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, FALSE);
if ($maxredirect > 0)
{
$newurl = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
$rch = curl_copy_handle($ch);
curl_setopt($rch, CURLOPT_HEADER, TRUE);
curl_setopt($rch, CURLOPT_NOBODY, TRUE);
curl_setopt($rch, CURLOPT_FORBID_REUSE, FALSE);
curl_setopt($rch, CURLOPT_RETURNTRANSFER, TRUE);
do
{
curl_setopt($rch, CURLOPT_URL, $newurl);
$header = curl_exec($rch);
if (curl_errno($rch))
$code = 0;
else
{
$code = curl_getinfo($rch, CURLINFO_HTTP_CODE);
if ($code == 301 OR $code == 302)
{
preg_match('/Location:(.*?)\n/', $header, $matches);
$newurl = trim(array_pop($matches));
}
else
$code = 0;
}
}
while ($code AND --$maxredirect);
curl_close($rch);
if (!$maxredirect)
{
if ($maxredirect === NULL)
trigger_error('Too many redirects. When following redirects, libcurl hit the maximum amount.', E_USER_WARNING);
else
$maxredirect = 0;
return FALSE;
}
curl_setopt($ch, CURLOPT_URL, $newurl);
}
}
return curl_exec($ch);
}
/**
* rss reader
* @param string $url
* @return array
*/
public static function rss($url)
{
$rss = @simplexml_load_file($url);
if($rss == FALSE OR ! isset($rss->channel->item))
return array();
return $rss->channel->item;
}
/**
* shortcut for the query method $_GET
* @param [type] $key [description]
* @param [type] $default [description]
* @return [type] [description]
*/
public static function get($key,$default=NULL)
{
return (isset($_GET[$key]))?$_GET[$key]:$default;
}
/**
* shortcut for $_POST[]
* @param [type] $key [description]
* @param [type] $default [description]
* @return [type] [description]
*/
public static function post($key,$default=NULL)
{
return (isset($_POST[$key]))?$_POST[$key]:$default;
}
/**
* shortcut to get or post
* @param [type] $key [description]
* @param [type] $default [description]
* @return [type] [description]
*/
public static function request($key,$default=NULL)
{
return (core::post($key)!==NULL)?core::post($key):core::get($key,$default);
}
}
/**
* gettext short cut currently @TODO just echoes untranslated string
* @param [type] $msgid [description]
* @return [type] [description]
*/
function __($msgid)
{
return $msgid;
}
?>
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en>"> <!--<![endif]-->
<head>
<meta charset="utf8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Open Classifieds <?=__("Installation")?></title>
<meta name="copyright" content="Open Classifieds <?=install::VERSION?>" >
<meta name="author" content="Open Classifieds">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="shortcut icon" href="http://open-classifieds.com/wp-content/uploads/2012/04/favicon1.ico" />
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script type="text/javascript" src="//cdn.jsdelivr.net/html5shiv/3.7.2/html5shiv.min.js"></script> <![endif]-->
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
.chosen-single{padding: 4px 0px 27px 8px!important;}
.chosen-single b{margin: 4px!important;}
.navbar-brand{padding: 4px 50px 0px 0px!important;}
.we-install{padding: 11px!important;margin-top: 7px;}
.adv{display: none;}
.logo img {margin-top: 10px;}
.page-header{margin: 25px 0 21px!important;}
.mb-10{margin-bottom: 10px!important;}
#myTab{margin-top: 14px;}
</style>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootswatch/3.3.0/flatly/bootstrap.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/chosen/1.1.0/chosen.min.css">
</head>
<body>
<div class="container">
<div class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<div class="container">
<button class="navbar-toggle pull-left" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse bs-navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#home" data-toggle="tab">Install</a></li>
<li><a href="http://open-classifieds.com/support/" target="_blank">Support</a></li>
<li><a href="#home" data-toggle="tab">Requirements</a></li>
<li><a href="#about" data-toggle="tab">About</a></li>
</ul>
<div class="btn-group pull-right">
<a class="btn btn-primary we-install" href="http://open-classifieds.com/market/">
<i class="glyphicon-shopping-cart glyphicon"></i> <?=__("We install it for you, Buy now!")?>
</a>
</div>
</div>
</div>
</div>
</div>
<a class="logo" target="_blank" href="http://open-classifieds.com">
<img src="http://open-classifieds.com/wp-content/uploads/2012/04/OC_noTagline_286x52.png" alt="Open Classifieds <?=__("Installation")?>">
</a>
<div class="tab-content">
<div class="tab-pane fade in active" id="home">
<?
//choosing what to display
//execute installation since they are posting data
if ( $_POST AND $is_compatible === TRUE)
{
//theres post, download latest version, unzip and rediret to install
//download file
$file_content = core::curl_get_contents($versions[$last_version]['download']);
file_put_contents('oc.zip', $file_content);
$zip = new ZipArchive;
// open zip file, extract to dir
if ($zip_open = $zip->open('oc.zip'))
{
if ( !($folder_update = $zip->getNameIndex(0)) )
{
hosting_view();
exit;
}
$zip->extractTo(DOCROOT);
$zip->close();
core::copy($folder_update, DOCROOT);
// delete downloaded zip file
core::delete($folder_update);
@unlink('oc.zip');
@unlink($_SERVER['SCRIPT_FILENAME']);
// redirect to install
header("Location: index.php");
}
else
hosting_view();
}
//normally if compatible just display the form
elseif ($is_compatible === TRUE)
{?>
<?if (!empty(install::$msg) OR !empty(install::$error_msg))
hosting_view();?>
<div class="page-header">
<h1>Install Open Classifieds v.<?=$last_version;?></h1>
<p>We will download last stable version of Open Classifieds and redirect you to the installation form. <br>
Once you click in the install button can take few seconds until downloaded, please do not close this window.</p>
<div class="clearfix"></div>
</div>
<form method="post" action="" class="" >
<fieldset>
<div class="form-action">
<input type="submit" name="action" id="submit" value="Download and Install" class="btn btn-primary btn-large" />
</div>
</fieldset>
</form>
<?}
//not compatible
else
hosting_view();
?>
<hr>
<h3><?=__("Software Requirements")?> v.<?=$last_version;?></h3>
<p><?=__('Requirements checks we do before we install.')?>
<span class="label label-info" id="phpinfobutton" >phpinfo()</span>
</p>
<?foreach (install::requirements() as $name => $values):
$color = ($values['result'])?'success':'danger';?>
<div class="pull-left <?=$color?>" style=" width: 100px; height: 56px; text-align: center;">
<h4><i class="glyphicon glyphicon-<?=($values['result'])?"ok":"remove"?>"></i>
<div class="clearfix"></div>
<?printf ('<span class="label label-%s">%s</span>',$color,$name);?> </h4>
</div>
<?endforeach?>
<div class="clearfix"></div><br>
<div class="hidden" id="phpinfo">
<?=str_replace('<table', '<table class="table table-striped table-bordered"', install::phpinfo())?>
</div>
</div>
<div class="tab-pane fade" id="about">
<div class="page-header">
<h1><?=__('Welcome')?> </h1>
<p><?=__('Thanks for using Open Classifieds.')?>
<?=__('Your installation version is')?> <span class="label label-info"><?=install::VERSION?></span>
</p>
<div class="clearfix"></div>
<p><?=__('You need help or you have some questions')?>
<a class="btn btn-info btn-xs" target="_blank" href="http://forums.open-classifieds.com/"><i class="glyphicon glyphicon-wrench"></i> <?=__('Forum')?></a>
<a class="btn btn-info btn-xs" target="_blank" href="http://open-classifieds.com/support/"><i class="glyphicon glyphicon-question-sign"></i> <?=__('FAQ')?></a>
<a class="btn btn-info btn-xs" target="_blank" href="http://open-classifieds.com/blog/"><i class="glyphicon glyphicon-pencil"></i> <?=__('Blog')?></a>
</p>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="panel panel-info">
<div class="panel-heading"><h3>Open-Classifieds <?=__('Latest News')?></h3>
</div>
<div class="panel-body">
<ul>
<?foreach (core::rss('http://feeds.feedburner.com/OpenClassifieds') as $item):?>
<li><a target="_blank" href="<?=$item->link?>" title="<?=$item->title?>"><?=$item->title?></a></li>
<div class="divider"></div>
<?endforeach?>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<a class="twitter-timeline" href="https://twitter.com/openclassifieds" data-widget-id="428842439499997185">Tweets by @openclassifieds</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fopenclassifieds&width=350&height=600&colorscheme=dark&show_faces=true&header=true&stream=false&show_border=true&appId=181472118540903" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:350px; height:600px;" allowTransparency="true"></iframe>
</div>
</div>
</div>
<hr>
<footer>
<p>
© <a href="http://open-classifieds.com" title="Open Source PHP Classifieds">Open Classifieds</a> 2009 - <?=date('Y')?>
</p>
</footer>
</div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="//cdn.jsdelivr.net/jquery.bootstrapvalidation/1.3.7/jqBootstrapValidation.min.js"></script>
<script src="//cdn.jsdelivr.net/chosen/1.1.0/chosen.jquery.min.js"></script>
<script>
$(function () {
$("select").chosen();
$("input,select,textarea").not("[type=submit]").jqBootstrapValidation();
$('input, select').tooltip();
});
$('#advanced-options').click(function(){
if($(this).hasClass('btn-primary'))
{
$(this).removeClass('btn-primary');
$(this).addClass('btn-default');
$('.adv').each(function(){
$(this).hide();
});
$('#myTab').css('display','none');
}
else
{
$(this).removeClass('btn-default');
$(this).addClass('btn-primary');
$('.adv').each(function(){
$(this).show();
});
$('#myTab').css('display','block');
}
});
$('#phpinfobutton').click(function(){
if($('#phpinfo').hasClass('hidden'))
{
$(this).removeClass('label-info');
$(this).addClass('label-warning');
$('#phpinfo').removeClass('hidden');
}
else
{
$(this).removeClass('label-warning');
$(this).addClass('label-info');
$('#phpinfo').addClass('hidden');
}
});
</script>
</body>
</html>
<?
/**
* displayed in case not compatible
* @return [type] [description]
*/
function hosting_view()
{
?>
<?if (!empty(install::$error_msg)):?>
<br>
<div class="alert alert-danger"><?=install::$error_msg?></div>
<?endif?>
<?if(!empty(install::$msg)):?>
<br>
<div class="alert alert-warning">
<?=__("We have detected some incompatibilities, installation may not work as expected but you can try.")?> <br>
<?=install::$msg?>
</div>
<?endif?>
<div class="jumbotron well">
<h2>Oops! You need a compatible Hosting</h2>
<p class="text-danger">Your hosting seems to be not compatible. Check your settings.<p>
<p>We have partnership with hosting companies to assure compatibility. And we include:
<ul>
<li>100% Compatible High Speed Hosting</li>
<li>1 Premium Theme, of your choice worth $129.99</li>
<li>Professional Installation and Support worth $89</li>
<div class="clearfix"></div><br>
<a class="btn btn-primary btn-large" href="http://open-classifieds.com/hosting/">
<i class=" icon-shopping-cart icon-white"></i> Get Hosting! Less than $4 Month</a>
</p>
</div>
<?
}
?>