Skip to content

Commit 42a6b63

Browse files
committed
Initial commit
1 parent 0e6c7f0 commit 42a6b63

2,226 files changed

Lines changed: 655853 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.htaccess

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# BEGIN WordPress
2+
<IfModule mod_rewrite.c>
3+
RewriteEngine On
4+
5+
RewriteCond %{HTTPS} !=on
6+
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
7+
8+
RewriteBase /
9+
RewriteRule ^index\.php$ - [L]
10+
RewriteCond %{REQUEST_FILENAME} !-f
11+
RewriteCond %{REQUEST_FILENAME} !-d
12+
RewriteRule . /index.php [L]
13+
</IfModule>
14+
15+
# END WordPress
16+
Redirect 302 /promotiebestand https://docs.google.com/spreadsheet/viewform?formkey=dDliUGxOSmFMVnJrYkxCb3ptMkQxblE6MQ
17+
Redirect 302 /werkplekkenbestand https://docs.google.com/spreadsheet/viewform?formkey=dGlZY0xsdDh3OVQtNkFoWWtmQkVmR1E6MQ

favicon.ico

32.2 KB
Binary file not shown.

index.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
/**
3+
* Front to the WordPress application. This file doesn't do anything, but loads
4+
* wp-blog-header.php which does and tells WordPress to load the theme.
5+
*
6+
* @package WordPress
7+
*/
8+
9+
/**
10+
* Tells WordPress to load the WordPress theme and output it.
11+
*
12+
* @var bool
13+
*/
14+
define('WP_USE_THEMES', true);
15+
16+
/** Loads the WordPress Environment and Template */
17+
require( dirname( __FILE__ ) . '/wp-blog-header.php' );

license.txt

Lines changed: 385 additions & 0 deletions
Large diffs are not rendered by default.

readme.html

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta name="viewport" content="width=device-width" />
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6+
<title>WordPress &#8250; ReadMe</title>
7+
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
8+
</head>
9+
<body>
10+
<h1 id="logo">
11+
<a href="https://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /></a>
12+
<br /> Version 4.1
13+
</h1>
14+
<p style="text-align: center">Semantic Personal Publishing Platform</p>
15+
16+
<h1>First Things First</h1>
17+
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I&#8217;m proud to be a part of. Thousands of hours have gone into WordPress, and we&#8217;re dedicated to making it better every day. Thank you for making it part of your world.</p>
18+
<p style="text-align: right">&#8212; Matt Mullenweg</p>
19+
20+
<h1>Installation: Famous 5-minute install</h1>
21+
<ol>
22+
<li>Unzip the package in an empty directory and upload everything.</li>
23+
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
24+
<ol>
25+
<li>If for some reason this doesn&#8217;t work, don&#8217;t worry. It doesn&#8217;t work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
26+
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
27+
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
28+
</ol>
29+
</li>
30+
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="https://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
31+
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
32+
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on &#8220;Profile&#8221; to change the password.</li>
33+
</ol>
34+
35+
<h1>Updating</h1>
36+
<h2>Using the Automatic Updater</h2>
37+
<p>If you are updating from version 2.7 or higher, you can use the automatic updater:</p>
38+
<ol>
39+
<li>Open <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
40+
<li>You wanted more, perhaps? That&#8217;s it!</li>
41+
</ol>
42+
43+
<h2>Updating Manually</h2>
44+
<ol>
45+
<li>Before you update anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
46+
<li>Delete your old WordPress files, saving ones you&#8217;ve modified.</li>
47+
<li>Upload the new files.</li>
48+
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
49+
</ol>
50+
51+
<h1>Migrating from other systems</h1>
52+
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>
53+
54+
<h1>System Requirements</h1>
55+
<ul>
56+
<li><a href="http://php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
57+
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
58+
</ul>
59+
60+
<h2>System Recommendations</h2>
61+
<ul>
62+
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
63+
<li>A link to <a href="https://wordpress.org/">https://wordpress.org</a> on your site.</li>
64+
</ul>
65+
66+
<h1>Online Resources</h1>
67+
<p>If you have any questions that aren&#8217;t addressed in this document, please take advantage of WordPress&#8217; numerous online resources:</p>
68+
<dl>
69+
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
70+
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
71+
<dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt>
72+
<dd>This is where you&#8217;ll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
73+
<dt><a href="https://planet.wordpress.org/">WordPress Planet</a></dt>
74+
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
75+
<dt><a href="https://wordpress.org/support/">WordPress Support Forums</a></dt>
76+
<dd>If you&#8217;ve looked everywhere and still can&#8217;t find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
77+
<dt><a href="http://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>
78+
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
79+
</dl>
80+
81+
<h1>Final Notes</h1>
82+
<ul>
83+
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="https://wordpress.org/support/">Support Forums</a>.</li>
84+
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn&#8217;t modify any of the core code.</li>
85+
</ul>
86+
87+
<h1>Share the Love</h1>
88+
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better&#8212;you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
89+
90+
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/caf&#233;log</a>, which came from Michel V. The work has been continued by the <a href="https://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="https://wordpress.org/donate/" title="Donate to WordPress">donating</a>.</p>
91+
92+
<h1>License</h1>
93+
<p>WordPress is free software, and is released under the terms of the <abbr title="GNU General Public License">GPL</abbr> version 2 or (at your option) any later version. See <a href="license.txt">license.txt</a>.</p>
94+
95+
</body>
96+
</html>

robots.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
User-agent: *
2+
Disallow: /cgi-bin
3+
Disallow: /wp-admin
4+
Disallow: /wp-includes
5+
Disallow: /wp-content
6+
Disallow: /tag
7+
Disallow: /author
8+
Disallow: /wget/
9+
Disallow: /httpd/
10+
Disallow: /i/
11+
Disallow: /f/
12+
Disallow: /t/
13+
Disallow: /c/
14+
Disallow: /j/
15+
Disallow: /?s=
16+
17+
User-agent: Mediapartners-Google
18+
Disallow: /
19+
20+
User-agent: Adsbot-Google
21+
Allow: /
22+
23+
User-agent: Googlebot-Image
24+
Allow: /
25+
26+
User-agent: Googlebot-Mobile
27+
Allow: /
28+
29+
User-agent: ia_archiver-web.archive.org
30+
Disallow: /

wp-activate.php

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
<?php
2+
/**
3+
* Confirms that the activation key that is sent in an email after a user signs
4+
* up for a new blog matches the key for that user and then displays confirmation.
5+
*
6+
* @package WordPress
7+
*/
8+
9+
define( 'WP_INSTALLING', true );
10+
11+
/** Sets up the WordPress Environment. */
12+
require( dirname(__FILE__) . '/wp-load.php' );
13+
14+
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
15+
16+
if ( !is_multisite() ) {
17+
wp_redirect( site_url( '/wp-login.php?action=register' ) );
18+
die();
19+
}
20+
21+
if ( is_object( $wp_object_cache ) )
22+
$wp_object_cache->cache_enabled = false;
23+
24+
// Fix for page title
25+
$wp_query->is_404 = false;
26+
27+
/**
28+
* Fires before the Site Activation page is loaded.
29+
*
30+
* @since 3.0.0
31+
*/
32+
do_action( 'activate_header' );
33+
34+
/**
35+
* Adds an action hook specific to this page that fires on wp_head
36+
*
37+
* @since MU
38+
*/
39+
function do_activate_header() {
40+
/**
41+
* Fires before the Site Activation page is loaded, but on the wp_head action.
42+
*
43+
* @since 3.0.0
44+
*/
45+
do_action( 'activate_wp_head' );
46+
}
47+
add_action( 'wp_head', 'do_activate_header' );
48+
49+
/**
50+
* Loads styles specific to this page.
51+
*
52+
* @since MU
53+
*/
54+
function wpmu_activate_stylesheet() {
55+
?>
56+
<style type="text/css">
57+
form { margin-top: 2em; }
58+
#submit, #key { width: 90%; font-size: 24px; }
59+
#language { margin-top: .5em; }
60+
.error { background: #f66; }
61+
span.h3 { padding: 0 8px; font-size: 1.3em; font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif; font-weight: bold; color: #333; }
62+
</style>
63+
<?php
64+
}
65+
add_action( 'wp_head', 'wpmu_activate_stylesheet' );
66+
67+
get_header();
68+
?>
69+
70+
<div id="content" class="widecolumn">
71+
<?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?>
72+
73+
<h2><?php _e('Activation Key Required') ?></h2>
74+
<form name="activateform" id="activateform" method="post" action="<?php echo network_site_url('wp-activate.php'); ?>">
75+
<p>
76+
<label for="key"><?php _e('Activation Key:') ?></label>
77+
<br /><input type="text" name="key" id="key" value="" size="50" />
78+
</p>
79+
<p class="submit">
80+
<input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e('Activate') ?>" />
81+
</p>
82+
</form>
83+
84+
<?php } else {
85+
86+
$key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key'];
87+
$result = wpmu_activate_signup( $key );
88+
if ( is_wp_error($result) ) {
89+
if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
90+
$signup = $result->get_error_data();
91+
?>
92+
<h2><?php _e('Your account is now active!'); ?></h2>
93+
<?php
94+
echo '<p class="lead-in">';
95+
if ( $signup->domain . $signup->path == '' ) {
96+
printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() );
97+
} else {
98+
printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() );
99+
}
100+
echo '</p>';
101+
} else {
102+
?>
103+
<h2><?php _e('An error occurred during the activation'); ?></h2>
104+
<?php
105+
echo '<p>'.$result->get_error_message().'</p>';
106+
}
107+
} else {
108+
$url = isset( $result['blog_id'] ) ? get_blogaddress_by_id( (int) $result['blog_id'] ) : '';
109+
$user = get_userdata( (int) $result['user_id'] );
110+
?>
111+
<h2><?php _e('Your account is now active!'); ?></h2>
112+
113+
<div id="signup-welcome">
114+
<p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p>
115+
<p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $result['password']; ?></p>
116+
</div>
117+
118+
<?php if ( $url && $url != network_home_url( '', 'http' ) ) : ?>
119+
<p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'), $url, $url . 'wp-login.php' ); ?></p>
120+
<?php else: ?>
121+
<p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p>
122+
<?php endif;
123+
}
124+
}
125+
?>
126+
</div>
127+
<script type="text/javascript">
128+
var key_input = document.getElementById('key');
129+
key_input && key_input.focus();
130+
</script>
131+
<?php get_footer();

0 commit comments

Comments
 (0)