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 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
|
<?php
/**
* This file implements creation of DB tables
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
*
* @package install
*/
if( !defined('DB_USER') ) die( 'Please, do not access this page directly.' );
/**
* create_b2evo_tables(-)
*
* Used for fresh install + upgrade from b2
*
*/
function create_b2evo_tables()
{
global $tableposts, $tableusers, $tablesettings, $tablecategories, $tablecomments, $tableblogs,
$tablepostcats, $tablehitlog, $tableantispam;
global $baseurl, $new_db_version;
global $DB;
create_groups();
echo 'Creating table for Settings... ';
$query = "CREATE TABLE $tablesettings (
set_name VARCHAR( 30 ) NOT NULL ,
set_value VARCHAR( 255 ) NULL ,
PRIMARY KEY ( set_name )
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Users... ';
$query = "CREATE TABLE $tableusers (
ID int(10) unsigned NOT NULL auto_increment,
user_login varchar(20) NOT NULL,
user_pass CHAR(32) NOT NULL,
user_firstname varchar(50) NOT NULL,
user_lastname varchar(50) NOT NULL,
user_nickname varchar(50) NOT NULL,
user_icq int(10) unsigned DEFAULT '0' NOT NULL,
user_email varchar(100) NOT NULL,
user_url varchar(100) NOT NULL,
user_ip varchar(15) NOT NULL,
user_domain varchar(200) NOT NULL,
user_browser varchar(200) NOT NULL,
dateYMDhour datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
user_level int unsigned DEFAULT 0 NOT NULL,
user_aim varchar(50) NOT NULL,
user_msn varchar(100) NOT NULL,
user_yim varchar(50) NOT NULL,
user_locale varchar(20) DEFAULT 'en-EU' NOT NULL,
user_idmode varchar(20) NOT NULL DEFAULT 'login',
user_notify tinyint(1) NOT NULL default 1,
user_grp_ID int(4) NOT NULL default 1,
PRIMARY KEY user_ID (ID),
UNIQUE user_login (user_login),
KEY user_grp_ID (user_grp_ID)
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Blogs... ';
$query = "CREATE TABLE $tableblogs (
blog_ID int(4) NOT NULL auto_increment,
blog_shortname varchar(12) NULL default '',
blog_name varchar(50) NOT NULL default '',
blog_tagline varchar(250) NULL default '',
blog_description varchar(250) NULL default '',
blog_longdesc TEXT NULL DEFAULT NULL,
blog_locale VARCHAR(20) NOT NULL DEFAULT 'en-EU',
blog_access_type VARCHAR(10) NOT NULL DEFAULT 'index.php',
blog_siteurl varchar(120) NOT NULL default '',
blog_staticfilename varchar(30) NULL default NULL,
blog_stub VARCHAR(30) NOT NULL DEFAULT 'stub',
blog_notes TEXT NULL,
blog_keywords tinytext,
blog_allowtrackbacks TINYINT(1) NOT NULL default 1,
blog_allowpingbacks TINYINT(1) NOT NULL default 0,
blog_pingb2evonet TINYINT(1) NOT NULL default 0,
blog_pingtechnorati TINYINT(1) NOT NULL default 0,
blog_pingweblogs TINYINT(1) NOT NULL default 0,
blog_pingblodotgs TINYINT(1) NOT NULL default 0,
blog_default_skin VARCHAR(30) NOT NULL DEFAULT 'custom',
blog_force_skin TINYINT(1) NOT NULL default 0,
blog_disp_bloglist TINYINT(1) NOT NULL DEFAULT 1,
blog_in_bloglist TINYINT(1) NOT NULL DEFAULT 1,
blog_links_blog_ID INT(4) NOT NULL DEFAULT 0,
blog_UID VARCHAR(20),
PRIMARY KEY blog_ID (blog_ID),
UNIQUE KEY blog_stub (blog_stub)
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Categories... ';
$query="CREATE TABLE $tablecategories (
cat_ID int(4) NOT NULL auto_increment,
cat_parent_ID int(11) default NULL,
cat_name tinytext NOT NULL,
cat_blog_ID int(11) NOT NULL default '2',
cat_description VARCHAR(250) NULL DEFAULT NULL,
cat_longdesc TEXT NULL DEFAULT NULL,
cat_icon VARCHAR(30) NULL DEFAULT NULL,
PRIMARY KEY cat_ID (cat_ID),
KEY cat_blog_ID (cat_blog_ID),
KEY cat_parent_ID (cat_parent_ID)
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Posts... ';
$query = "CREATE TABLE $tableposts (
ID int(10) unsigned NOT NULL auto_increment,
post_author int(4) NOT NULL default '0',
post_issue_date datetime NOT NULL default '0000-00-00 00:00:00',
post_mod_date datetime NOT NULL default '0000-00-00 00:00:00',
post_status enum('published','deprecated','protected','private','draft')
NOT NULL default 'published',
post_locale VARCHAR(20) NOT NULL DEFAULT 'en-EU',
post_content text NOT NULL,
post_title text NOT NULL,
post_urltitle VARCHAR(50) NULL DEFAULT NULL,
post_url VARCHAR(250) NULL DEFAULT NULL,
post_category int(4) NOT NULL default '0',
post_autobr tinyint(4) NOT NULL default '1',
post_flags SET( 'pingsdone', 'imported'),
post_karma int(11) NOT NULL default '0',
post_wordcount int(11) default NULL,
post_comments ENUM('disabled', 'open', 'closed') NOT NULL DEFAULT 'open',
post_renderers VARCHAR(179) NOT NULL default 'default',
PRIMARY KEY post_ID( ID ),
INDEX post_issue_date( post_issue_date ),
INDEX post_category( post_category ),
INDEX post_author( post_author ),
INDEX post_status( post_status ),
UNIQUE post_urltitle( post_urltitle )
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Categories-to-Posts relationships... ';
$query = "CREATE TABLE $tablepostcats (
postcat_post_ID int(11) NOT NULL default '0',
postcat_cat_ID int(11) NOT NULL default '0',
PRIMARY KEY postcat_pk (postcat_post_ID,postcat_cat_ID),
UNIQUE catpost ( postcat_cat_ID, postcat_post_ID )
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Comments... ';
$query = "CREATE TABLE $tablecomments (
comment_ID int(11) unsigned NOT NULL auto_increment,
comment_post_ID int(11) NOT NULL default '0',
comment_type enum('comment','linkback','trackback','pingback') NOT NULL default 'comment',
comment_status ENUM('published', 'deprecated', 'protected', 'private', 'draft') DEFAULT 'published' NOT NULL,
comment_author_ID int unsigned NULL default NULL,
comment_author varchar(100) NULL,
comment_author_email varchar(100) NULL,
comment_author_url varchar(100) NULL,
comment_author_IP varchar(23) NOT NULL default '',
comment_date datetime NOT NULL default '0000-00-00 00:00:00',
comment_content text NOT NULL,
comment_karma int(11) NOT NULL default '0',
PRIMARY KEY comment_ID (comment_ID),
KEY comment_post_ID (comment_post_ID),
KEY comment_date (comment_date),
KEY comment_type (comment_type)
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating table for Hit-Logs... ';
$query = "CREATE TABLE $tablehitlog (
visitID bigint(11) NOT NULL auto_increment,
visitTime timestamp(14) NOT NULL,
visitURL varchar(250) default NULL,
hit_ignore enum('no','invalid','badchar','blacklist','rss','robot','search') NOT NULL default 'no',
referingURL varchar(250) default NULL,
baseDomain varchar(250) default NULL,
hit_blog_ID int(11) NOT NULL default '0',
hit_remote_addr varchar(40) default NULL,
hit_user_agent varchar(250) default NULL,
PRIMARY KEY (visitID),
INDEX hit_ignore (hit_ignore),
INDEX baseDomain (baseDomain),
INDEX hit_blog_ID (hit_blog_ID),
INDEX hit_user_agent (hit_user_agent),
INDEX visitTime ( visitTime )
)";
$DB->query( $query );
echo "OK.<br />\n";
// Additionnal tables:
create_antispam();
create_locales();
}
/*
* create_antispam(-)
*
* Used when creating full install and upgrading from earlier versions
*/
function create_antispam()
{
global $tableantispam;
global $DB;
echo 'Creating table for Antispam Blackist... ';
$query = "CREATE TABLE $tableantispam (
aspm_ID bigint(11) NOT NULL auto_increment,
aspm_string varchar(80) NOT NULL,
aspm_source enum( 'local','reported','central' ) NOT NULL default 'reported',
PRIMARY KEY aspm_ID (aspm_ID),
UNIQUE aspm_string (aspm_string)
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating default blacklist entries... ';
$query = "INSERT INTO $tableantispam(aspm_string) VALUES ".
"('penis-enlargement'), ('online-casino'), ".
"('order-viagra'), ('order-phentermine'), ('order-xenical'), ".
"('order-prophecia'), ('sexy-lingerie'), ('-porn-'), ".
"('-adult-'), ('-tits-'), ('buy-phentermine'), ".
"('order-cheap-pills'), ('buy-xenadrine'), ('xxx'), ".
"('paris-hilton'), ('parishilton'), ('camgirls'), ('adult-models')";
$DB->query( $query );
echo "OK.<br />\n";
}
/**
* create DB table for locales.
*
* Used when creating full install and upgrading from earlier versions
* @author blueyed
*
*/
function create_locales()
{
global $tablelocales;
global $DB;
echo 'Creating table for Locales... ';
$query = "CREATE TABLE $tablelocales (
loc_locale varchar(20) NOT NULL default '',
loc_charset varchar(15) NOT NULL default 'iso-8859-1',
loc_datefmt varchar(10) NOT NULL default 'y-m-d',
loc_timefmt varchar(10) NOT NULL default 'H:i:s',
loc_name varchar(40) NOT NULL default '',
loc_messages varchar(20) NOT NULL default '',
loc_priority tinyint(4) UNSIGNED NOT NULL default '0',
loc_enabled tinyint(4) NOT NULL default '1',
PRIMARY KEY loc_locale( loc_locale )
) COMMENT='saves available locales'";
$DB->query( $query );
echo "OK.<br />\n";
}
/*
* create_groups(-)
*
* Create user permissions
*
* Used when creating full install and upgrading from earlier versions
*/
function create_groups()
{
global $tablegroups, $tableblogusers, $Group_Admins, $Group_Priviledged, $Group_Bloggers, $Group_Users;
global $DB;
echo 'Creating table for Groups... ';
$query = "CREATE TABLE $tablegroups (
grp_ID int(11) NOT NULL auto_increment,
grp_name varchar(50) NOT NULL default '',
grp_perm_blogs enum('user','viewall','editall') NOT NULL default 'user',
grp_perm_stats enum('none','view','edit') NOT NULL default 'none',
grp_perm_spamblacklist enum('none','view','edit') NOT NULL default 'none',
grp_perm_options enum('none','view','edit') NOT NULL default 'none',
grp_perm_users enum('none','view','edit') NOT NULL default 'none',
grp_perm_templates TINYINT NOT NULL DEFAULT 0,
PRIMARY KEY grp_ID (grp_ID)
)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating default groups... ';
$Group_Admins = new Group(); // COPY !
$Group_Admins->set( 'name', 'Administrators' );
$Group_Admins->set( 'perm_blogs', 'editall' );
$Group_Admins->set( 'perm_stats', 'edit' );
$Group_Admins->set( 'perm_spamblacklist', 'edit' );
$Group_Admins->set( 'perm_options', 'edit' );
$Group_Admins->set( 'perm_templates', 1 );
$Group_Admins->set( 'perm_users', 'edit' );
$Group_Admins->dbinsert();
$Group_Priviledged = new Group(); // COPY !
$Group_Priviledged->set( 'name', 'Priviledged Bloggers' );
$Group_Priviledged->set( 'perm_blogs', 'viewall' );
$Group_Priviledged->set( 'perm_stats', 'view' );
$Group_Priviledged->set( 'perm_spamblacklist', 'edit' );
$Group_Priviledged->set( 'perm_options', 'view' );
$Group_Priviledged->set( 'perm_templates', 0 );
$Group_Priviledged->set( 'perm_users', 'view' );
$Group_Priviledged->dbinsert();
$Group_Bloggers = new Group(); // COPY !
$Group_Bloggers->set( 'name', 'Bloggers' );
$Group_Bloggers->set( 'perm_blogs', 'user' );
$Group_Bloggers->set( 'perm_stats', 'none' );
$Group_Bloggers->set( 'perm_spamblacklist', 'view' );
$Group_Bloggers->set( 'perm_options', 'none' );
$Group_Bloggers->set( 'perm_templates', 0 );
$Group_Bloggers->set( 'perm_users', 'none' );
$Group_Bloggers->dbinsert();
$Group_Users = new Group(); // COPY !
$Group_Users->set( 'perm_blogs', 'user' );
$Group_Users->set( 'name', 'Basic Users' );
$Group_Users->set( 'perm_stats', 'none' );
$Group_Users->set( 'perm_spamblacklist', 'none' );
$Group_Users->set( 'perm_options', 'none' );
$Group_Users->set( 'perm_templates', 0 );
$Group_Users->set( 'perm_users', 'none' );
$Group_Users->dbinsert();
echo "OK.<br />\n";
echo 'Creating table for Blog-User permissions... ';
$query = "CREATE TABLE $tableblogusers (
bloguser_blog_ID int NOT NULL default 0,
bloguser_user_ID int NOT NULL default 0,
bloguser_ismember tinyint NOT NULL default 0,
bloguser_perm_poststatuses set('published','deprecated','protected','private','draft') NOT NULL default '',
bloguser_perm_delpost tinyint NOT NULL default 0,
bloguser_perm_comments tinyint NOT NULL default 0,
bloguser_perm_cats tinyint NOT NULL default 0,
bloguser_perm_properties tinyint NOT NULL default 0,
PRIMARY KEY bloguser_pk (bloguser_blog_ID,bloguser_user_ID)
)";
$DB->query( $query );
echo "OK.<br />\n";
}
/*
* populate_linkblog(-)
*/
function populate_linkblog( & $now, $cat_linkblog_b2evo, $cat_linkblog_contrib)
{
global $timestamp, $default_locale;
echo "Creating default linkblog entries... ";
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'Topanga', 'Testing', $now, $cat_linkblog_contrib, array(), 'published', 'nl-NL', '', 0, true, '', 'http://www.tenderfeelings.be/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'Travis Swicegood', 'Hosting', $now, $cat_linkblog_contrib, array(), 'published', 'en-US', '', 0, true, '', 'http://www.fromthecrossroads.ws/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'Welby', 'Hosting', $now, $cat_linkblog_contrib, array(), 'published', 'en-UK', '', 0, true, '', 'http://www.wheely-bin.co.uk/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'Graham', 'Testing', $now, $cat_linkblog_contrib, array(), 'published', 'en-UK', '', 0, true, '', 'http://tin-men.net/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'Isaac', 'Support', $now, $cat_linkblog_contrib, array(), 'published', 'en-UK', '', 0, true, '', 'http://isaacschlueter.com/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'dAniel', 'Development', $now, $cat_linkblog_contrib, array(), 'published', 'de-DE', '', 0, true, '', 'http://thequod.de/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'Francois', 'Main dev', $now, $cat_linkblog_contrib, array(), 'published', 'fr-FR', '', 0, true, '', 'http://fplanque.net/Blog/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, 'b2evolution', 'Project home', $now, $cat_linkblog_b2evo, array(), 'published', 'en-EU', '', 0, true, '', 'http://b2evolution.net/', 'disabled', array() );
// Insert a post into linkblog:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('This is a sample linkblog entry'), T_("This is sample text describing the linkblog entry. In most cases however, you'll want to leave this blank, providing just a Title and an Url for your linkblog entries (favorite/related sites)."), $now, $cat_linkblog_b2evo, array(), 'published', $default_locale, '', 0, true, '', 'http://b2evolution.net/', 'disabled', array() );
echo "OK.<br />\n";
}
/**
* Create default blogs
*
* This is called for fresh installs and cafelog upgrade
*
* {@internal create_default_blogs(-) }}
*
*/
function create_default_blogs( $blog_a_short = 'Blog A', $blog_a_long = '#', $blog_a_longdesc = '#' )
{
global $default_locale, $query, $timestamp;
global $blog_all_ID, $blog_a_ID, $blog_b_ID, $blog_linkblog_ID;
$default_blog_longdesc = T_("This is the long description for the blog named '%s'. %s");
echo "Creating default blogs... ";
$blog_shortname = 'Blog All';
$blog_stub = 'all';
$blog_more_longdesc = "<br />
<br />
<strong>".T_("This blog (blog #1) is actually a very special blog! It automatically aggregates all posts from all other blogs. This allows you to easily track everything that is posted on this system. You can hide this blog from the public by unchecking 'Include in public blog list' in the blogs admin.")."</strong>";
$blog_all_ID = blog_create(
sprintf( T_('%s Title'), $blog_shortname ),
$blog_shortname,
'',
$blog_stub,
$blog_stub.'.html',
sprintf( T_('Tagline for %s'), $blog_shortname ),
sprintf( T_('Short description for %s'), $blog_shortname ),
sprintf( $default_blog_longdesc, $blog_shortname, $blog_more_longdesc ),
$default_locale,
sprintf( T_('Notes for %s'), $blog_shortname ),
sprintf( T_('Keywords for %s'), $blog_shortname ),
4 );
$blog_shortname = $blog_a_short;
if( $blog_a_long == '#' ) $blog_a_long = sprintf( T_('%s Title'), $blog_shortname );
$blog_stub = 'a';
$blog_a_ID = blog_create(
$blog_a_long,
$blog_shortname,
'',
$blog_stub,
$blog_stub.'.html',
sprintf( T_('Tagline for %s'), $blog_shortname ),
sprintf( T_('Short description for %s'), $blog_shortname ),
sprintf(
(($blog_a_longdesc == '#') ? $default_blog_longdesc : $blog_a_longdesc), $blog_shortname, '' ),
$default_locale,
sprintf( T_('Notes for %s'), $blog_shortname ),
sprintf( T_('Keywords for %s'), $blog_shortname ),
4 );
$blog_shortname = 'Blog B';
$blog_stub = 'b';
$blog_b_ID = blog_create(
sprintf( T_('%s Title'), $blog_shortname ),
$blog_shortname,
'',
$blog_stub,
$blog_stub.'.html',
sprintf( T_('Tagline for %s'), $blog_shortname ),
sprintf( T_('Short description for %s'), $blog_shortname ),
sprintf( $default_blog_longdesc, $blog_shortname, '' ),
$default_locale,
sprintf( T_('Notes for %s'), $blog_shortname ),
sprintf( T_('Keywords for %s'), $blog_shortname ),
4 );
$blog_shortname = 'Linkblog';
$blog_stub = 'links';
$blog_more_longdesc = '<br />
<br />
<strong>'.T_("The main purpose for this blog is to be included as a side item to other blogs where it will display your favorite/related links.").'</strong>';
$blog_linkblog_ID = blog_create(
sprintf( T_('%s Title'), $blog_shortname ),
$blog_shortname,
'',
$blog_stub,
$blog_stub.'.html',
sprintf( T_('Tagline for %s'), $blog_shortname ),
sprintf( T_('Short description for %s'), $blog_shortname ),
sprintf( $default_blog_longdesc, $blog_shortname, $blog_more_longdesc ),
$default_locale,
sprintf( T_('Notes for %s'), $blog_shortname ),
sprintf( T_('Keywords for %s'), $blog_shortname ),
0 /* no Link blog */ );
echo "OK.<br />\n";
}
/**
* Create default categories
*
* This is called for fresh installs and cafelog upgrade
*
* {@internal create_default_categories(-) }}
*
*/
function create_default_categories( $populate_blog_a = true )
{
global $query, $timestamp;
global $cat_ann_a, $cat_news, $cat_bg, $cat_ann_b, $cat_fun, $cat_life, $cat_web, $cat_sports, $cat_movies, $cat_music, $cat_b2evo, $cat_linkblog_b2evo, $cat_linkblog_contrib;
echo 'Creating sample categories... ';
if( $populate_blog_a )
{
// Create categories for blog A
$cat_ann_a = cat_create( 'Announcements [A]', 'NULL', 2 );
$cat_news = cat_create( 'News', 'NULL', 2 );
$cat_bg = cat_create( 'Background', 'NULL', 2 );
}
// Create categories for blog B
$cat_ann_b = cat_create( 'Announcements [B]', 'NULL', 3 );
$cat_fun = cat_create( 'Fun', 'NULL', 3 );
$cat_life = cat_create( 'In real life', $cat_fun, 3 );
$cat_web = cat_create( 'On the web', $cat_fun, 3 );
$cat_sports = cat_create( 'Sports', $cat_life, 3 );
$cat_movies = cat_create( 'Movies', $cat_life, 3 );
$cat_music = cat_create( 'Music', $cat_life, 3 );
$cat_b2evo = cat_create( 'b2evolution Tips', 'NULL', 3 );
// Create categories for linkblog
$cat_linkblog_b2evo = cat_create( 'b2evolution', 'NULL', 4 );
$cat_linkblog_contrib = cat_create( 'contributors', 'NULL', 4 );
echo "OK.<br />\n";
}
/**
* Create default contents
*
* This is called for fresh installs and cafelog upgrade
*
* {@internal create_default_contents(-) }}
*
*/
function create_default_contents( $populate_blog_a = true )
{
global $query, $timestamp;
global $cat_ann_a, $cat_news, $cat_bg, $cat_ann_b, $cat_fun, $cat_life, $cat_web, $cat_sports, $cat_movies, $cat_music, $cat_b2evo, $cat_linkblog_b2evo, $cat_linkblog_contrib;
echo 'Creating sample posts... ';
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_("Clean Permalinks!"), T_("b2evolution uses old-style permalinks and feedback links by default. This is to ensure maximum compatibility with various webserver configurations.
Nethertheless, once you feel comfortable with b2evolution, you should try activating clean permalinks in the Settings screen... (check 'Use extra-path info')"), $now, $cat_b2evo );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_("Apache optimization..."), T_("In the <code>/blogs</code> folder as well as in <code>/blogs/admin</code> there are two files called [<code>sample.htaccess</code>]. You should try renaming those to [<code>.htaccess</code>].
This will optimize the way b2evolution is handled by the webserver (if you are using Apache). These files are not active by default because a few hosts would display an error right away when you try to use them. If this happens to you when you rename the files, just remove them and you'll be fine."), $now, $cat_b2evo );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_("About evoSkins..."), T_("By default, b2evolution blogs are displayed using a default skin.
Readers can choose a new skin by using the skin switcher integrated in most skins.
You can change the default skin used for any blog by editing the blog parameters in the admin interface. You can also force the use of the default skin for everyone.
Otherwise, you can restrict available skins by deleting some of them from the /blogs/skins folder. You can also create new skins by duplicating, renaming and customizing any existing skin folder.
To start customizing a skin, open its '<code>_main.php</code>' file in an editor and read the comments in there. And, of course, read the manual on evoSkins!"), $now, $cat_b2evo );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_("Skins, Stubs and Templates..."), T_("By default, all pre-installed blogs are displayed using a skin. (More on skins in another post.)
That means, blogs are accessed through '<code>index.php</code>', which loads default parameters from the database and then passes on the display job to a skin.
Alternatively, if you don't want to use the default DB parameters and want to, say, force a skin, a category or a specific linkblog, you can create a stub file like the provided '<code>a_stub.php</code>' and call your blog through this stub instead of index.php .
Finally, if you need to do some very specific customizations to your blog, you may use plain templates instead of skins. In this case, call your blog through a full template, like the provided '<code>a_noskin.php</code>'.
You will find more information in the stub/template files themselves. Open them in a text editor and read the comments in there.
Either way, make sure you go to the blogs admin and set the correct access method for your blog. When using a stub or a template, you must also set its filename in the 'Stub name' field. Otherwise, the permalinks will not function properly."), $now, $cat_b2evo );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_("Multiple Blogs, new blogs, old blogs..."),
T_("By default, b2evolution comes with 4 blogs, named 'Blog All', 'Blog A', 'Blog B' and 'Linkblog'.
Some of these blogs have a special role. Read about it on the corresponding page.
You can create additional blogs or delete unwanted blogs from the blogs admin."), $now, $cat_b2evo );
// Create newbie posts:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('This is a multipage post'), T_('This is page 1 of a multipage post.
You can see the other pages by cliking on the links below the text.
<!--nextpage-->
This is page 2.
<!--nextpage-->
This is page 3.
<!--nextpage-->
This is page 4.
It is the last page.'), $now, $cat_b2evo, ( $populate_blog_a ? array( $cat_bg , $cat_b2evo ) : array ( $cat_b2evo ) ) );
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('Extended post with no teaser'), T_('This is an extended post with no teaser. This means that you won\'t see this teaser any more when you click the "more" link.
<!--more--><!--noteaser-->
This is the extended text. You only see it when you have clicked the "more" link.'), $now, $cat_b2evo, ( $populate_blog_a ? array( $cat_bg , $cat_b2evo ) : array ( $cat_b2evo ) ) );
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('Extended post'), T_('This is an extended post. This means you only see this small teaser by default and you must click on the link below to see more.
<!--more-->
This is the extended text. You only see it when you have clicked the "more" link.'), $now, $cat_b2evo, ( $populate_blog_a ? array( $cat_bg , $cat_b2evo ) : array ( $cat_b2evo ) ) );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_("Important information"), T_("Blog B contains a few posts in the 'b2evolution Tips' category.
All these entries are designed to help you so, as EdB would say: \"<em>read them all before you start hacking away!</em>\" ;)
If you wish, you can delete these posts one by one after you have read them. You could also change their status to 'deprecated' in order to visually keep track of what you have already read."), $now, $cat_b2evo, ( $populate_blog_a ? array( $cat_ann_a , $cat_ann_b ) : array ( $cat_ann_b ) ) );
echo "OK.<br />\n";
}
/*
* populate_main_tables(-)
*
* This is called only for fresh installs and fills the tables with demo/tutorial things
*
*/
function populate_main_tables()
{
global $tableposts, $tableusers, $tablesettings, $tablecategories, $tablecomments, $tableblogs,
$tablepostcats, $tablehitlog, $tableantispam, $tableblogusers;
global $baseurl, $new_db_version;
global $random_password, $query;
global $timestamp, $admin_email;
global $Group_Admins, $Group_Priviledged, $Group_Bloggers, $Group_Users;
global $blog_all_ID, $blog_a_ID, $blog_b_ID, $blog_linkblog_ID;
global $cat_ann_a, $cat_news, $cat_bg, $cat_ann_b, $cat_fun, $cat_life, $cat_web, $cat_sports, $cat_movies, $cat_music, $cat_b2evo, $cat_linkblog_b2evo, $cat_linkblog_contrib;
global $DB;
global $default_locale, $install_password;
create_default_blogs();
create_default_categories();
echo 'Creating sample posts for blog A... ';
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('First Post'), T_('<p>This is the first post.</p>
<p>It appears on both blog A and blog B.</p>'), $now, $cat_ann_a, array( $cat_ann_b ) );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('Second post'), T_('<p>This is the second post.</p>
<p>It appears on blog A only but in multiple categories.</p>'), $now, $cat_news, array( $cat_ann_a, $cat_bg ) );
// Insert a post:
$now = date('Y-m-d H:i:s',$timestamp++);
bpost_create( 1, T_('Third post'), T_('<p>This is the third post.</p>
<p>It appears on blog B only and in a single category.</p>'), $now, $cat_fun );
echo "OK.<br />\n";
// POPULATE THE LINKBLOG:
populate_linkblog( $now, $cat_linkblog_b2evo, $cat_linkblog_contrib );
// Create blog B contents:
create_default_contents();
echo 'Creating sample comments... ';
$now = date('Y-m-d H:i:s');
$query = "INSERT INTO $tablecomments( comment_post_ID, comment_type, comment_author,
comment_author_email, comment_author_url, comment_author_IP,
comment_date, comment_content, comment_karma)
VALUES( 1, 'comment', 'miss b2', 'missb2@example.com', 'http://example.com', '127.0.0.1',
'$now', '".
$DB->escape(T_('Hi, this is a comment.<br />To delete a comment, just log in, and view the posts\' comments, there you will have the option to edit or delete them.')). "', 0)";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating default users... ';
// USERS !
$User_Admin = & new User();
$User_Admin->set( 'login', 'admin' );
if( !isset( $install_password ) )
{
$random_password = substr(md5(uniqid(microtime())),0,6);
}
else
{
$random_password = $install_password;
}
$User_Admin->set( 'pass', md5($random_password) ); // random
$User_Admin->set( 'nickname', 'admin' );
$User_Admin->set( 'email', $admin_email );
$User_Admin->set( 'ip', '127.0.0.1' );
$User_Admin->set( 'domain', 'localhost' );
$User_Admin->set( 'level', 10 );
$User_Admin->set( 'locale', $default_locale );
$User_Admin->set_datecreated( $timestamp++ );
// Note: NEVER use database time (may be out of sync + no TZ control)
$User_Admin->setGroup( $Group_Admins );
$User_Admin->dbinsert();
$User_Demo = & new User();
$User_Demo->set( 'login', 'demouser' );
$User_Demo->set( 'pass', md5($random_password) ); // random
$User_Demo->set( 'nickname', 'Mr. Demo' );
$User_Demo->set( 'email', $admin_email );
$User_Demo->set( 'ip', '127.0.0.1' );
$User_Demo->set( 'domain', 'localhost' );
$User_Demo->set( 'level', 0 );
$User_Demo->set( 'locale', $default_locale );
$User_Demo->set_datecreated( $timestamp++ );
$User_Demo->setGroup( $Group_Users );
$User_Demo->dbinsert();
echo "OK.<br />\n";
echo 'Creating user blog permissions... ';
// Admin for blog A:
$query = "INSERT INTO $tableblogusers( bloguser_blog_ID, bloguser_user_ID, bloguser_ismember,
bloguser_perm_poststatuses, bloguser_perm_delpost, bloguser_perm_comments,
bloguser_perm_cats, bloguser_perm_properties)
VALUES
( $blog_all_ID, ".$User_Admin->get('ID').", 1,
'published,deprecated,protected,private,draft', 1, 1, 1, 1 ),
( $blog_a_ID, ".$User_Admin->get('ID').", 1,
'published,deprecated,protected,private,draft', 1, 1, 1, 1 ),
( $blog_b_ID, ".$User_Admin->get('ID').", 1,
'published,deprecated,protected,private,draft', 1, 1, 1, 1 ),
( $blog_linkblog_ID, ".$User_Admin->get('ID').", 1,
'published,deprecated,protected,private,draft', 1, 1, 1, 1 ),
( $blog_a_ID, ".$User_Demo->get('ID').", 1,
'draft', 0, 0, 0, 0 )";
$DB->query( $query );
echo "OK.<br />\n";
echo 'Creating default settings... ';
// SETTINGS!
$query = "INSERT INTO $tablesettings ( set_name, set_value )
VALUES ( 'db_version', '$new_db_version' ),
( 'default_locale', '$default_locale' ),
( 'posts_per_page', '5' ),
( 'what_to_show', 'paged' ),
( 'archive_mode', 'monthly' ),
( 'time_difference', '0' ),
( 'autoBR', '1' ),
( 'antispam_last_update', '2000-01-01 00:00:00' ),
( 'newusers_grp_ID', '".$Group_Users->get('ID')."' ),
( 'newusers_level', '1' ),
( 'newusers_canregister', '0' ),
( 'links_extrapath', '0' ),
( 'permalink_type', 'urltitle' ),
( 'user_minpwdlen', '5' )";
$DB->query( $query );
echo "OK.<br />\n";
}
?>
|