Showing posts with label lists. Show all posts
Showing posts with label lists. Show all posts

Thursday, August 27, 2015

How to Create a Test Certificate


Highlight the project name in the 'Solution Explorer' in the Visual Studio workspace.
Click the 'Project' menu at the top of the window and select 'Properties.' This opens a window that lists project designer properties.
Click the 'Signing' tab.
Click the 'Create Test Certificate' button.
Enter a password for the certificate. This step is optional. If you do not enter a password, the certificate is created with no password encryption.
Click 'Ok.'
Confirm the password and click 'Ok.' If you entered a password in step 5, a window prompts you to confirm the password selection.
VPS Hosting

Saturday, August 22, 2015

How to Install IIS Admin Service (8 Steps)


Click the 'Start' button and select 'Settings.'
Double click the 'Control Panel' icon.
Double click the 'Add/Remove Programs' icon. This opens a window that lists the currently installed software.
Click 'Add/Remove Windows Components.' This opens a screen with all the current internal operating system software.
Click 'Internet Information Services.' This opens the installation wizard.
Click the 'Next' button. The installation begins. It should take only take a few minutes to install IIS.
Click the 'Finish' button. This closes the wizard window.
Click the 'OK' button. This closes the 'Add/Remove Programs' window.
VPS Hosting

Thursday, August 20, 2015

How to Disable Sites in Apache 2


Verify that the site is still enabled. From the Ubuntu Linux command line, issue the following commands:cd \etc\apache2\sites-enabledlsThe first command switches the working directory to the 'sites-enabled' sub-directory. The second command lists the files in the directory. If there is a file for the site you want to disable, continue with Step 2. If not, the site already is disabled.
Issue the following commands at the Ubuntu command prompt:cd (changes to your home directory)sudo a2dissite sitename (where 'sitename' is the name of the site you want to disable) This command removes 'sitename' from the /etc/apache2/sites-available sub-directory.
Verify that the site has been removed from the list of enabled sites with the following command:ls /etc/apache2/sites-enabledYour site should not appear in the sub-directory listing.
Restart the Apache 2 Web server with the following command:sudo /etc/init.d/apache2 restartThis causes Apache 2 to stop listening for requests for the disabled site.
Start a browser session and attempt to navigate to the site. If your site is disabled, you should get a 'Not Found' message on a default error page.
VPS Hosting

How to Get Rid of Viruses on a Website (5 Steps)


Check that your anti-virus and anti-spyware software is up to date. Run a system scan if you receive an alert while browsing your website. Delete any spyware or virus traces from your computer and do not load the website in any browser (Internet Explorer, Firefox, or Chrome) until the malicious code is cleaned out.
Login to your website's control panel and click on File Manager. Select 'Show hidden files' and click on public_html (or root on some systems). Allow for file and folder lists to update and look for the .htaccess file inside of your public_html folder. Click on .htaccess and select 'Edit' or 'HTML Editor.' Browse the file once a new window opens up, and look for any malicious redirect code or HTML code that indicates an
. Delete those codes and save .htaccess file.Use the alternative method of uploading a blank .htaccess file to public_html. Open up Notepad as a new document. Click on 'Save as' and select 'All files' under 'Save as type.' Type in .htaccess as File Name and click on 'Save.' Upload the new file and select 'Overwrite' when prompted.
Download all HTML and PHP files from public_html to your computer. Create a folder on the Desktop named 'Website' and use the Download feature on your FTP program to move the files from public_html to the newly created folder. Open up files such as index.php or index.html in Notepad, by right clicking and selecting 'Open With' and 'Notepad.' Look for malicious code that starts with
,
or any
tags. Delete the entire line of code and save the file. Upload cleaned out files back to your public_html using an FTP program and select 'Overwrite' when prompted.
Delete any free scripts from your HTML pages, especially counters, guestbooks and any widgets. Free scripts can contain virus coding and redirects, as well as sponsored pop-ups that can be falsely read as viruses by your anti-virus program.
Update all scripts and programs that are installed on your website. Go back to the website's control panel and click on 'Site Software.' Check if there is anything listed as 'Installed.' Select 'Update' on the right hand side and follow instructions. Go back to main menu and click on 'Fantastico DeLuxe' (if available) and repeat the same procedure. Manually upgrade any scripts that have been installed through an FTP program by you directly. Download the updated version or patches from the developer site and update according to directions.
VPS Hosting