Posts

Showing posts from September, 2017

How to Fix “This App Can’t Open” Error in Windows 10

Solution 1. Run Windows Store Apps Troubleshooter Once you receive the “This App Can’t Open” error message, one of the effective resolutions is to run the Windows Store Apps Troubleshooter, which could scan your system and detect the issues that might be preventing any Windows Store apps from working correctly. To run the Windows Store Apps Troubleshooter, take the following steps: Step 1. Click the Start menu, and then type troubleshooting in the search field Step 2. Select Troubleshooting to open the Troubleshooting window Step 3. Click View All Step 4. Click Windows Store Apps from the listed results to open it Step 5. Click on the Advanced link Step 6. Check the Apply repairs automatically check box and then click Next Step 7. Follow the on-screen instructions to complete the troubleshooting process Solution 2. Change UAC Settings Step 1. Open Control Panel Step 2. Tap or click on the System and Security link Step 3. Click Security and Maintenance to open it Step 4. Click Change Us...

How to Redirect WordPress 404 Errors to your Homepage or Specific Page

Using .htaccess One way to redirect 404 pages is to handle them via .htaccess instead of PHP. This has the advantage of being a little more resource friendly on the server since it’s being handled right at the very top. In order to do this, simply add the following line to your .htaccess page: ErrorDocument 404 /index.php “index.php” is the default WordPress page for most installations which will direct us to the homepage of the blog. While this accomplishes the redirect, it does nothing for our other requirements – namely sending an email along with the URL that was not found. Of course, we can always check our server logs periodically for 404 errors, but that’s not a scalable way of doing things. Unless you get a huge number of “not found” errors every day, it’s best to opt for a PHP solution so you can take corrective measures. Not to mention you may not even have write permissions to .htaccess in the first place. Redirecting 404 through PHP To intercept 404 pages on your WordPress ...

Background image auto resize CSS

Perfect Full Page Background-image Fills entire page with image, no white space html {    background: url(images/bg.jpg) no-repeat center center fixed;    -webkit-background-size: cover;   -moz-background-size: cover;   -o-background-size: cover;   background-size: cover; } Works in: Safari 3+ IE 9+ Opera 10+ (Opera 9.5 supported background-size but not the keywords) Firefox 3.6+ (Firefox 4 supports non-vendor prefixed version) Chrome Whatever+

Change Maximum execution time in phpMyadmin

For Xampp version on Windows Add this line to xampp\phpmyadmin\config.inc.php $cfg['ExecTimeLimit'] = 6000; And Change xampp\php\php.ini to post_max_size = 750M upload_max_filesize = 750M max_execution_time = 5000 max_input_time = 5000 memory_limit = 1000M And change xampp\mysql\bin\my.ini max_allowed_packet = 200M