Results 1 to 10 of 623

Hybrid View

  1. #1
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    124
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by SpaceMonkey View Post
    Hi everyone.

    Is anyone able to help with getting twitter running?

    I have supplied the information required in twitter/index.php and added the Twitter Account name via the admin. All I get is a flash message saying "searching Twitter..." and then nothing. Obviously I have checked the Keys & Tokens are correct.

    Any suggestions would be good.

    Cheers All

    Sorted. Was in twitter/index.php line 47.

    Changed from:

    // Path to writable cache directory
    private $cache_dir = './';


    Changed to:

    // Path to writable cache directory
    private $cache_dir = 'https://mysite.com/cache/';

    Hope this helps others...

  2. #2
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by SpaceMonkey View Post
    Changed to:

    // Path to writable cache directory
    private $cache_dir = 'https://mysite.com/cache/';
    Highly unlikely that that's a safe change. No writable directory on your server should ever be directly referred to in an http URL. That's a security mess waiting to happen.
    It would be better to to use '/home/your_username/public_html/cache/' or whatever the complete path for DIR_FS_SQL_CACHE is in your /includes/configure.php file.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    124
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by DrByte View Post
    Highly unlikely that that's a safe change. No writable directory on your server should ever be directly referred to in an http URL. That's a security mess waiting to happen.
    It would be better to to use '/home/your_username/public_html/cache/' or whatever the complete path for DIR_FS_SQL_CACHE is in your /includes/configure.php file.
    Perfect.......... Works

    Thank you for the advice Sensei.

  4. #4
    Join Date
    Jan 2015
    Location
    Mobile, Alabama, United States
    Posts
    1
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    So I was able to use Zen Cart fine then uploaded this template. The front end shows fine but the admin area wont load i get error

    WARNING: An Error occurred, please refresh the page and try again.

    All forms of refresh and using a different pc also didn't help.

    I checked the error log and got

    [08-Jan-2015 19:49:27 America/Detroit] PHP Fatal error: 1050:Table 'zen_hide_categories' already exists :: RENAME TABLE hide_categories TO zen_hide_categories ==> (as called by) /home/bienville/public_html/cart/zcadmin/includes/installers/tableau/1_3_2.php on line 3 <== in /home/bienville/public_html/cart/includes/classes/db/mysql/query_factory.php on line 155

    When I check the 1_3_2.php line 3

    $db->Execute("RENAME TABLE hide_categories TO ". TABLE_HIDDEN_CATEGORIES);

    Does anyone have any ideas.

    Please

  5. #5
    Join Date
    Jan 2015
    Location
    United States
    Posts
    6
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hello,

    I'm adding images to the "about us" page. Where do I need to upload the image files?

    Thanks!

  6. #6
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    124
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by igtech View Post
    So I was able to use Zen Cart fine then uploaded this template. The front end shows fine but the admin area wont load i get error

    WARNING: An Error occurred, please refresh the page and try again.

    All forms of refresh and using a different pc also didn't help.

    I checked the error log and got

    [08-Jan-2015 19:49:27 America/Detroit] PHP Fatal error: 1050:Table 'zen_hide_categories' already exists :: RENAME TABLE hide_categories TO zen_hide_categories ==> (as called by) /home/bienville/public_html/cart/zcadmin/includes/installers/tableau/1_3_2.php on line 3 <== in /home/bienville/public_html/cart/includes/classes/db/mysql/query_factory.php on line 155

    When I check the 1_3_2.php line 3

    $db->Execute("RENAME TABLE hide_categories TO ". TABLE_HIDDEN_CATEGORIES);

    Does anyone have any ideas.

    Please
    This one was also something that happened to me. I solved it as follows (updated from page 19 this thread).


    1. Open admin\includes\installers\tableau\1_3_2.php in a txt editor.
    2. Comment out (//) line 2 & then delete line 22 (only a curly brace } on this line) then save and upload the file.

    Worked for me. I don't know if this has any negative impact elsewhere but it solves my issue with no apparent affect. My template installed correctly up to current version 1.3.4 and appears fine. Maybe an expert might be able to advise.

    I hope this helped.

  7. #7
    Join Date
    Jan 2015
    Location
    United States
    Posts
    6
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by DrByte View Post
    Highly unlikely that that's a safe change. No writable directory on your server should ever be directly referred to in an http URL. That's a security mess waiting to happen.
    It would be better to to use '/home/your_username/public_html/cache/' or whatever the complete path for DIR_FS_SQL_CACHE is in your /includes/configure.php file.
    Can someone elaborate on this. I've looked everywhere in my directory. I double checked all of my twitter codes. All correct. The feed is still directed to the numinix feed.

    Thanks,

    Ray

  8. #8
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    124
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by Steely Ramon View Post
    Can someone elaborate on this. I've looked everywhere in my directory. I double checked all of my twitter codes. All correct. The feed is still directed to the numinix feed.

    Thanks,

    Ray
    Hi Ray,

    Posts #191 to #195 cover this, but I suggest creating your twitter api in their developer centre and then pasting the keys as described into twitter/index.php lines 27,30,33 & 36.

    The final bit is the writable cache. Not mentioned much in the installation instructions it might need changing also. This is:

    twitter/index.php line 48 needs to be changed. Example below.

    Changed from:
    // Path to writable cache directory
    private $cache_dir = './';


    Changed to:
    // Path to writable cache directory
    private $cache_dir = '/home/examplename/public_html/cache/';

    To find the correct path refer to "DIR_FS_SQL_CACHE" in your /includes/configure.php

    Hope that helps.

  9. #9
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    124
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by Steely Ramon View Post
    I don't use twitter, so it's useless to me.

    Ray

    So I guess I just explained that for nothing! Wish I read all the posts first, Doh! Maybe someone else might find it useful. :

  10. #10
    Join Date
    Jan 2015
    Location
    United States
    Posts
    6
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by SpaceMonkey View Post
    So I guess I just explained that for nothing! Wish I read all the posts first, Doh! Maybe someone else might find it useful. :
    I haven't followed your instructions yet, but I wanted to say thank you. I appreciate it. I do have a use for twitter, but it's not my main use of social networking.

 

 

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1087
    Last Post: 18 Jan 2025, 07:23 PM
  2. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  3. v155 Tableau Theme configuration not working.
    By tunes in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 22 Mar 2017, 06:53 PM
  4. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  5. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM

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