Jump to content

t.zak510

Members
  • Posts

    51
  • Joined

  • Last visited

Profile Information

  • First Name
    Zak
  • Last Name
    Tim

Recent Profile Visitors

432 profile views

t.zak510's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. I need a solution brother, I have plans to stop spammers as I will add filters, but I need to receive an email first before doing anything else
  2. Hello, I have a template which contains a form with the following code to send email but I'm not receiving any emails because it doesn't use send::mail function, here is the code: <?php $name = @trim(stripslashes($_POST['name'])); $from = @trim(stripslashes($_POST['email'])); $subject = @trim(stripslashes($_POST['subject'])); $message = @trim(stripslashes($_POST['message'])); $to = '[email protected]'; //replace with your email $headers = array(); $headers[] = "MIME-Version: 1.0"; $headers[] = "Content-type: text/plain; charset=iso-8859-1"; $headers[] = "From: {$name} <{$from}>"; $headers[] = "Reply-To: <{$from}>"; $headers[] = "Subject: {$subject}"; $headers[] = "X-Mailer: PHP/" . phpversion(); mail($to, $subject, $message, $headers); die; How can I fix it please
  3. @DataKick Please bare with me, I really don't have any clue about what you said, I don't know what is display handler. What I did is to create that code and I added it to Controllers/front/OrderDetailController.php then I went to my themes/My-Theme/templates/customer/order-detail.tpl and I added the second code {$HelloWorld} But no result
  4. Hello, I have Edited the OrderDetailController file and added a simple function to do some tests before implementing desired code: public function SayHello (){ $HelloWorld = "Hello World"; $this->context->smarty->assign('HelloWorld' , $HelloWorld); } and I added the following to my tpl file in my view: <li><strong>Tracking#</strong> {$HelloWorld}</li> All I'm getting is Undefined Index HelloWorld Not sure what's the issue
  5. Thanks @Janett forgive me to ask again, is there way to filter only Critical commits? which are concerned with security bugs?
  6. Hello @Janett thanks for your reply, but it's not clear, for example where to find PS 1.7.2.5 and PS 1.7.3.0 and PS 1.7.3.1 etc... ? all I see are issues
  7. Hello, I'm trying to find the security issues with every version of prestashop 1.7.* and Up The reason for me to ask this, is because I would like to update those vulnerable holes against any attack without doing a full update as I will loose many customizations with my store. Is there a specific link for each version? Thank you
  8. Hello, Because Symfony 2.8 will not receive security patches and support from November 2018, and also because I can't update my whole PS store as I have many customizations and tweaks which I will lose in a blink of an eye.
  9. Hello, How can I do an upgrade of my current symfony 2.8 to 3.4 manually without doing a full update of my prestashop store. Please guide me on which folders to re-update
  10. @tantan199Explain to me what exactly? How to ruin my store by making it more vulnerable? you shouldn't ask anyone to disable that Library, it's essential and I concluded you have no idea what you were talking about
  11. Hello @tantan199 I did some research regarding HTML Purifier Library and it seems that it is a very important Library to prevent HTML XSS by injecting malicious HTML by a user, I find it strange that you ask me to turn it off, either you are stupid or maybe you have no idea about the role of that Library since you ask me to turn it off.
×
×
  • Create New...