Showing posts with label Issue. Show all posts
Showing posts with label Issue. Show all posts

Tuesday, August 25, 2015

How to Organize a Purse Party


Establish guidelines for your party. Set a value range for the purses traded at your party to ensure no one arrives with a couture handbag only to leave with a retail store purse. You may also choose to set basic style parameters such as business appropriate bags only or no clutch bags allowed.
Issue invitations stating the date and time of your party to friends and family members who would enjoy a fun handbag swap. Include a list of any guidelines you have set for your party. Your invitations can be issued by email or postal mail for more formal parties Telephone calls are sufficient when you are hosting a casual party for close acquaintances.
Prepare for your party by purchasing snacks and beverages to serve to your guests. Pick a couple of low-maintenance party games for you and your guests to play if conversation happens to dwindle.
Set up a display area for guests to place their handbag trades upon arrival. Arrange your seating in a semi-circle to allow guests easy viewing of all potential trades and to allow each guests the opportunity to show off the bag they brought.
Let your guests determine if they want to assign handbags based on a random number drawing for each handbag or a random number drawing that lets guests pick their favorite handbags in order based on how low their number is. Your party can also use an alternate pick and choose method if your guests prefer.
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