Page 20 of 63 FirstFirst ... 10181920212230 ... LastLast
Results 191 to 200 of 623
  1. #191
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    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

  2. #192
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    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...

  3. #193
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    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.

  4. #194
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    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.

  5. #195
    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

  6. #196
    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!

  7. #197
    Join Date
    Feb 2013
    Posts
    111
    Plugin Contributions
    2

    Default Re: Tableau Responsive Theme - Support Thread

    Is there a way to disable the mobile site side of things love the main but I've always hated mobile websites. It's the only thing preventing me using this theme.

    I can't seem to figure out how to remove it.

  8. #198
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    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.

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

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by vvomble View Post
    Is there a way to disable the mobile site side of things love the main but I've always hated mobile websites. It's the only thing preventing me using this theme.

    I can't seem to figure out how to remove it.
    Hi,

    This is a responsive template. All in one system with screen resolution deciding which css version to show. Have a look at stylesheet_responsive.css (includes/templates/tableau/css/stylesheet_responsive.css) as a starting point.

    I started using this one a little while ago and like it very much. A little heavy with css but FireFox Element Inspector is a useful tool.

    Regards

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

    Default Re: Tableau Responsive Theme - Support Thread

    I'm trying to add my wordpress blog to the appropriate section per the Numinix instructions. I've followed the directions exactly. What am I doing wrong? I've tried all of the wordpress.org directions, also.

    http://www.metaldetectingandotherstu...Blog/?feed=rss
    http://www.metaldetectingandotherstu...log/?feed=rss2
    http://www.metaldetectingandotherstu...Blog/?feed=rdf
    http://www.metaldetectingandotherstu...log/?feed=atom

    What am I doing wrong? I just want to get back to selling metal detectors. lol

    Thanks for any input.

    Ray

 

 
Page 20 of 63 FirstFirst ... 10181920212230 ... LastLast

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

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