Page 52 of 78 FirstFirst ... 242505152535462 ... LastLast
Results 511 to 520 of 775
  1. #511
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,760
    Plugin Contributions
    30

    Default Re: Odd admin glitch with newly uploaded products

    1. Are Apsona still alive and supporting this product?
    I emailed them yesterday but have received no replies.
    Yes, I think so...but they are always very busy with paying customers.

    2. Can anyone explain their business model? How do they make money with free service and free support?
    Custom work, I think.

    3. Can I import/alter product attributes with SA? (ie the tables: products_attributes, products_options_values and products_options)
    I price all of my products via Catalog -> Attributes Controller.
    Yes - although I don't use it for that.

    4. Can anyone tell me how much of my shop data would be passed through Apsona's server? I see that they effectively control the service but, as my shop is confidential (sales, finances, and especially customer data), I would need to know what data gets sent where and what control I have over that.
    http://www.zen-cart.com/showthread.p...053#post878053

    None is sent to their servers. The code is downloaded from their site each time you start it up and that's it.

    I've been using it for ages and if one day they start to charge, I'll still use it. It works.
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  2. #512
    Join Date
    Apr 2006
    Posts
    413
    Plugin Contributions
    0

    Default Re: Odd admin glitch with newly uploaded products

    Quote Originally Posted by torvista View Post
    I've been using it for ages and if one day they start to charge, I'll still use it. It works.
    Same, works for me.. easy and quick.

  3. #513
    Join Date
    Apr 2010
    Posts
    263
    Plugin Contributions
    0

    Default Re: Odd admin glitch with newly uploaded products

    Hi,

    I am using version 1.5.1, www.fossilandrock.co.uk. I have just added the Product Cost Display add on (http://www.zen-cart.com/downloads.php?do=file&id=1444). It created a new table in my database and the site works fine. I have just tried to do an update with Apsona, changing Manufacturers and adding the cost. It hangs during updating, and I closed it. I then noticed in my site that the Manufacturers were updated, not the cost price.

    Does this mean Apsona is not compatible with the module, what can I do to get it to work? When I download my products from the Apsona Panel from the Tools - Export option, it does show the option to select Cost to be included. Can someone help with this?

    B

  4. #514
    Join Date
    Feb 2011
    Location
    West Yorkshire
    Posts
    14
    Plugin Contributions
    0

    Default Re: Odd admin glitch with newly uploaded products

    Hi I have just installed apsona shop admin to my zencart 1.51 on a local host machine for testing. It does not appear to have created the table in the database and when I try to run it from the admin menu it just goes to a blank page with the header showing. Any help on this would be fantastic. I have installed on zencart 1.39h on same localhost machine and that one works ok.

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

    Default Re: Odd admin glitch with newly uploaded products

    Blank page means an error is occurring. Read the logs for the error, and fix the error: http://www.zen-cart.com/content.php?124-blank-page
    .

    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.

  6. #516
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,760
    Plugin Contributions
    30

    Default Firefox 23/Chrome blocks mixed content so Apsona does not load when Admin uses SSL

    Firefox 23 blocks mixed content with no popup warning, just an easily-missed (by me anyway) icon in the address bar.
    There is also no whitelist for this: on every page reload you have to manually permit it.
    https://blog.mozilla.org/tanvi/2013/...in-firefox-23/

    If your admin pages use ssl, when you use apsona this will attempt to load via https too which results in the apsona page not loading as the jquery and apsona code is blocked.

    Solution, change the sources of the unencrypted content.

    In apsona_config.php

    change
    $APSONA_BASE_URL = 'http://shopadmin-svc.apsona.com';
    to
    $APSONA_BASE_URL = 'https://service.apsona.com';

    In apsona_index.php

    change
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    to
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  7. #517
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,760
    Plugin Contributions
    30

    Default Apsona not loading with php 5.5

    For early adopters using php5.5 already, i.e. Xampp 1.83, mysql_connect is deprecated and the attendant error message triggering stops Apsona from loading:
    Deprecated: mysql_connect(): The
    mysql extension is deprecated and will be removed in the future: use mysqli
    or PDO instead in D:\My Documents\....\apsona_functions.php on line
    176
    Despite putting @ in front of it (as in Zen Carts query_factory which also uses mysql_connect) to supress the error, I still could not get it to work despite trying to turn off all error reporting.

    Apsona is aware of the issue.
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  8. #518
    Join Date
    Oct 2010
    Posts
    23
    Plugin Contributions
    0

    Default Re: Apsona not loading with php 5.5

    Same issue. I have updated to the new files recommened by Apsona and still a blank screen when trying to run this GREAT add-on. Good thing I am trying to migrate to the new version of ZenCart for all my sites and not having to run live, YET.

  9. #519
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,760
    Plugin Contributions
    30

    Default Re: Apsona not loading with php 5.5

    Quote Originally Posted by kennad View Post
    Same issue. I have updated to the new files recommened by Apsona and still a blank screen when trying to run this GREAT add-on. Good thing I am trying to migrate to the new version of ZenCart for all my sites and not having to run live, YET.
    I would forget it for now and use php5.4/Xampp 1.82 for local development as your hosting won't be using 5.5 for a long time yet.
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  10. #520
    Join Date
    Oct 2010
    Posts
    50
    Plugin Contributions
    0

    Default Re: Apsona not loading with php 5.5

    I am trying to do a mass update using Apsona of a category > product in 1.5.1.
    I want to change the below field from "y" to "n" for all my products:

    Products Quantity Box Shows: o Yes, Show Quantity Box o No, Do not show Quantity Box

    But when I go to Apsona and select "All Products" and look in the "Product Details" screen, this exact field is not available.
    Any ideas?

 

 
Page 52 of 78 FirstFirst ... 242505152535462 ... LastLast

Similar Threads

  1. v151 ShopAdmin by Apsona - Hanging when importing
    By bouncdchk in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 4 Jan 2014, 10:26 PM
  2. Apsona ShopAdmin
    By cagui2254 in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 25 Aug 2011, 09:10 PM
  3. Current version of Alba's Mass Update Tool?
    By wolfear in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 5 Jun 2006, 02:13 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