Pages

Sunday, May 31, 2020

could not get any response error in Postman



Firewall issues: Some firewalls are designed to square non-program associations – check with your system administrators.

Intermediary setup: If you're utilizing an intermediary server to cause demands, to guarantee that it's arranged effectively. Mailman will utilize the framework intermediary naturally – custom intermediary information can likewise be included if it's required for explicit solicitations or spaces. You can see more data about the intermediary server utilizing the Postman reassure.

SSL endorsement issues: If you're utilizing HTTPS associations, you can kill SSL confirmation under Postman settings. On the off chance that that doesn't resolve the issue, your server might be utilizing a customer side SSL association which you can arrange under Postman Settings. Check the Postman Console to guarantee that the right SSL authentication is being sent to the server.

Customer authentication issues: The server may require customer endorsements. You can resolve this by including a customer testament under Postman Settings.

Erroneous solicitation URLs: If your solicitation incorporates factors, ensure that they're characterized in your condition or globals. Uncertain solicitation factors can bring about invalid server addresses.

Off base convention: Make sure that you're not unintentionally utilizing 'https//' rather than 'http://' (or the other way around) in your URL. 

Invalid Postman conduct: It's conceivable that Postman could be making invalid solicitations to your server. Check your server logs (if accessible) to affirm if so.

Extremely short breaks: If you arrange a short break in Postman, the solicitation may break before culmination. Have a go at expanding the break to stay away from this issue as well as set it to zero (0) for endlessness

Invalid reactions: if your server sends mistaken reaction encoding blunders or invalid headers, Postman won't have the option to decipher the reaction.

Also, obviously, on the off chance that you run into issues that you can't resolve, make certain to document an issue on our GitHub issue tracker.

Saturday, May 30, 2020

How to Take a Screenshot and Display a clipboard

If you want to capture ans save a picture of your entire screen, the easiest way
is to ht the Window Key + Print Screen Key, and that picture will be saved to
the Picture > Screenshot folder.


To capture just one part of your screen, hot the Windows key + Shift + s to open
a tool called Spin & Sketch, which allows you to click and drag to create a
 screenshot, which is saved to your Clipboard.

Wednesday, March 21, 2018

How To Dump and Restore MySQL Databases using Windows Command Prompt

Hello Friend's,
Today, We learn how to Dump & Restore Mysql Database using command prompt.
Now Follow the step by step
Step 1:-Press win key + R and type cmd then press Enter key
Step 2:-Open the Command Propmt
Step 3:-Set temporary mysql path to the windows variables
           set path=C:\wamp\bin\mysql\mysql5.6.17\bin
         Press Enter Key
Step 4:-After set the location of mysql to the windows variables.You should to check mysql                            command type mysql on command propmt then press Enter key
Step 5:-After That go the path where you want save mysql dump database file
             Example : D:\database\

Step 5:-After That Export/Dump mysql database type the command
           mysqldump -u  username -p dbname > filename.sql
           Example: D:\databas>mysqldump -u root -p drive > drivenew.sql
           Then press Enter Key
Step 6:-Now you will notice in D:\database a sql file created of name drivenew.sql
Step 7:-After that you need to first connect mysql to the cmd using syntax
            mysql -u root -p
          Then press Enter key
Step 8:-After that you need to restore into new database then you need to first create new database
            Syntax:
            create database filebloom;
Step 9:-Now You can restore your database using syntax
             mysql -u username -p dbname < filename.sql;
            Example:D:\database>mysql -u root -p filebloom < drivenew.sql;

           
Thanks For visit my blog, I hope this post is useful many people.