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
ARCHIVE
Tips
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 4 2018 / in Tips
In your command prompt / powershell enter git config --global core.autocrlf false if you are getting errors when cloning git products in PHPSTORM
Posted on August 1 2018 / in Javascript, Tips
Go to the text editor ( where you can input html content ) and input: <script>setInterval(function(){ if(window.jQuery){ jQuery(window).trigger('resize'); } },3000);</script>
This is the code function sanitize_youtube_url_to_id($arg){ if(strpos($arg,'youtube.com/embed')!==false){ $auxa = explode('/','youtube.com/embed/'); if($auxa[1]){ return $auxa[1]; } } if(strpos($arg,'youtube.com')!==false || strpos($arg,'youtu.be')!==false ){ if(DZSHelpers::get_query_arg($arg,'v')){ return DZSHelpers::get_query_arg($arg,'v'); } if(strpos($arg,'youtu.be')!==false){ $auxa = explode('/','youtube.com/embed/'); $arg = $auxa[count($auxa)-1]; } } return arg; }
Posted on May 23 2018 / in Tips
Just use this in SQL update dzsap set site_url = REPLACE(site_url, 'wwww.', '')
Recent Comments