My garrys mod isnt working, so im going to have to reinstall it, but i do not know how?

my garrys mod isnt working, so im going to have to reinstall it, but i do not know how?

10.5 - 10.6 installation instructions (wipe and installmethod)
Make certain you have backed up your vital data ontoanother drive or cd/dvd's before proceeding.
Disconnect all other drives, hold c and boot offthe 10.5 disk that came with your computer (free iLife included), andselect Disk Utility from the Utilities menu, selecting your internaldrive,Erase> Format HFS+ Journaled > Security Option > ZeroAll Data >Ok (wait for a  hour or so)
When it's finished, Quit Disk Utility and your back into the OS XInstaller, install OS X 10.5 (Leopard)
Once that's finished, reboot and do the setup like a new machine.
When that's done and your in, stick in the OS X 10.6 disk and runthe installer to upgrade you to 10.6 Snow Leopard.
When that's done, do a Software update. We are at 10.6.8 now.
(note: if you don't have the 10.5 disk that came with yourcomputer, then repeat steps above with the 10.6 disk. Retail OS Xdisks you don't get the free iLife, it's a separate purchase. iLifecomes free on 10.4, 10.5 and 10.6 install disks that come with thecomputer only.)
Additional new machine setup stuff:
Install and update your Flash here
http://get.adobe.com/flashplayer/
Install Perian
http://perian.org/
Install the Unarchiver
http://wakaba.c3.cx/s/apps/unarchiver.html
Flip for Mac
http://www.telestream.net/flip4mac-wmv/overview.htm
VLC
http://www.videolan.org/
Easy Find
http://www.devon-technologies.com/download/index.html
OnyX (maintenance, cleanup, repair utility)
http://www.titanium.free.fr/
Clone your new pristine boot drive to a equal size or largerpowered external Firewire 800/400/USB expressively for this purpose(nothing else) using the free Carbon Copy Cloner, it's holdoption bootable (only on your year/model of Mac), will saveyour bacon if your hard drive dies. It can be scheduled to updateyour clone which takes less time than a full clone.. Always DiskUtility >Repair Permissions on all drives after a clone.
http://www.bombich.com/
(note: OS X Lion users will have to wait and confirm third partysoftware is ready for OS X 10.7 "Lion" and get theappropriate updates before using)

Similar Messages

  • I have created a working php contact file but I do not know how get it onto my website properly

    Hi,
    I don't know if this a big job or too complicated for me, but I thought I would ask anyway.
    I have a contact page www.bristolequestrianservices.co.uk/contactus.html which has never ever actually worked.  I have now spend ages and ages doing a new contact page, contact.php, and this one now works perfectly.
    My problem is now I don't know how to put it all together if that makes sense.  My contactus.html has all my other things ie, header, topnav and everything like that but the contact php is just a contact page.
    Hope all of this makes sense and don't know if anyone has the time to help me with this as I think it's most probably too much!  I'm so close but so far!
    Thanks in anticipation

    Below is the entire contact.php page. Just reinstate your email address where the XXXXXXXXXX are (I don't post email address in the forum because of spam issues.)
    I have not had chance to entirely style the form but it's near. The form css is in the page. You can move it out and into its own stylesheet. You will now have to change your contact page links in your other pages from contact.html to contact.php
    Its a lot of <divs> for a simple form. This all could have been produced with 50% less code.
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'Form submission';
    // Set required fields
    $required_fields = array('fullname','email','comment');
    // set error messages
    $error_messages = array(
    'fullname' => 'Please enter a Name to proceed.',
    'email' => 'Please enter a valid Email Address to continue.',
    'comment' => 'Please enter your Message to continue.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
    // Sanitise POST array
    foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
    // Loop into required fields and make sure they match our needs
    foreach($required_fields as $field) {
    // the field has been submitted?
    if(!array_key_exists($field, $_POST)) array_push($validation, $field);
    // check there is information in the field?
    if($_POST[$field] == '') array_push($validation, $field);
    // validate the email address supplied
    if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
    // basic validation result
    if(count($validation) == 0) {
    // Prepare our content string
    $email_content = 'New Website Comment: ' . "\n\n";
    // simple email content
    foreach($_POST as $key => $value) {
    if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
    // if validation passed ok then send the email
    mail($email_to, $email_subject, $email_content);
    // Update form switch
    $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
    return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
    return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <script type="text/javascript" src="http://www.bristolequestrianservices.co.uk/js/jquery.js"></script>
    <script type="text/javascript" src="http://www.bristolequestrianservices.co.uk/js/timothy.js"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
    <script type="text/javascript"  src="http://www.bristolequestrianservices.co.uk/contact/validation/validation.js"></script>
    <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
    var emailError = '<?php echo $error_messages['email']; ?>';
    var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    </script>
    <script>
    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    ga('create', 'UA-47829305-1', 'bristolequestrianservices.co.uk');
    ga('send', 'pageview');
    </script>
    <link href="http://www.bristolequestrianservices.co.uk/css/styles.css" rel="stylesheet" type="text/css" media="screen">
    <link href="http://www.bristolequestrianservices.co.uk/css/print.css" rel="stylesheet" type="text/css" media="print">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Type" content="cache" />
    <meta name="robots" content="INDEX,FOLLOW" />
    <meta name="keywords" content="mobile field shelter,mobile stables,good quality,prices,cheap,shelters, shelter, stables, stables, mobile filed shelters, mobile stable, " />
    <meta name="description" content="Quality mobile stables and field shelters, we will not be beaten on price for this quality" />
    <title>Mobile Field Shelters | Mobile Stables | Bristol Equestrian Services</title>
    <!-- Google Analytics Code Goes Below Here -->
    <meta name="google-site-verification" content="zUg_yn4KVoI6Xy8LLvw0PjtwgXPmlQVNKb3tY001yp4" />
    <!-- End Google Analytics Code -->
    <style>
    #formWrap {
        width:648px;
        margin-top: 0px;
        margin-left: 0px;
        background:#fff;
        border:1px solid #F1F1F1;
        -moz-border-radius:20px;
        -moz-box-shadow:2px 2px 5px #999;
        -webkit-border-radius:20px;
        -webkit-box-shadow:2px 2px 5px #999;
        padding: 0;
    #formWrap #form {
        border-top:1px solid #EEE;
        width:648px;
    #formWrap #form .row {
        border-bottom:1px dotted #EEE;
        display:block;
        line-height:38px;
        overflow:auto;
        padding: 10px 0px;
        width:100%;  
    #form .row .label {
        font-size:16px;
        font-weight:bold;
        font-family:Arial, Helvetica, sans-serif;
        width:180px;
        padding-right:10px;
        margin-right:10px;
    #form .row .input {
        float:left;
        margin-right:10px;
        width:auto;
    /* width:auto;*/
    width: 455px;
    #form .row .input2 {
        float:left;
        margin-right:10px;
        width:auto;
    /* width:auto;*/
    width:455px;
    .detail {
        width:455px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 14px;
        padding: 10px 8px;
        margin:0px;
        display:block;
        border-radius:5px 5px 5px 5px;
        background:#e9e9e9;
        border:1px solid #ccc;
    .mess {
        width:455px;
        max-width:450px;
        height:280px;
        overflow:auto;
        font-family:Arial, Helvetica, sans-serif;
        font-size:14px;
        padding:7px 8px;
        line-height:1em;
        margin:0px;
        display:block;
        border-radius:5px 5px 5px 5px;
        background:#e9e9e9;
        border:1px solid #ccc;
    .detail:focus {
        background-color:#fff;
        border:1px solid #999;
        outline:none;
    .detail:mess {
        background-color:#fff;
        border:1px solid #999;
        outline:none;
    #form .row .context {
        color:#999;
        font-size:11px;
        font-style:italic;
        line-height:14px;
        font-family:Arial, Helvetica, sans-serif;
        width:200px;
        float:left;
    #form #submit {
        font-family:Arial, Helvetica, sans-serif;
        margin: 25px 0 0 0;
        color:#000;
        font-size:16px;
        text-shadow:1px 1px 1px #999;
        padding:10px;
    span.error{
        color:#000;  
        display:block;
        font-family:Arial, Helvetica, sans-serif;
        font-size:12px;
        background-image:url(http://www.bristolequestrianservices.co.uk/contact/images/x.png);
        background-repeat:no-repeat;
        background-position: 10px center;
        padding-left: 10%;
        width: 90%;
    #formWrap h2 {
        font-family:Arial, Helvetica, sans-serif;
        font-size: 26px;
        font-weight: normal;
        color:#255e67;
        margin: 25px 0 0 20px;
    </style>
    </head>
    <body>
    <div id="outer">
    <div id="wrapper">
    <div id="header">
    <div id="companyLogo">
    <img src="http://www.bristolequestrianservices.co.uk/images/logo4.jpg" alt="americanbarn" width="182" height="110" /><img src="http://www.bristolequestrianservices.co.uk/images/banner1.jpg" alt="horsebanner" width="302" height="84" />
    </div> <!-- end logo-->
    <div id="contact">
    <span class="phone">Tel: 07800538607 | 07920408396<br></span>
    <span class="email">Email: [email protected]</span>
    </div>
    </div>
    <!-- end header -->    
    <div id="topnav">
    <ul>
    <li><a href="index.html">Home</a></li>
    <li><a href="stables.html">Stables</a></li>
    <li><a href="shelters.html">Shelters</a></li>
    <li><a href="gallery.html">Gallery</a></li>
    <li><a href="pricelist.html">Price List</a></li>
    <li><a href="usefullinks.html">Useful Links</a></li>
    <li><a href="contactus.php">Contact Us</a></li>
    </ul>      
    </div>
    <img src="http://www.bristolequestrianservices.co.uk/images/photos/lisa1.jpg">
    <img src="http://www.bristolequestrianservices.co.uk/images/photos/me.jpg">       
    <div id="content">
    <h1>Contact Us</h1>
    <p><span class="big-blue">DUE TO A TECHNICAL ISSUE WITH THE CONTACT FORM PLEASE CONTACT US ON [email protected]</span><p>When contacting us please give us as much details as you can. If you want a quote for delivery please submit your post code. We will endeavour to respond to all emails within a few hours.</p>
    <p>Office opening hours: Monday to Friday 7.30am-6pm</p>
    <p>Saturday 8am-5pm</p>
    <p>Sunday CLOSED</p>
    <div id="formWrap">
    <h2>We Appreciate Your Feedback</h2>
    <div id="form">
    <?php if($form_complete === FALSE): ?>
    <form action="contact.php" method="post" id="comments_form">
    <div class="row">
    <div class="label">Your Name</div> <!--end .label -->
    <div class="input">
    <input type="text" id="fullname" class="detail" name="fullname" value="<?php echo isset($_POST['fullname'])? $_POST['fullname'] : ''; ?>" /><?php if(in_array('fullname', $validation)): ?><span class="error"><?php echo $error_messages['fullname']; ?></span><?php endif; ?>
    </div><!-- end .input -->
    </div><!-- end .row -->
    <div class="row">
    <div class="label">Your Email Address</div> <!--end .label -->
    <div class="input">
    <input type="text" id="email" class="detail" name="email" value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>" /><?php if(in_array('email', $validation)): ?><span class="error"><?php echo $error_messages['email']; ?></span><?php endif; ?>
    </div><!-- end .input -->
    </div><!-- end .row -->
    <div class="row">
    <div class="label">Your Message</div> <!--end .label -->
    <div class="input2">
    <textarea id="comment" name="comment"  class="mess"><?php echo isset($_POST['comment'])? $_POST['comment'] : ''; ?>
    </textarea><?php if(in_array('comment', $validation)): ?><span class="error"><?php echo $error_messages['comment']; ?></span><?php endif; ?>
    </div><!-- end .input -->
    </div><!-- end .row -->
    <input type="submit" id="submit" name="submit" value="Send Message" />
    </form>
    <?php else: ?>
    <p style="font-size:35px; font-family:Arial, Helvetica, sans-serif; color:#255e67; margin-left:25px;">Thank you for your Message!</p>
    <script type="text/javascript">
    setTimeout('ourRedirect()', 5000)
    function ourRedirect () {
    location.href='index.html'
    </script>
    <?php endif; ?></div><!-- end #form-->
    </div><!-- end formWrap div -->
    </div>
    <div id="rightside">
    <h2>Latest News</h2>
    <p><a href="latestdesign.html">Our Latest Design</a></p>
    <p><a href="newpictures.html">New Pictures Added</a></p>
    <p><a href="testimonials.html">New Testimonials</a></p><br>
    <h4>View Gallery</h4><br>
    <img src="http://www.bristolequestrianservices.co.uk/images/buttons/viewgallery.jpg" /><br>
    <br><h4>Follow Us</h4><br>
    <div id="social-media-icons2">
    <ul>
    <li><a href="https://www.facebook.com/groups/150449201771804/"><img src="http://www.bristolequestrianservices.co.uk/images/icons/facebook.jpg" /></a></li>
    <li><a href="£"><img src="http://www.bristolequestrianservices.co.uk/images/icons/rss.jpg" /></a></li>
    <li><a href="http://www.twitter.com"><img src="http://www.bristolequestrianservices.co.uk/images/icons/twitter.jpg" /></a></li>
    <li><img src="http://www.bristolequestrianservices.co.uk/images/icons/youtube.jpg" /></li>
    </ul>
    </div>
    </div>
    <div id="rightside-bottom">
    <div id="footer">
    <p class="footer-text">Copyright 2014 Bristol Equestrian Services</p>
    </div>
    </div>
    </body>
    </html>

  • I had to reset my iPad to get it working and I lost all of my stored notes on the Notes app.  I had Notes backed up in iCloud, but I do not know how to retrieve the backed up notes in iCloud to get them to be stored on my iPad again.  What do I do?

    I need help retreiving my notes from the Notes app in the iCLoud because I had to reset my iPad to get it working after i uploaded the latest version of IOS7.  Can someone help me? 

    Hey ebe301,
    Sorry to hear about your troubles with your PC. If you are not seeing your iPhone on your computer, then take a look at the link below to walk you through getting that working again. It will have you verify that drivers are installed and working as well as any third party software that may be causing conflicts. 
    iPhone, iPad, or iPod not recognized in iTunes for Windows
    https://support.apple.com/en-us/HT204095
    Take care,
    -Norm G.  

  • Have downloaded christmas screensaver but I don't know how to get it to work!  Any help would be appreciated, I have an IMac desktop and not so computer smart  Thanks

    I have downloaded a Christmas screensaver and now cannot get it to the screensaver section.  I have it on the downloads but now under preference the desktop will come up but not the screensaver  says some kind of error , says it quit unexpectedly may be the flash player.  I have IMAC desktop 10.5.8  OSX and not to computer smart.  Can anyone help?  Thank you so much

    Hi Jerry, do you have a link to that one?
    Can you paste the exact error in a reply?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • I cannot get Firefox to come up on my iPad at all. It is synced and I am registered but I do not know how to get it to work

    I have the Mozilla icon but when I tap it it is just how to use Firefox home. I want Firefox as my browser and have safari and can't get Mozilla up

    The Firefox Home app for iOS is not the Firefox browser but rather for to synce with your desktop Firefox to have your Firefox desktop history, bookmarks and open tabs on your iPhone/iPad.
    http://www.mozilla.org/en-US/mobile/home/
    http://www.mozilla.org/en-US/mobile/home/faq/
    https://wiki.mozilla.org/Mobile/Platforms#Other_Platforms
    iPhone/iPad/iPod
    We have no plans to release the full Firefox browser for iOS. The iOS SDK agreement requires apps to use Apple's own JavaScript engine (or none at all, like Opera Mini which downloads pre-rendered pages from Opera's servers and cannot run JavaScript code in the client). Because of this, we have no supported way to distribute Firefox's rendering and JavaScript engine to iPhone users.

  • Hi I am running firefox, as I could not get on with IE9 at home. But I need to install active X remote desktop to enable me to do work from home. I have downloaded the application, but it is not being seen in my browser. Any ideas how to resolve?

    Please help?

    Firefox does not support ActiveX technology:
    http://support.mozilla.com/en-US/kb/ActiveX
    https://support.mozilla.com/en-us/questions/692062
    https://support.mozilla.com/en-us/questions/682975
    thank you

  • My product just stoped working on me. i need to delete and and re-download but i do not know how to re-download.

    i need to re-download my product but i don't know how. since i downloaded it on-line

    Assuming you're using CC you'll need to go to the Creative Cloud App and click on "apps" There you'll see all the apps installed on your system. If you hover over any of them, you'll see a little down arrow and in that dropdown there is an "uninstall" feature. Run that. Then using the same creative cloud app, go back to "apps" and you'll see the programs that are available to download in the list below. Redownload it from there. This is the method on OS X so might be a little different on Windows if you're using that. Typically you'll find the Creative Cloud icon at the top of your screen on OS X.

  • Netcfg v2 works - but I do not know how to do this things

    Hello,
    I just succesfully installed netcfg v2. I can connect to the wireless network using
    netcfg2 home
    But I do not know how to do the following thins:
    It is mentioned in the wiki, but I do not get what exactly I have to do for this.
    I have 2 configuration: Home and Uni
    - Can the startup script detect which Networks are available and connect to the available one?
    - When I connect to the "Uni" configuration, I need to start vpnc afterwards. Can I somehow automate this?
    Thanks!
    Nathan

    netcfg2 can do 'dumb' detection on boot. Set SCAN="on" in both profiles, and put the profiles in your rc.conf NETWORKS=() line.
    It'll check if each network is available, then connect if it is.
    There's also an autodetect script in the netcfg2 source, look in the contrib dir in the tarball or git.
    James

  • HT201263 my ipod touch 4th gen isnt work after a long time with 0 percent battery power.Then its not working. computer doesnt respond to my ipod .only black screen is appearing it even not wake up after reset it what can i do please help me

    my ipod touch 4th gen isnt work after a long time with 0 percent battery power.Then its not working. computer doesnt respond to my ipod .only black screen is appearing it even not wake up after reset it what can i do please help me

    After being connected to a charging source overnight try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar

  • I delete an individual message but the time I received the message is still showing next to the persons name in my inbox instead of going back into the correct date/time order. Anyone know how to fix this?

    I delete an individual message but the time I received the message is still showing next to the persons name in my inbox instead of going back into the correct date/time order. Anyone know how to fix this?

    SOLUTION
    Open "terminal" on your mac and type the following:
    defaults write com.apple.mail IgnoreSortOrderWhenSelectingAfterDelete 1
    (copy and past the whole line)
    This will stop that behaviour in mail. 
    It works on most opperating systems.
    mine is.
    Mac OSx 10.7.2 Lion
    Cheers

  • Suddenly, Google isn't working on Safari, I have switched to Bing, but would like to know what happened?

    Google has stopped working on Safari. Mysterious just grinds away with zero results. Have switched to Bing but would like to know what is going on.

    This is an easy solution but it doesn't help all users For those who tried it without a success, please refer to the following thread for more suggestions:
    http://discussions.apple.com/thread.jspa?threadID=1921644&tstart=45

  • My home button is stuck so it cant work and when i am in the safari or app stire i dont know how to go back

    My home button is stuck so it cant work and when i am in the safari or app stire i dont know how to go back does anybody know how to get it un stuck?

    a temporary fix is to hold down the power button until you see a bar that says "slide to power off". slide the bar and wait about 2 minutes+then holding the power button when screen goes blank for around a minute? your device should now turn back on. you will be at the home menu.
    now to know how to fix the problem instead of avoiding it i am not sure. hope this temporarily fixed your problem
    is your device still in a 1 year warranty?

  • I have updated to snow leopard and I cannot get iPhoto to work or find anywhere to download the appropriate  version.  I have 8.1.2 but it will not open

    I have updated to snow leopard and I cannot get iPhoto to work or find anywhere to download the appropriate  version.  I have 8.1.2 but it will not open.  What do I need to do?

    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library database
    LN

  • On my iPad I have a working icloud that I have complete access to, but on my iPhone it keeps asking me for the password for it, but I do not know it! And the email that I used is not activated anymore! How do I delete the icloud account on my phone?

    On my iPad I have a working icloud that I have complete access to, but on my iPhone it keeps asking me for the password for it, but I do not know it! And the email that I used is not activated anymore! How do I delete the icloud account on my phone?

    Hi Aurion23,
    If you intend to keep using iCloud on your iPad, your best course of action would be to update your Apple ID/iCloud information so that you have a known password and it is associated with an active email address. You may find the following articles helpful:
    iCloud: Change your iCloud password
    http://support.apple.com/kb/ph2617
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/ht5621
    Regards,
    - Brenden

  • Ipad i have load swf file but swf  is not working proper(flex 4.6) but android is fine to work how

    ipad i have load swf file but swf  is not working proper(flex 4.6) but android is fine to work how

    On the MBP, in iTunes, switch to Song view and enable the iCloud Status column by pulling down View > View options and selecting the option for "iCloud Status." Close the small window. Look for any tracks that have a status of "waiting." If you see several of them disable iTunes Match while holding down the Option key. Quit iTunes, wait a few seconds, then open it again and turn iTM back on. Let it compelete the scan. Wait until all tracks that are "waiting" have a status of either "matched" or "uploaded."
    On the iPad, turn off iTunes Match then launch the Music app and let the contents clear out. Power cycle the iPad for good measure, then re-enable the service once all the tracks in iTunes have been processed.

Maybe you are looking for