Page 17 of 186 FirstFirst ... 715161718192767117 ... LastLast
Results 161 to 170 of 1859
  1. #161
    Join Date
    Jun 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Zen Cart 1.3.7 Root dir - http://www.hollydoodledesigns.com/shop

    1. Uploaded(minus index.php) and installed WordPress 2.2into the Zen Cart root dir.
    2. Uploaded ZC_ROOT into Zen Cart root dir
    3. Commented out "return" in wp-include/template-loader.php
    4. Renamed includes/extra_configures/wordpress-config.txt to wordpress-config.php and added database information to the file.
    5. Added wp_archives and wp_cats to Layout Boxes Controller.
    6. Uploaded /SAMPLE/wp-content/themes/ to wp-content/themes.
    7. Pasted CSS into my Zencart stylesheet.css.
    After all of that I am still getting the error:

    I am getting the following error. "It doesn't look like you've installed WP yet. Try running install.php."

    What am I missing or doing wrong?

    Thanks,
    Brian

  2. #162
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    Item 5.. don't understand this comment...
    re
    Layout Boxes Controller
    Do you have wp-config.php in your zencart install?
    This file should have details of your mysql database etc
    associated with your WordPress Install
    You can see my demo WordPress Mod install into ZenCart 1.37
    at
    http://www.dezinashop.com/demo/
    Last edited by misty; 28 Jun 2007 at 05:28 PM. Reason: clarified entry re wp-config.php

  3. #163
    Join Date
    Jun 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Misty,

    Thanks for the hlep.

    Quote Originally Posted by misty View Post
    Item 5.. don't understand this comment...
    re
    Layout Boxes Controller
    It was step 7 in the instructions:
    7.Layout Boxes Controller of a ZenCart management screen, please install wp_archives and wp_cats.

    Quote Originally Posted by misty View Post
    Do you have wp-config.php in your zencart install?
    This file should have details of your mysql database etc
    associated with your WordPress Install
    I do have wp-config.php in my Zencart root directory.

    This is what it looks like:
    -----------------------------------------------------------------------------
    <?php
    //mb_language("Japanese");
    //mb_internal_encoding("EUC-JP");

    if (file_exists('includes/configure.php')) {
    include('includes/configure.php');
    }else if (file_exists('../includes/configure.php')) {
    include('../includes/configure.php');
    }

    // ** MySQL settings ** //
    define('DB_NAME', 'hollydoo_zencart'); // The name of the database
    define('DB_USER', 'hollydoodle'); // Your MySQL username
    define('DB_PASSWORD', 'mypassword'); // ...and password
    define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value*/

    // You can have multiple installations in one database if you give each a unique prefix

    $table_prefix = DB_PREFIX . 'wp_'; // Only numbers, letters, and underscores please!

    define ('WPLANG', '');

    /* That's all, stop editing! Happy blogging. */

    define('ABSPATH', dirname(__FILE__).'/');
    require_once(ABSPATH.'wp-settings.php');
    ?>
    --------------------------------------------------------------------------

    One question. I renamed wordpress-config.txt to wordpress-config.php. I also added my database connection information in that file as well. Should I have left it alone and only renamed it?

    Thanks again,
    Brian

  4. #164
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hollydoodledesigns View Post
    Misty,

    Thanks for the hlep.
    It was step 7 in the instructions:
    7.Layout Boxes Controller of a ZenCart management screen, please install wp_archives and wp_cats.
    I do have wp-config.php in my Zencart root directory.
    This is what it looks like:
    -----------------------------------------------------------------------------
    <?php
    //mb_language("Japanese");
    //mb_internal_encoding("EUC-JP");

    if (file_exists('includes/configure.php')) {
    include('includes/configure.php');
    }else if (file_exists('../includes/configure.php')) {
    include('../includes/configure.php');
    }

    // ** MySQL settings ** //
    define('DB_NAME', 'hollydoo_zencart'); // The name of the database
    define('DB_USER', 'hollydoodle'); // Your MySQL username
    define('DB_PASSWORD', 'mypassword'); // ...and password
    define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value*/

    // You can have multiple installations in one database if you give each a unique prefix

    $table_prefix = DB_PREFIX . 'wp_'; // Only numbers, letters, and underscores please!

    define ('WPLANG', '');

    /* That's all, stop editing! Happy blogging. */

    define('ABSPATH', dirname(__FILE__).'/');
    require_once(ABSPATH.'wp-settings.php');
    ?>
    --------------------------------------------------------------------------

    One question. I renamed wordpress-config.txt to wordpress-config.php. I also added my database connection information in that file as well. Should I have left it alone and only renamed it?

    Thanks again,
    Brian

    my wp-config.php not same as you have quoted.. yours has
    EXTRA entries at top re configure files...
    table prefix also different....
    i.e. my file
    Code:
    <?php
    // ** MySQL settings ** //
    define('DB_NAME', 'mydatabase_name');    // The name of the database
    define('DB_USER', 'mydatabase-username');     // Your MySQL username
    define('DB_PASSWORD', 'mypassword'); // ...and password
    define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value
    // You can have multiple installations in one database if you give each a unique prefix
    $table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!
    // Change this to localize WordPress.  A corresponding MO file for the
    // chosen language must be installed to wp-includes/languages.
    // For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
    // to enable German language support.
    define ('WPLANG', '');
    /* That's all, stop editing! Happy blogging. */
    define('ABSPATH', dirname(__FILE__).'/');
    require_once(ABSPATH.'wp-settings.php');
    ?>
    Layout box controller files are for sideboxes..I did not bother
    adding those until after WP Module installed correctly..
    wordpress-config.php.. adding database details not required..
    HTH

  5. #165
    Join Date
    Jun 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Misty, I am still having the same issue. I must be missing something simple.

    Here is what my wp-config.php looks like now.
    ----------------------------------------------------------
    <?php
    // ** MySQL settings ** //
    define('DB_NAME', 'hollydoo_zencart');
    define('DB_USER', 'hollydoo');
    define('DB_PASSWORD', 'mypassword');
    define('DB_HOST', 'localhost');

    $table_prefix = 'wp_';

    define ('WPLANG', '');

    /* That's all, stop editing! Happy blogging. */

    define('ABSPATH', dirname(__FILE__).'/');
    require_once(ABSPATH.'wp-settings.php');
    ?>
    -------------------------------------------

    Here is my wordpress-config.php I just renamed it from .txt to .php. I made no changes to it.
    ----------------------------------------------
    <?php
    //
    // wordpress on zencart by http://www.s-page.net/
    //

    $woz_install=0;

    if (file_exists(DIR_FS_CATALOG . 'wp-settings.php')) {
    $woz_install=1;

    define('WP_USE_THEMES', true);
    $wp_did_header = true;

    define('DB_NAME', DB_DATABASE); // The name of the database
    define('DB_USER', DB_SERVER_USERNAME); // Your MySQL username
    define('DB_PASSWORD', DB_SERVER_PASSWORD); // ...and password
    define('DB_HOST', DB_SERVER); // 99% chance you won't need to change this value

    // You can have multiple installations in one database if you give each a unique prefix
    $table_prefix = DB_PREFIX . 'wp_'; // Only numbers, letters, and underscores please!

    // Change this to localize WordPress. A corresponding MO file for the
    // chosen language must be installed to wp-includes/languages.
    // For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
    // to enable German language support.
    define ('WPLANG', '');

    /* That's all, stop editing! Happy blogging. */

    //define('ABSPATH', './wordpress/');
    define('ABSPATH', DIR_FS_CATALOG);

    require_once(ABSPATH.'wp-settings.php');

    $i=strlen(DIR_WS_CATALOG);
    $req=substr($_SERVER['REQUEST_URI'],$i,1);
    if($req=='?'){
    $_GET['main_page']='wordpress';
    }

    if(isset($_GET['feed'])){
    wp();
    gzip_compression();
    // require_once('./wordpress/wp-includes/template-loader.php');
    require_once('./wp-includes/template-loader.php');

    exit();
    }
    }
    ?>
    Do those look OK?

    Also,

    Is my Wordpress address and Blog Address suppose to point to the root dir in the Wordpress Admin? Here is what I have.

    WordPress Address (URL): http://www.hollydoodledesigns.com/shop
    Blog Address (URL): http://www.hollydoodledesigns.com/shop

    Thanks,
    Brian

  6. #166
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    Those files look ok except for
    Code:
    define('DB_USER', 'hollydoo');
    My entry there would be i.e.
    Code:
    define('DB_USER', 'hollydoo_somename');
    If installed correctly.. url to access your
    zencart wordpress mod should be
    http://www.hollydoodledesigns.com/shop/?
    but you have urls set correctly in WP admin i.e.
    Is my Wordpress address and Blog Address suppose to point to the root dir in the Wordpress Admin? Here is what I have.

    WordPress Address (URL): http://www.hollydoodledesigns.com/shop
    Blog Address (URL): http://www.hollydoodledesigns.com/shop

  7. #167
    Join Date
    Jun 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by misty View Post
    Those files look ok except for
    Code:
    define('DB_USER', 'hollydoo');
    My entry there would be i.e.
    Code:
    define('DB_USER', 'hollydoo_somename');
    I went ahead and created a database user named hollydoo_wp that has full access to the hollydoo_zencart database which is where the wp tables are located. I updated the wp-config.php to reflect this and I still get the same error. I am unsure how to proceed. I have no clue what is causing this error and how to troubleshoot it. Below is what I changed in my wp-config.php file.

    Code:
    define('DB_USER', 'hollydoo_wp');

  8. #168
    Join Date
    Jun 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    I got it working. The problem was in the wordpress-config.php

    Before:
    // You can have multiple installations in one database if you give each a unique prefix
    $table_prefix = DB_PREFIX . 'wp_'; // Only numbers, letters, and underscores please!
    After:
    // You can have multiple installations in one database if you give each a unique prefix
    $table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
    Thanks to everyone that offered up suggestions. I appreciate it. I am sure I will be back with some more questions as I try to tweak the layout to my liking.

  9. #169
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by hollydoodledesigns View Post
    I got it working. The problem was in the wordpress-config.php
    Great news...Well Done!!

  10. #170
    Join Date
    Jun 2007
    Location
    India
    Posts
    15
    Plugin Contributions
    0

    help question Re: Wordpress On Zencart / Released

    Hi..

    I have installed wordpress in root diractory and zencart in a folder of same root directory. I didnt get the idea to integrate both. Please anyone explain me..

    thanks,

    Dhaya

 

 

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3662
    Last Post: 30 Apr 2025, 04:14 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. WordPress® for Zen Cart® (wp4zen) [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 109
    Last Post: 1 Dec 2024, 01:36 PM
  4. PurpleShades Support Thread
    By kobra in forum Addon Templates
    Replies: 122
    Last Post: 18 May 2011, 07:18 PM
  5. ZJ Black 2 support thread
    By Liamv in forum Addon Templates
    Replies: 1
    Last Post: 15 Feb 2010, 02:53 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR