Integrating WP in an existing site
-
I read with great interest the article from Moshu you can read: https://www.transycan.net/blogtest/2005/07/05/integrate/1/
This is the proof that a specific documentation is necessary on wordpress website for people like with an existing design trying to integrate WordPress.
1- In the tutorial the call on the wp-blog-header.php is incorrect from experience. It should be:
<?php
define(‘WP_USE_THEMES’, true);
require(‘./blog/wp-blog-header.php’);
?>and not only:
<?php
require(‘./blog/wp-blog-header.php’);
?>2- It doesn’t work for me. At least not completely. I can only see my posts: https://www.fireworkszone.com
But the footer disappeared and I cannot add the sidebar items: calendar, categories, etc in my left or right existing sidebars (belonging to the 3-column layout design already in place).I tried both: wordpress in the root directory and in a blog folder with the same results.
3- Whooami let me know that my Server API is not Apache but CGI/ProXad. This is maybe what is the cause of the problem.
Thanks for your help because I am bit desperate.
- The topic ‘Integrating WP in an existing site’ is closed to new replies.