Skip to content

Instantly share code, notes, and snippets.

View Shudrum's full-sized avatar
🎯
Focusing

Julien Martin Shudrum

🎯
Focusing
View GitHub Profile

#Password security fix

There are several ways to implement the latest security update for PrestaShop. Choose the one you feel confident with!

  • For Git user: Cherry-pick
  • For Unix user: Apply the patch with diff files
  • For others: Copy the patched files
  • For those who like a challenge: The ‘Do it Yourself’ method!

For other situations (old versions of PrestaShop, heavily customized Core files), you should do it yourself! If you have a little bit of PHP experience, it is easy to do.

@Shudrum
Shudrum / gist:05a8e9663d93d3f80673
Created July 22, 2015 14:19
My xdebug configuration for PhpStorm
zend_extension=xdebug.so
xdebug.profiler_enable=On
xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.remote_port=10000
xdebug.remote_handler="dbgp"
xdebug.overload_var_dump="0"