Difference between pages "Subarches" and "Package:Wordpress"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
 
m (put notices that wordpress has hidden admin levels assigned to the first registered account.)
 
Line 1: Line 1:
{{:Install/Header}}
{{Ebuild
= Funtoo Linux Sub-Architectures =
|Summary=Wordpress php and mysql based content management system (CMS)
__NOTITLE__
|CatPkg=www-apps/wordpress
This page provides an overview of Funtoo Linux sub-architectures (also called ''subarches'') designed for quick and easy reference. While this information is available in other places, such as Wikipedia, it often takes some time to study and cross-reference the various articles to get a good understanding of each type of sub-architecture, and this information generally isn't all collected neatly in one place. That is the purpose of this page. When possible, links to more detailed Wikipedia pages are provided. You are encouraged to help maintain this page as well as the Wikipedia articles referenced here.
|Maintainer=
|Homepage=http://wordpress.org/
}}
Wordpress is a blog [[web-server-stack]] application content management system.  Wordpress powers much of the internet, and can be converted into several other systems. Wordpress can be a blog, forum, bug tracker, social media platform, or even a web store. There are several plugins available, and it has a large community backing it.


The cpuid application can be used to help identify your processor and it's microarchitecture.
== Install ==
<console>
<console>###i## emerge wordpress</console>
sudo emerge cpuid; cpuid | tail -n 1
</console>


== 64-bit Suport (Generic) ==
=== Nginx Server Configuration ===
Nginx does not respect the .htaccess files generated by wordpress.  To manually insert url rewrite rules:


=== generic_64 ===
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx rewrite rules|body=
<console>
        location /wordpress {
CFLAGS: -mtune=generic -O2 -pipe
                try_files $uri $uri/ /wordpress/index.php?$args;
CHOST: x86_64-pc-linux-gnu
        }
USE: mmx sse sse2
}}
</console>


The '''generic_64''' subarch is designed to support 64-bit PC-compatible CPUs, such as the [[Wikipedia:AMD_K8|AMD K8-series processors]], which were introduced in late 2003. They were notable as the first processors that supported the [[Wikipedia:X86-64|AMD64 (also called X86-64) 64-bit instruction set]] for PC-compatible systems, which was introduced as a backwards-compatible 64-bit alternative to Intel's IA-64 architecture. Intel followed suit and also began supporting this 64-bit instruction set, which they called "[[Wikipedia:X86-64#Intel_64|Intel 64]]", by releasing X86-64 64-bit compatible CPUs from mid-2004 onwards (See [[Wikipedia:X86-64#Intel_64_implementations|Intel 64 implementations]].)
More information can be found here: http://wiki.nginx.org/WordPress


AMD desktop 64-bit CPUs include the Athlon 64, Athlon 64 FX, Athlon 64 X2, Athlon X2, Turion 64, Turion 64 X2 and Sempron series processors. AMD server processors were released under the Opteron brand and have codenames SledgeHammer, Venus, Troy, Athens, Denmark, Italy, Egypt, Santa Ana and Santa Rosa. All Opterons released through late 2006 were based on the K8 microarchitecture with original X86-64 instructions.
=== Permission Adjustments ===
{{note| if using nginx change permissions to nobody:nobody instead of apache:apache}}
==== Plugins, Themes & Images ====
Wordpress needs some directories to be run under the webserver or php-fpm user for uploading images, and installing themes & plugins.


== 64-bit AMD Processors ==
Fix permissions to enable uploading content such as banners:
<console>###i## chown apache:apache /var/www/localhost/htdocs/wordpress/wp-content</console>


=== amd64-k10 ===
Fix permissions to enable themes, and plugins:
<console>
<console>###i## chown -R apache:apache /var/www/localhost/htdocs/wordpress/wp-admin/
CFLAGS: -march=amdfam10 -O2 -pipe
###i## chown -R apache:apache /var/www/localhost/htdocs/wordpress/wp-includes/
CHOST: x86_64-pc-linux-gnu
###i## chown -R apache:apache /var/www/localhost/htdocs/wordpress/wp-content/</console>
USE: mmx sse sse2 sse3 3dnow 3dnowext
</console>


The '''amd64-k10''' subarch provides support for the [[Wikipedia:AMD_10h|AMD Family 10h processors]], which were released in late 2007 as a successor to the AMD K8 series processors.
==== Security ====
<code>/var/www/localhost/htdocs/wordpress/wp-config.php</code> contains plaintext sql database passwords.  we should change the permissions to lock this file down.


Desktop amd64-k10 CPUs include [[Wikipedia:AMD Phenom|AMD Phenom]], [[Wikipedia:AMD_10h#Phenom_II_Models|AMD Phenom II]] and [[Wikipedia:AMD_10h#Athlon_II_Models|AMD Athlon II]]. Server CPUs include Opterons with codenames Budapest, Barcelona, Suzuka, Shanghai, Istanbul, Lisbon, and Magny-Cours. A full listing of amd64-k10 Opteron models [[Wikipedia:List_of_AMD_Opteron_microprocessors#K10_based_Opterons|can be found here]].
<console>###i## chmod 640 /var/www/localhost/htdocs/wordpress/wp-config.php
###i## chown apache:apache /var/www/localhost/htdocs/wordpress/wp-config.php</console>


=== amd64-bulldozer ===
=== MySQL ===
<console>
{{warning|default "changeme" passwords are insecure, change them!}}
CFLAGS: -march=bdver1 -O2 -pipe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3 sse4 3dnow 3dnowext
</console>


The '''amd64-bulldozer''' subarch supports the [[Wikipedia:Bulldozer (microarchitecture)|AMD bulldozer microarchitecture]] CPUs, which were released from late 2011 through the first quarter of 2012 as a replacement for the [[Wikipedia:AMD_10h|K10 microarchitecture]] CPUs.
To create a database for wordpress to interact with:
Bulldozer desktop CPUs use the [[Wikipedia:Socket_AM3+|AM3+ socket]] and server CPUs use the  [[Wikipedia:Socket_G34|G34 socket]].


Desktop bulldozer CPUs include the [[Wikipedia:List_of_AMD_FX_microprocessors#.22Zambezi.22_.2832_nm_SOI.29|Zambezi FX-series CPUs]]. Server bulldozer CPUs include Opterons with codenames Zurich (Opteron 3200-series), Valencia (Opteron 4200-series) and Interlagos (Opteron 6200 series). A complete list of Opteron models [[Wikipedia:http://en.wikipedia.org/wiki/Opteron#Opteron_.2832_nm_SOI.29-_First_Generation_Bulldozer_Microarchitecture|can be found here.]].
<console>###i## mysql -u root -p</console>


=== amd64-piledriver ===
<pre>
<console>
mysql> CREATE DATABASE IF NOT EXISTS `wordpress` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
CFLAGS: -march=bdver2 -O2 -pipe
mysql> CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'changeme';
CHOST: x86_64-pc-linux-gnu
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `wordpress`.* TO 'wordpress'@'localhost' IDENTIFIED BY 'changeme';
USE: mmx sse sse2 sse3 sse4 3dnow 3dnowext
mysql> \q
</console>
</pre>


The '''amd64-piledriver''' subarch supports the [[Wikipedia:Piledriver (microarchitecture)|AMD Piledriver microarchitecture]] produced by AMD from mid-2012 through 2015, which is the successor to the [[Wikipedia:Bulldozer (microarchitecture)|AMD bulldozer microarchitecture]].
{{file|name=/var/www/localhost/htdocs/wordpress/wp-config.php|lang=php|desc=insert database information|body=
Piledriver CPUs and APUs are available that use the [[Wikipedia:FM2 Socket|FM2 socket]]. Desktop Piledriver CPUs use the [[Wikipedia:Socket_AM3+|AM3+ socket]]. Server Piledriver CPUs use a variety of sockets, including [[Wikipedia:Socket_AM3+|AM3+]], [[Wikipedia:Socket_C32|C32]] and [[Wikipedia:Socket_G34|G34]].
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpress');
/** MySQL database password */
define('DB_PASSWORD', 'changeme');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
}}


Desktop piledriver CPU and APUs include FX-series with codename Vishera (FX-8350, FX-8370), [[Wikipedia:List_of_AMD_accelerated_processing_unit_microprocessors#Virgo:_.22Trinity.22_.282012.2C_32_nm.29|A-series with codename Trinity]] (A6-5400K, A10-5800K) and [[Wikipedia:http://en.wikipedia.org/wiki/List_of_AMD_accelerated_processing_unit_microprocessors#.22Richland.22_.282013.2C_32_nm.29_2|A-series with codename Richland]].  
acquire your own salts and insert them into your configuration file. https://api.wordpress.org/secret-key/1.1/salt/


Server piledriver CPUs include Opterons with codenames Delhi (Opteron 3300-series, [[Wikipedia:Socket_AM3+|AM3+]]), Seoul (Opteron 4300-series, [[Wikipedia:Socket_C32|C32]]) and Abu Dhabi (Opteron 6300-series, [[Wikipedia:Socket_G34|G34]]). A full listing of Opteron models [[Wikipedia:Opteron#Opteron_.2832_nm_SOI.29_-_Piledriver_Microarchitecture|is available here]].
{{file|name=/var/www/localhost/htdocs/wordpress/wp-config.php|lang=php|desc=add a salt|body=
define('AUTH_KEY',        '5%#gO!G+miM;(Jt8U^12SAh');
define('SECURE_AUTH_KEY', 'hJ~Hi:(R/:^l$M;(Vfp:+04$A');
define('LOGGED_IN_KEY',    'f^%jl;[9~8],LA^Eq]-5*');
define('NONCE_KEY',       '&IX,NkKM;M;(Jt(Jt8U^j;(m7');
define('AUTH_SALT',        'TX^29j/P7[q0GhM;(Jt8U^-ug&mh');
define('SECURE_AUTH_SALT', '<p@0$;jThph,2M6e8i<UAW=');
define('LOGGED_IN_SALT',  'O0TY<>%eIAs/=;O&7@LkhxduYhg6');
define('NONCE_SALT',      'VQ^-BR7YM;(Jt8U^D4ZRMY#[');
}}


Piledriver adds several new instructions over bulldozer, so AMD bulldozer systems cannot run amd64-piledriver-optimized stages. However, this subarch is  instruction-compatible with its successor, the, so amd64-piledriver stages can run on amd64-steamroller systems, and vice versa.
Database and database user are "wordpress" and passwords are what you set in your mysql database generation step. (changeme fields)


=== amd64-steamroller ===
== 5 minute installer ==
<console>
Point your browser @ http://localhost/wordpress/
CFLAGS: -march=bdver3 -O2 -pipe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3 sse4 3dnow 3dnowext
</console>


The '''amd64-steamroller''' subarch supports the  [[Wikipedia:Steamroller (microarchitecture)|AMD steamroller microarchitecture]], produced from early 2014. It is the successor to the [[Wikipedia:Piledriver (microarchitecture)|AMD Piledriver microarchitecture]].
Name your website, and make a default administrator username, and password.
Steamroller APUs are available that use the [[Wikipedia:FM2+ Socket|FM2+ socket]] and [[Wikipedia:Socket_FP3|FP3 socket]] (mobile.)


Desktop steamroller APUs include the [[Wikipedia:AMD_Accelerated_Processing_Unit#Steamroller_architecture_.282014.29:_Kaveri|A-Series with codename Kaveri]], such as the quad-core AMD A10-7850K APU. Steamroller APUs are also available in mobile versions. Server steamroller APUs will include the Berlin APUs, which are expected to be released some time in 2015.
{{important|Wordpress has hidden admin levels assigned to the first registered account. Make sure you leave it as a generic admin account.}}


Amd64-steamroller subarches are instruction-compatible with amd64-piledriver, but add new instructions over amd64-bulldozer.
== Administration & Use ==
Administer your WordPress @ http://localhost/wordpress/wp-admin/


=== amd64-jaguar ===
Your shiny new blog is located @ http://localhost/wordpress/
<console>
CFLAGS: -march=btver2 -O2 -pipe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3 sse4 3dnow 3dnowext
</console>


The '''amd64-jaguar''' (also called AMD Family 16h) subarch supports the  [[Wikipedia:Jaguar (microarchitecture)|AMD jaguar microarchitecture]], which is targeted at low-power devices, including notebooks, tablets and small form-factor desktops and servers. It is perhaps most well-known for being the microarchitecture used for the [[Wikipedia:Playstation 4|Playstation 4]] and [[Wikipedia:Xbox One|Xbox One]], which each use custom 8-core Jaguar APUs.
Your new blogs rss feed is located @ http://localhost/wordpress/feed/
Socketed Jaguar APUs use the [[Wikipedia:AM1 Socket|AM1 socket]], and  [[Wikipedia:Socket_FT3|FT3 socket]] for mobile devices. G-series [[Wikipedia:System_on_a_chip|"system on a chip" (SoC)]] APUs are available for non-socketed devices such as tablets and embedded system boards.


Desktop Jaguar APUs include the [[Wikipedia:List_of_AMD_accelerated_processing_unit_microprocessors#.22Kabini.22.2C_.22Temash.22_.282013.2C_28_nm.29|Kabini A-series APUs and Temash E-series APUs]], such as the Athlon 5150 and 5350 APUs, and Sempron 2650 and 3850.
=== Suggested Themes ===
* Responsive


Amd64-jaguar subarches use the MOVBE instruction which is not available on amd64-bulldozer, amd64-piledriver or amd64-steamroller. They are thus not instruction-compatible with any of these subarches.
=== Suggested Plugins ===
* Add Meta Tags
* Disqus Comment System
* Google XML Sitemaps
* Share Buttons by AddToAny
* WooCommerce
* Wordfence Security
* YouTube widget responsive


== 64-bit Intel Processors ==
== Media ==
=== core2_64 ===
{{#widget:YouTube|playlist=PLpcSpRrAaOaqMA4RdhSnnNcaqOVpX7qi5}}
<console>
CFLAGS: -march=core2 -O2 -pipe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3 ssse3
</console>


The '''core2_64''' subarch supports [[Wikipedia:Intel_Core#64-bit_Core_microarchitecture_based|64-bit-capable processors]] based on the [[Wikipedia:Intel Core (microarchitecture)|Core microarchitecture]] and all processors of the [[Wikipedia:Penryn_(microarchitecture)|Penryn microarchitecture]]. This includes all [[Wikipedia:Intel_Core_2|Intel Core 2]] branded processors, [[Wikipedia:Celeron#Core-based_Celerons|some Celeron]], [[Wikipedia:Pentium#Core_microarchitecture_based|some Pentium]] and [[Wikipedia:Xeon#Core-based_Xeon|some Xeon]] branded processors. These processors were introduced in July of 2006 and were phased out in July of 2011, in favor of  [[Wikipedia:Nehalem_(microarchitecture)|Nehalem-based]] processors.
{{EbuildFooter}}
 
See the following links for a list of supported [[Wikipedia:Celeron#Core-based_Celerons|Celeron]], [[Wikipedia:Pentium#Core_microarchitecture_based|Pentium]], [[Wikipedia:Xeon#Core-based_Xeon|Xeon]] and all  [http://ark.intel.com/search/advanced?s=t&FamilyText=Legacy%20Intel%C2%AE%20Core%E2%84%A22%20Processor Core 2] processors.
 
=== corei7 ===
<console>
CFLAGS: -march=corei7 -O2 -pipe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3 ssse3 sse4
</console>
 
Beginning in November 2008, Intel launched the first Core i7 processor, codenamed [[Wikipedia:Bloomfield_(microprocessor)|Bloomfield]], based on the [[Wikipedia:Nehalem_(microarchitecture)|Nehalem]] microarchitecture. With this launch, they also added to and modified the conventions used in their [[Wikipedia:Intel_Core|Intel Core]] branding scheme. '''(Not to be confused with the [[Wikipedia:Intel Core (microarchitecture)|Intel Core microarchitecture]]. See [[Subarches#core2_64|core2_64]].)'''. This new naming scheme distinguishes between grades of processors rather than microarchitectures or design. Therefore, the '''corei7''' subarch supports the [[Wikipedia:Nehalem_(microarchitecture)|Nehalem]], [[Wikipedia:Westmere_(microarchitecture)|Westmere]], [[Wikipedia:Sandy_Bridge_(microarchitecture)|Sandy Bridge]],  [[Wikipedia:Ivy_Bridge_(microarchitecture)|Ivy Bridge]], and [[Wikipedia:Haswell_(microarchitecture)|Haswell]] microarchitectures under the follow brand names:
 
* Intel Pentium/Celeron (low-level consumer)
* Intel Core i3 (entry-level consumer)
* Intel Core i5 (mainstream consumer)
* Intel Corei7 (high-end consumer/business)
* Intel Xeon (business server/workstation)
<br>
See the following links for a list of supported [[Wikipedia:Celeron|Celeron]], [[Wikipedia:Pentium|Pentium]], [[Wikipedia:Intel_Core#Nehalem_microarchitecture_based|Nehalem]], [[Wikipedia:Westmere_(microarchitecture)|Westmere]], [[Wikipedia:Intel_Core#Sandy_Bridge_microarchitecture_based|Sandy Bridge]],  [[Wikipedia:Intel_Core#Ivy_Bridge_microarchitecture_based|Ivy Bridge]], and [[Wikipedia:Intel_Core#Haswell_microarchitecture_based|Haswell]] processors.
 
=== intel64-haswell ===
<console>
CFLAGS: -march=core-avx2 -O2 -pipe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3 ssse3 sse4
</console>
 
The '''intel64-haswell''' subarch specifically supports processors based on Intel's [[Wikipedia:Haswell_(microarchitecture)|Haswell microarchitecture]] and sold '''only under the brand names Core i3, Core i5, Core i7 and starting with the Xeon E5 v3 Family'''. Though, should also be binary compatible with the [[Wikipedia:Broadwell_(microarchitecture)|Broadwell]], [[Wikipedia:Skylake_(microarchitecture)|Skylake]] and [[Wikipedia:Cannonlake|Cannonlake]] microarchitectures of the same brand names as well. One of the new instruction sets with this subarch is '''AVX2''' (Advanced Vector Extensions 2), also known as ''Haswell New Instructions'', introduced June of 2013, as an expansion of the AVX instruction.
 
Intel AVX instructions require operating system support and have been in the Linux kernel since 2.6.30. Additionally, they require more power to run. When executing these instructions, the processor may run at less than the marked frequency to maintain thermal design power (TDP) limits. For more information about these instructions, see [http://www.intel.com/content/dam/www/public/us/en/documents/white-papers/performance-xeon-e5-v3-advanced-vector-extensions-paper.pdf this link].
 
=== atom_64 ===
<console>
CFLAGS: -O2 -fomit-frame-pointer -march=atom -pipe -mno-movbe
CHOST: x86_64-pc-linux-gnu
USE: mmx sse sse2 sse3
</console>
 
The Intel Atom Processor is the common name for Intel's  [[Wikipedia:Bonnell_(microarchitecture)|Bonnell microarchitecture]],  which represents a partial revival of the principles used in earlier Intel designs such as P5 and the i486, with the sole purpose of enhancing the performance per watt ratio.  Successor to the [[Wikipedia:Stealey_(microprocessor)|Intel A100 series (Stealey)]], which was derived from the [[Wikipedia:Pentium_M|Pentium M]], the Intel Atom has been produced since 2008. Targeted at low-power devices, Atom processors can be found in a wide range of notebooks, tablets and small form-factor desktops and servers.
 
The '''atom_64''' sub-architecture supports 64-bit capable Intel Atom CPUs.  The first 64-bit capable Intel Atom CPUs were the Intel Atom 230 and 330, released in late 2008. However, Intel also continued to produce new 32-bit Atom Processors after this date. For example, the Atom N2xx series Atom Diamondville models cannot support 64-bit operation, while the 2xx and 3xx Diamondville, Pineview, Cedarview and Centerton can. A full list of 64-bit capable Intel Atom Processors [http://ark.intel.com/search/advanced?s=t&FamilyText=Intel%C2%AE%20Atom%E2%84%A2%20Processor&InstructionSet=64-bit can be seen here.]
 
{{Important|For 64-bit support to be functional, a 64-bit capable Atom Processor must be paired ''with a processor, chipset, and BIOS'' that all support [[Wikipedia:X86-64#Intel_64|Intel 64]]. If not all hardware supports 64-bit, then you must use the '''atom_32''' subarch instead.}}
 
{{:Install/Footer}}

Latest revision as of 08:57, November 21, 2014

Wordpress

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Wordpress is a blog web-server-stack application content management system. Wordpress powers much of the internet, and can be converted into several other systems. Wordpress can be a blog, forum, bug tracker, social media platform, or even a web store. There are several plugins available, and it has a large community backing it.

Install

root # emerge wordpress

Nginx Server Configuration

Nginx does not respect the .htaccess files generated by wordpress. To manually insert url rewrite rules:

   /etc/nginx/sites-available/localhost - nginx rewrite rules
location /wordpress {
                try_files $uri $uri/ /wordpress/index.php?$args;
        }

More information can be found here: http://wiki.nginx.org/WordPress

Permission Adjustments

   Note
if using nginx change permissions to nobody:nobody instead of apache:apache

Plugins, Themes & Images

Wordpress needs some directories to be run under the webserver or php-fpm user for uploading images, and installing themes & plugins.

Fix permissions to enable uploading content such as banners:

root # chown apache:apache /var/www/localhost/htdocs/wordpress/wp-content

Fix permissions to enable themes, and plugins:

root # chown -R apache:apache /var/www/localhost/htdocs/wordpress/wp-admin/
root # chown -R apache:apache /var/www/localhost/htdocs/wordpress/wp-includes/
root # chown -R apache:apache /var/www/localhost/htdocs/wordpress/wp-content/

Security

/var/www/localhost/htdocs/wordpress/wp-config.php contains plaintext sql database passwords. we should change the permissions to lock this file down.

root # chmod 640 /var/www/localhost/htdocs/wordpress/wp-config.php
root # chown apache:apache /var/www/localhost/htdocs/wordpress/wp-config.php

MySQL

   Warning

default "changeme" passwords are insecure, change them!

To create a database for wordpress to interact with:

root # mysql -u root -p
mysql> CREATE DATABASE IF NOT EXISTS `wordpress` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
mysql> CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'changeme';
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `wordpress`.* TO 'wordpress'@'localhost' IDENTIFIED BY 'changeme';
mysql> \q
   /var/www/localhost/htdocs/wordpress/wp-config.php (php source code) - insert database information
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpress');
/** MySQL database password */
define('DB_PASSWORD', 'changeme');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');

acquire your own salts and insert them into your configuration file. https://api.wordpress.org/secret-key/1.1/salt/

   /var/www/localhost/htdocs/wordpress/wp-config.php (php source code) - add a salt
define('AUTH_KEY',         '5%#gO!G+miM;(Jt8U^12SAh');
define('SECURE_AUTH_KEY',  'hJ~Hi:(R/:^l$M;(Vfp:+04$A');
define('LOGGED_IN_KEY',    'f^%jl;[9~8],LA^Eq]-5*');
define('NONCE_KEY',        '&IX,NkKM;M;(Jt(Jt8U^j;(m7');
define('AUTH_SALT',        'TX^29j/P7[q0GhM;(Jt8U^-ug&mh');
define('SECURE_AUTH_SALT', '<p@0$;jThph,2M6e8i<UAW=');
define('LOGGED_IN_SALT',   'O0TY<>%eIAs/=;O&7@LkhxduYhg6');
define('NONCE_SALT',       'VQ^-BR7YM;(Jt8U^D4ZRMY#[');

Database and database user are "wordpress" and passwords are what you set in your mysql database generation step. (changeme fields)

5 minute installer

Point your browser @ http://localhost/wordpress/

Name your website, and make a default administrator username, and password.

   Important

Wordpress has hidden admin levels assigned to the first registered account. Make sure you leave it as a generic admin account.

Administration & Use

Administer your WordPress @ http://localhost/wordpress/wp-admin/

Your shiny new blog is located @ http://localhost/wordpress/

Your new blogs rss feed is located @ http://localhost/wordpress/feed/

Suggested Themes

  • Responsive

Suggested Plugins

  • Add Meta Tags
  • Disqus Comment System
  • Google XML Sitemaps
  • Share Buttons by AddToAny
  • WooCommerce
  • Wordfence Security
  • YouTube widget responsive

Media