Write this error_reporting(E_ALL); ini_set('display_startup_errors', 1); ini_set('display_errors', 1);
Tips and tricks
add –save after npm install command npm install gulp-sass --save alternativelly make it always save npm config save=true
In your command prompt / powershell enter git config --global core.autocrlf false if you are getting errors when cloning git products in PHPSTORM
Install community edition here Install custom – location C:\mongodb Go create C:\data\db folder Go to C:\mongodb in command prompt Run mongod open another cmd.exe and run mongo Access http://localhost:27017/ to check
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; }