Jump to content

prestashop-new

Members
  • Posts

    54
  • Joined

  • Last visited

Profile Information

  • Activity
    Developer

Recent Profile Visitors

3,523,928 profile views

prestashop-new's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. Oh you mean the path of MySQL database Data folder? This I know. I though of something else which made me confused. Thanks! What I am doing is I am adding the Entire Prestahop website in Exclusion list and keep the on acces scan by sophhos enabled.
  2. Thanks for the reply! Can we add entire admin directory in the exclude list along with img/ directory. And "The path for the database is different and depending on your installation." I have used the standard installation so what will be the path for the database. any example?
  3. Hi, We are using PrestaShop 1.6.0.14 which is running on RHEL 6 with Sophoos antivirus. The antivirus is enabled as on-access scanning. So whenever we try to add/update Products from admin, the browser keep spinning and at the end it says server error. When we debug this then found that the Savscand is running at 100% during this period. So after disabling the sophoos on access scan everything works perfectly with lightening speed. So now we are in the process to add the path of the products directory to the excludes list, and re-enable on-access scanning. This will provide us the security of on-access scanning, and should allow us to work in the admin area without the product files being scanned on upload. So what will be the Path? Please suggest.
  4. OK. this module is working fine on my Localhost(WINDOWS-XAMPP) but when going on server(Red Hat LINUX) the Prestashop could not connect to UPS webservices. Seems something wrong with server connection. Can any one please guide me.
  5. Hi , I am using PrestaShop 1.6 with Connect to UPS v1.4.0 - by PrestaShop FREE Module. But this module doesnot seems to be working. Under General settings when I submit the form then it gives following error: Prestashop could not connect to UPS webservices : UPS Webservice seems to be down, please wait a few minutes and try again 2) Webservice test connection : UPS Webservice seems to be down, please wait a few minutes and try again When I use my settings with other application built on dot net then its working. UPS rates are showing. But this module not working. Anyone please guide me on how to make this module working or suggest if any other module for UPS shipping. Attached is the screen shot! Thanks.
  6. Ya I saw this module but not sure if I really go for it. This is the only module I found so far. So I need more on this.
  7. Will Prestashop 1.6 site be able to integrate with Salesforce? Any suggestions please. I can see few PAID modules but wondering if that OK or not. Please suggest !
  8. Hi , How to display shipping in a dropdown and how to hook it from current shipping area to the shopping cart table. I tried various way but none are working. Please see screen shot for the exact place where my client want it to be.
  9. Hi We want to charge tax if shipping or billing address is in California. So to summarize, tax should be charged if: 1. Shipping address is California 2. Billing address is California Do NOT charge tax if shipping and billing address both are outside of California. Currently in the admin under tax setting I can choose either billing or shipping [drop down]. See the screen shot please. Please help me to modify the logic
  10. Hi, I am creating a Sage payment Gateway module so in my file I need to Pass the State name also 'C_STATE' => Tools::safeOutput($invoiceAddress->id_state), but this is only providing me the ID of the value. How to get the State Name so that I can pass it to Gateway. Also after successful transaction I am finding difficulties to capture values in prestashop. I am using SOAP. This is my code $params = array( 'M_ID' => 'xxxxxxx', 'M_KEY' => 'xxxxxxx', 'C_NAME' => Tools::safeOutput($customer->firstname) . ' ' . Tools::safeOutput($customer->lastname), 'C_ADDRESS' => Tools::safeOutput($invoiceAddress->address1.' '.$invoiceAddress->address2), 'C_CITY' => Tools::safeOutput($invoiceAddress->city), 'C_STATE' => Tools::safeOutput($invoiceAddress->id_state), 'C_ZIP' => Tools::safeOutput($invoiceAddress->postcode), 'C_COUNTRY' => 'USA', 'C_EMAIL' => Tools::safeOutput($invoiceAddress->email), 'C_CARDNUMBER' => Tools::safeOutput($_POST['x_card_num']), 'C_EXP' => Tools::safeOutput($_POST['x_exp_date_m'].$_POST['x_exp_date_y']), 'T_AMT' => number_format((float)$cart->getOrderTotal(true, 3), 2, '.', ''), 'T_ORDERNUM' => time(), $SOAP = new SoapClient('https://gateway.sagepayments.net/web_services/wsvtextensions/transaction_processing.asmx?WSDL'); $response = $SOAP->BANKCARD_SALE($params); $result = $response->BANKCARD_SALEResult->any; $result = new SimpleXMLElement($result); $resultvalue = $result->NewDataSet->Table1->MESSAGE; $resultvalue1 = $result->NewDataSet->Table1->REFERENCE; $resultvalue2 = $result->NewDataSet->Table1->ORDER_NUMBER; $arr = explode(' ',trim($resultvalue)); $arr1 = explode(' ',trim($resultvalue1)); $arr2 = explode(' ',trim($resultvalue2)); After this I am stucked. Can any one please guide.
  11. Yes..and that I am unable to match each attribute (id_product_atribute in ps_stock_available table) for a single product. There must be some table from which we can fetch this information.. I am completely going mad and my mind stucked.....
×
×
  • Create New...