To see current processes do this in terminal sudo lsof -i ':80' To stop the built in apache server in Mac OS X do sudo apachectl stop
ARCHIVE
Posted on September 25 2018 / in Tips
best option would be to use cpanel option if avaialble recommandation Install brew brew install certbot use this command certbot --apache -d yourdomain.com this might also work sudo certbot certonly --manual create the file requested
Posted on September 21 2018 / in Javascript, Tutorial
The only solution I found is having this in the return statement of the reducer return { ...state ,[topic_id]:{ ...state[topic_id] ,matches:[ ...state[topic_id].matches ,subticket ] } } ; If there are other solutions, let me know please. The state structure looks like this
Posted on September 11 2018 / in Tips
Go to your project write heroku login then git add . git commit -m "update" git push heroku master
Posted on September 11 2018 / in Tips
Disable for specific page add this on top of the file /* eslint-disable */ Disable for whole project Create a file named .eslintignore and enter **/*
Posted on September 5 2018
Write this error_reporting(E_ALL); ini_set('display_startup_errors', 1); ini_set('display_errors', 1);
Posted on September 4 2018 / in Tutorials
add –save after npm install command npm install gulp-sass --save alternativelly make it always save npm config save=true