Page 8 of 26 FirstFirst ... 67891018 ... LastLast
Results 71 to 80 of 255
  1. #71
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Default A bug found in New Installation SQL Patches

    There was a mistake in the order that queries should run.

    This happened because there is an addition of one column both in table `categories` and `categories_description`

    So the 2 lines that modify these tables should run before any insertion in the tables.

    ##################################################

    Download the attached file and replace it in the package of PC Configurator you have already downloaded.

    ##################################################

    I will also pack the module again with this fix and upload it here :

    http://www.zen-cart.com/index.php?ma...roducts_id=667
    Attached Files Attached Files

  2. #72
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Default A NEW bug found in New Installation SQL Patches

    Dear friends,

    Sorry for this, but there was another bug in SQL Patches.

    New file is attached here, and module will be uploaded again with the fixed file at :

    http://www.zen-cart.com/index.php?ma...roducts_id=667
    Attached Files Attached Files

  3. #73
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Default Translation in other languages issue

    Thanks to our friend Diogo Paiva, a very basic issue should mentioned here in this thread which has to do with complete translation trouble.

    Diogo Paiva needs a complete translation in Portuguese language, but because of the reason that some of our queries read configuration values ( database KEYS ) , if we change PC Configurator categories names and just translate it in other languages, PC Configurator will not function.

    As this is a very basic issue, even computer's language is International I suggest if someone from developing team have available time, take a look at the code, and suggest what changes we could do.

    I will solve this issue the next 10-15 days maybe, but I am also waiting for suggestions.

    PLEASE, ONCE AGAIN DO NOT POST HERE PERSONAL TROUBLES, SO WE KEEP THIS THREAD UNDERSTANDABLE FOR USERS.

    For any personal trouble contact me directly at [email protected] and if needed ( like I did for this language issue ) I will post what needed here.

    Thank you for your understanding.

  4. #74
    Join Date
    May 2007
    Posts
    69
    Plugin Contributions
    0

    Default Re: PC Configurator For Zen Cart

    Hi, i have the mod installed and most of it seems to work fine up until you actually choose the PC Configurator from the main page menu and it some up with Unable to display page,,,,


    Code:
    http://tower-it.net/&#37;3C?php%20echo%20HTTP_SERVER;%20?><?php%20echo%20DIR_WS_CATALOG;%20?>index.php?main_page=pc_configurator
    this is what is displayed in the explorer bar.

    i have tried to look but unable to work out why it is happening or if something is missing....

  5. #75
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Default URL PROBLEM - PC Configurator

    IT SEEMS YOU SOLVE THIS TROUBLE. THIS IS WHY I TELL EVERYBODY TO CONTACT ME DIRECTLY. PLEASE SOMEONE OF ADMINS DELETE POST #76.

    THANKS

    First, download your configure.php file from shop/includes and check the following defines :

    If your zen cart installation is directly installed in httpdocs or public_html then you should also have the following defines:


    define('HTTP_SERVER', 'http://tower-it.net');
    define('DIR_WS_CATALOG', '/');
    define('DIR_FS_CATALOG', '/var/www/vhosts/tower-it.net/httpdocs/');

    OR

    define('DIR_FS_CATALOG', '/var/www/vhost/tower-it.net/public_html/');

    depending on the server software

    If you have installed zen cart in a directory like shop - eshop or anything else
    then you should also see the following inside your configure.php :

    Lets say you installed in directory "shop" . Then you will see :

    define('HTTP_SERVER', 'http://tower-it.net');
    define('DIR_WS_CATALOG', '/shop/');
    define('DIR_FS_CATALOG', '/var/www/vhosts/tower-it.net/httpdocs/shop');

    OR

    define('DIR_FS_CATALOG', '/var/www/vhost/tower-it.net/public_html/shop');

    depending on the server software


    Anyway, try to follow the URL bellow to see if pc_configurator page is working :

    http://tower-it.net/index.php?main_page=pc_configurator

    Please, if you have troubles, contact me directly at [email protected] , so we keep this thread understandable for other users. If I should POST your trouble with solution I will do it.

    Thanks

  6. #76
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Idea or Suggestion Local Sales Tax Issue

    Dear friends,

    There is a new bug which has to do with local sales tax.

    In one of the next versions I will fix it, including some PHP in JAVASCRIPT.

    For now, to solve this problem do the following :

    Open file "pc_configurator_java_script.php" which is inside the folder "pc_configurator"

    Find the following lines ( should be 39 & 40 ) :

    var netprice = Math.round(gross/0.0119)/100;
    var taxprice = Math.round(netprice*19)/100;


    If your local sales tax ( for example ) is 12&#37; change these lines as following :

    var netprice = Math.round(gross/0.0112)/100;
    var taxprice = Math.round(netprice*12)/100;

    ANOTHER EXAMPLE :

    If your local sales tax ( for example ) is 9% change these lines as following :

    var netprice = Math.round(gross/0.0109)/100;
    var taxprice = Math.round(netprice*9)/100;


    When you make these changes, do not forget to upload the file.

    I hope this can solve your local sales tax problem.

    In one of the next versions, this will be automatically, as you have already set up this value in admin, or maybe there will be 2 more fields in admin->configuration>pc configurator so you can set up these values there.

  7. #77
    Join Date
    Aug 2007
    Posts
    1
    Plugin Contributions
    0

    Default Re: PC Configurator For Zen Cart

    Hay
    I have this Problem after i try to make a sql installation

    1136 Column count doesn't match value count at row 1
    in:
    [INSERT INTO configuration_group VALUES ('PC Configurator', 'PC Configurator Settings', '9453', '1');]

    What is that??

    CU

  8. #78
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,162
    Plugin Contributions
    0

    Default Re: PC Configurator For Zen Cart

    lebrand2006,
    One small suggestion
    Can you please put in the README file (and the download page too) what this contrbution does so that it helps others to decide whether and when to use it
    Thanks
    Tutorials on Zen Cart
    http://tutorials.zen-cart.com/index.php
    ---------------
    advanced.programmer at gmail dot com
    In love with Zen Cart!!

  9. #79
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Default Re: PC Configurator For Zen Cart

    Quote Originally Posted by gunny View Post
    Hay
    I have this Problem after i try to make a sql installation

    1136 Column count doesn't match value count at row 1
    in:
    [INSERT INTO configuration_group VALUES ('PC Configurator', 'PC Configurator Settings', '9453', '1');]

    What is that??

    CU
    Please, contact me directly at [email protected] and I will solve your problem.

  10. #80
    Join Date
    Apr 2006
    Location
    City Drama in Greece
    Posts
    160
    Plugin Contributions
    6

    Idea or Suggestion Re: PC Configurator For Zen Cart

    Quote Originally Posted by superprg View Post
    lebrand2006,
    One small suggestion
    Can you please put in the README file (and the download page too) what this contrbution does so that it helps others to decide whether and when to use it
    Thanks
    Thank you for your suggestion. You are right. I should do this from the star.

    But I have also a general suggestion for all users of this forum.

    You can also use PRIVATE MESSAGE for such issues !

    Because when someone tries to find something for a trouble, he also finds many other not usefull information he do not need.

    So let's help ourselves, and keep this thread UNDERSTANDABLE and usefull for all users.

    FOR ANY TROUBLE CONTACT ME DIRECTLY AT : [email protected]

    OR SEND ME A PRIVATE MESSAGE ( IF YOU ARE MEMBER OF THIS FORUM )

    I will POST here any usefull news and changes for this module. I will also upload the new version when ready.

    Just think that something that solved your problem maybe could not solve other user's problems.

    Not everyone uses Zen Cart with same templates and files.

    There are many users who have made modifications. So contact me directly and I will solve your problem. Then I will POST what needed here.

    Also do not forget that this way you help yourself, all other users and development of this module.

    I think a limit of 20 pages for this thread is OK.

    Would not help nobody if it reaches 100 pages !!!

    Please understand that this is not a general discusion forum. It is a specific thread for module PC Configurator.

    Thank you all very much

    ########################################_

 

 
Page 8 of 26 FirstFirst ... 67891018 ... LastLast

Similar Threads

  1. MultiSite Module Support Thread
    By Gerome in forum All Other Contributions/Addons
    Replies: 2239
    Last Post: 21 May 2025, 02:07 PM
  2. v154 WorldPay Module version 3.0 - Support thread
    By countrycharm in forum Addon Payment Modules
    Replies: 115
    Last Post: 20 Jul 2021, 04:00 PM
  3. Form Armor Module Support Thread
    By FormArmor in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 29 Jan 2009, 05:08 AM
  4. Layaway Payment Module Support Thread
    By Danielle in forum Addon Payment Modules
    Replies: 0
    Last Post: 21 Nov 2006, 06:43 AM

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