how to set up wp in folder within static website?

It sounds like you need to copy the file /blog/index.php to /index.php and modify a line in the new copy you create: require(‘./wp-blog-header.php’); to require(‘./wordpress/wp-blog-header.php’); Here is a complete guide to moving WordPress into a separate folder: http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

Server ip to Domain

I always run queries in phpmyadmin http://www.phpmyadmin.net or adminer http://www.adminer.org/: UPDATE wp_options SET option_value = replace(option_value, ‘http://www.olddomain.com/’, ‘http://www.newdomain.com/’) WHERE option_name=”home” OR option_name=”siteurl”; UPDATE wp_posts SET guid = replace(guid, ‘http://www.olddomain.com/’,’http://www.newdomain.com/’); UPDATE wp_posts SET post_content = replace(post_content, ‘http://www.olddomain.com/’, ‘http://www.newdomain.com/’); Yes, some will say to never change the GUID, but changing the domain gives you no choice. Your … Read more

Exporting completed webiste for another server

It’s not difficult. You need to transfer files to the new server. Create a blank database and keep it’s name, user_name (this user must have all privileges of this newly created database) and password. Edit config.php file on new server with the these new details. Read: WordPress Codex for transferring site

WordPress Site Speed (Maybe Server Issue)

It could be anything: A slow and un-optimized MySQL server A theme not suited for big databases A faulty plugin combination … You can make sure that it’s not a plugin or theme issue by disabling all plugins and using a built in theme (I like Twenty Twelve). What else you can do to find … Read more

Server specification [closed]

To add to Peter’s comment, it is very much depending on the technology you use which in turn might depend on the software architecture. If you can create a condition in which you can serve cached pages 99% of the time (by using caching plugins or varnish in front of your site) then you will … Read more