Page 213 of 506 FirstFirst ... 113163203211212213214215223263313 ... LastLast
Results 2,121 to 2,130 of 5054
  1. #2121
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by MikeyG View Post
    yellow1912

    Thank you for the very quick response.

    I have installed the debug file but get no log. (I have changed the cache to writable but each time I go back to it it is read only) Running WAMP with PHP5 on vista pc for testing purposes localy.

    If I get not log I am guessing this means no issue identified. The page is not blank it is the product lising page but the heading changes to that of the product clicked on.

    I have reloaded your files just incase I had missed one on install. but still the same issue.

    Thanks
    You can use the debug option b) Attempt to show errors on-screen in the link I posted, sometimes it can show more error. Usually a blank page or part of the page goes blank means the script encounters a fatal error somewhere.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  2. #2122
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Okie, I suspect something went wrong here, it is neither ssu bug or any other module bug, I suspect something like this:
    you somehow deleted part of the file name def.

    Use your developer tool kit to find this:
    FILENAME_PRODUCT_INFO
    This is how the product link is normally built

    PHP Code:
    $lc_text '<a href="' zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > and $_GET['filter_id']) > ?  zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' $listing->fields['products_id']) . '">' zen_image(DIR_WS_IMAGES $listing->fields['products_image'], $listing->fields['products_name'], IMAGE_PRODUCT_LISTING_WIDTHIMAGE_PRODUCT_LISTING_HEIGHT'class="listingProductImage"') . '</a>'
    And here is the function to get the product type

    PHP Code:
    function zen_get_info_page($zf_product_id) {
        global 
    $db;
        
    $sql "select products_type from " TABLE_PRODUCTS " where products_id = '" . (int)$zf_product_id "'";
        
    $zp_type $db->Execute($sql);
        if (
    $zp_type->RecordCount() == 0) {
          return 
    'product_info';
        } else {
          
    $zp_product_type $zp_type->fields['products_type'];
          
    $sql "select type_handler from " TABLE_PRODUCT_TYPES " where type_id = '" . (int)$zp_product_type "'";
          
    $zp_handler $db->Execute($sql);
          return 
    $zp_handler->fields['type_handler'] . '_info';
        }
      } 
    As you can see, turning of ssu didnt solve it, so ssu is not the cause of this. My wild guess is that you somehow messed up the product type field. Perhaps all the product type is missing (are you using eazy populate by any chance?)

    This is rare tho.

    Perhaps you can use your phpmyadmin, and go to table product_types and see if something is wrong there, you can get the list of records there and post here, tho it is not really related to SSU.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  3. #2123
    Join Date
    May 2005
    Posts
    535
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    yellow1912

    no error messages showing using method b)

    further info - I can add a product to cart but when trying to look a the shopping cart it bring up the home page only as does trying to log in.

    might this be an .htaccess rewrite issue?

  4. #2124
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    @MikeyG: link to the specific site and page with the issue will help
    @tameron: yes the description module is the cause

    You need to contact the author to get it solved. But in short it created a new product type, and now when you uninstall it that product type is removed yet your products still point to it. You need to mass update all your product to the old product type.
    If nothing serious has been changed you can do this:

    Back up your db
    Go to sql patch tool and run
    [FONT=&quot]Update products set products_type=1;

    GLuck, you will need that
    [/FONT]
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  5. #2125
    Join Date
    Dec 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Are you talking about getting the download from here:

    http://public.rubikintegration.com/ if so which one

    or here

    http://www.zen-cart.com/index.php?ma...oducts_id=1013

  6. #2126
    Join Date
    May 2005
    Posts
    535
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    testing as a local site on my laptop so not url to give. going to start again and see if that helps

  7. #2127
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by tameron View Post
    Are you talking about getting the download from here:

    http://public.rubikintegration.com/ if so which one

    or here

    http://www.zen-cart.com/index.php?ma...oducts_id=1013
    This will help you to decide which one to get
    http://wiki.rubikintegration.com/zen.../ssu/changelog
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  8. #2128
    Join Date
    Dec 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I dropped my products table and then restored it with my backup from this morning and then ran the sql statement and that fixed it.

    Thank You!!!

    Should I still upgrade SSU, and if so, where should I download the latest version from?

  9. #2129
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by tameron View Post
    I dropped my products table and then restored it with my backup from this morning and then ran the sql statement and that fixed it.

    Thank You!!!

    Should I still upgrade SSU, and if so, where should I download the latest version from?
    If things work fine, and you dont need the new features, no need to upgrade.

    Newest versions should always be downloaded from http://public.rubikintegration.com/
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  10. #2130
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by MikeyG View Post
    testing as a local site on my laptop so not url to give. going to start again and see if that helps
    If something is wrong with the htaccess, you should see all links not working at all. Meaning that clicking on any link should either lead to a 404 page, or homepage.

    If it works for some links and not for others, then it's usually not htaccess related. I cant tell what is wrong tho, unless I really see it. I guess you are using 3.5.8 or 3.6.0RC5 with latest bug fixes?
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

 

 

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 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