Jump to content

prestashopninja

Members
  • Posts

    229
  • Joined

  • Last visited

Profile Information

  • Activity
    Developer

Recent Profile Visitors

8,191,434 profile views

prestashopninja's Achievements

Newbie

Newbie (1/14)

68

Reputation

3

Community Answers

  1. Hi, Your link returns 404. If you didn't delete the PHP script there, probably the URL you called is wrong. If you run it with success and didn't get an email, this tells that PHP cannot actually send mail, due to an SMTP failure. In this case, you will need to contact your hosting company.
  2. Hi, Then, please check that PHP's email functionality is working well. Please copy the code below and paste it into an empty text file. Change "[email protected]" to your actual email address, where you want to receive your emails. Then, save the file as "mailTest.php" and upload it to your server, to the top level directory where you have your PrestaShop installation and call it via your browser. Assuming your webshop is at http://myprestashopdomain.com, you'll want to call it a http://myprestashopdomain.com/mailTest.php If you'll receive the test email, everything's fine with PHP's email functionality and something's wrong with PrestaShop settings. Otherwise, it's likely a server problem. I hope this helps. <?php $to = '[email protected]'; $subject = 'Test email'; $message = 'This is a test email message'; $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers, '[email protected]');
  3. Hello, Correct me if I am wrong, however those are payment modules and any search engine bot isn't supposed to index those pages. So, what is your purpose to have friendly URL's there otherwise?
  4. Hi, Could you write down the values on BO email settings (BO:: Advanced Parameters -> Email) along with your PrestaShop version?
  5. Hi, If you are talking about a CSV import, this thread would be helpful: https://www.prestashop.com/forums/topic/195033-product-combination-csv-import/
  6. Hi, Almost everytime, this issue is sourced by a third-party module consuming too much mysql resources, because of poor coding. While a better server can tolerate this resource-expensive operations, I would first suggest to turn debug profilin on and see what really happens.
  7. Kindly, activate my module there or I'll start a boycott, not to sell any modules over your addons site where you use our money for months. You are right there and I am also here. Let's see who's stronger.
  8. Dear Prestashop community, I am a guy who's selling Prestahop modules of my own. I sell some of them in my own site and some other via Prestashop Addons. Today, I got an email telling one of my modules is disabled there. What about the reason? "No recent sales". It is your duty to make my modules sell. I've adhered to all your rules and the module in subject is a very useful one. I use it almost everyday in my projects. If you just can't do the SEO work, don't do it. Leave and close the door. Without the guys, trying to give more than we could give, like myself, you are nothing more than nothing, Be awake! Soyez un peu plus attentive. Ne soyez pas des idiots.
  9. From the view of safety, it should be pretty safe, yet it's a just simple example; not meant to use in any production environment.
  10. The module was only there to give an idea. I don't advise to use it in any production environment as it's raw and I hope it can describe the general logic to pass data to Smarty using a custom module.
  11. Hi, If I got your question correct and if it is that simple, you can always use your browser's "save as" option.
  12. Hi, You will probably need to rearrange the permissions. Usually 755 for the folders and 644 for the files.
  13. Hi, Your website is doing in fact already quite well. The avarage load time for me is around 1.6 seconds. Perhaps there is heavly load on pingdom servers. Try it also with GTMetrix.
  14. Hi, Not completely true. You can -and you will probably want to- activate SSL.
  15. We just cannaot call ourselvels as the solvers of the issue, yet happy to see it solved.
×
×
  • Create New...