Apache and postgresql boot script

Hi fellas,
I do the apache and pgsql installation by tarball, but i dont have the boot script of these services. Anyone have it?

Just snag them out of cvs.
apache:
http://cvs.archlinux.org/cgi-bin/viewcv … ns/apache/
postgres:
http://cvs.archlinux.org/cgi-bin/viewcv … ostgresql/

Similar Messages

  • Apache and My SQL won't start when server starts, error in /var/log

    OS X Server 10.4.6
    Everything looks OK, but when I restart the server, Apache does not restart.
    The var/log/system contains the following line:
    SystemStarter[965]: Apache web server (1002) did not complete successfully
    /etc/hostconfig contains the following lines:
    MYSQL=-YES-
    WEBSERVER=-YES-
    What is the standard OS X boot sequence that should start it? i.e. what script gets executed during boot?
    If I start by hand (Server Admin), it runs fine.
    _mike

    Check /var/log/httpd/error_log after a restart, it will probably have more info about what went wrong with Apache.
    Both Apache and MySQL use startupitem scripts located in /System/Library/StartupItems.
    The fact that they start up fine manually, several seconds later, probably means that some prerequisite isn't quite ready when they try to start. A quick kludge that will quite probably work would be to put like a 10 second delay in their scripts with the following line at the top of the StartService section:
    sleep 10
    Roger

  • Can't get suexec to work with apache and php

    I want to enable php scripts to be executed by a php process that runs as the same user as the owner of the site.  In my case I am just using userdir so anything under /home/username/public_html should be run as username.  I have mod_suexec.so loaded in my httpd.conf file.  In the apache docs it says that:
    User directories:
    Requests that are processed by mod_userdir will call the suEXEC wrapper to execute CGI programs under the userid of the requested user directory. The only requirement needed for this feature to work is for CGI execution to be enabled for the user and that the script must meet the scrutiny of the security checks above. See also the --with-suexec-userdir compile time option.
    I think my file meets the security checks it mentions which are listed on the site: http://httpd.apache.org/docs/2.0/suexec.html  So that makes me wonder about CGI execution being enabled for my user and how do I modify that.  Is there anything else I need to change to enable it?
    Last edited by nLEyETn (2009-07-05 20:50:33)

    I want to enable php scripts to be executed by a php process that runs as the same user as the owner of the site.  In my case I am just using userdir so anything under /home/username/public_html should be run as username.  I have mod_suexec.so loaded in my httpd.conf file.  In the apache docs it says that:
    User directories:
    Requests that are processed by mod_userdir will call the suEXEC wrapper to execute CGI programs under the userid of the requested user directory. The only requirement needed for this feature to work is for CGI execution to be enabled for the user and that the script must meet the scrutiny of the security checks above. See also the --with-suexec-userdir compile time option.
    I think my file meets the security checks it mentions which are listed on the site: http://httpd.apache.org/docs/2.0/suexec.html  So that makes me wonder about CGI execution being enabled for my user and how do I modify that.  Is there anything else I need to change to enable it?
    Last edited by nLEyETn (2009-07-05 20:50:33)

  • Need Urgent Help with Apache and PHP

    I have been struggling with apache and php for a week now and I finally broke down to post a message.
    I have apache 1.3 running on my mac mini g4 with 10.4.9 and I installed sql. I went to the entropy website and downloaded php5 to install without knowing I already had php4 on the machine. I installed 5 but could not get it to work. I then went back to httpd.conf and tried to install php4 by uncommenting out the loadmodule and addmodule lines. I restarted apache but php still did not work. I tested the phpinfo.php script but all I got was the script in Safari and not the actual page. At the moment, I have php4 and php5 on my machine but can't get either one to work. I am sure there is an easy fix but I don't know it. Please help.

    The problem is not terribly complicated, but Apache will not start with the entropy file in the folder
    /etc/httpd/users/
    Let me experiment on you. Rename the entropy file and then try to start Apache. To do this, open Terminal and paste this command:
    <pre>sudo mv /etc/httpd/users/+entropy.conf /etc/httpd/users/+entropy<pre>
    Now check the Apache configuration:
    <pre>apachectl configtest<pre>
    If it says "Syntax OK", start Apache:
    <pre>sudo apachectl start<pre>
    Since we only disabled the entropy file, you should be able to enable PHP5 with some more advanced configuring.

  • Howto - Using apache and mod_php4

    This is a quick tutorial on how to use the apache web server with the php module.  I am by no means an expert, so if you have any questions/suggestion, please feel free.  That being said, let's get started:
    1.  Install apache and php:
    [root@limbo root]# pacman -Sy apache
    [root@limbo root]# pacman -Sy php
    2.  First, ensure that you have the apache web server running properly, and can serve up simple HTML documents:
    [root@limbo phpbb]# /etc/rc.d/httpd start
    [ Starting HTTP Daemon DONE ]
    Now, point your browser to http://localhost/ and you should see a default Arch web server page.  If not, you must get this working before continuing.
    3.  Now, if the apache web server is working, let's shut it down and work on adding PHP functionality:
    [root@limbo root]# /etc/rc.d/httpd stop
    [ Stopping HTTP Daemon DONE ]
    4.  We must now make changes to the apache config file:
    [root@limbo root]# nano /etc/httpd/conf/httpd.conf
    5.  We must load the PHP module.  Find the LoadModule portion of httpd.conf and add:
    LoadModule php4_module lib/apache/libphp4.so
    and then find the AddModule section and add:
    AddModule mod_php4.c
    6.  To let apache know that files ending in .php are in fact PHP files, we add the following.  It doesn't matter where you put it, but you can search for AddType and pick a plac e you think fits.
    # Added by root for mod_php
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php-source .phps
    7.  And to ensure that .php files are looked at first by apache when looking at directory contents, find the section that looks like what you see below, but notice that I have added index.php for php index files:
    # DirectoryIndex: Name of the file or files to use as a pre-written HTML
    # directory index. Separate multiple entries with spaces.
    <IfModule mod_dir.c>
    DirectoryIndex index.php index.html
    </IfModule>
    8.  Now, change the root apache directory by finding the line containing DocumentRoot and change it to the following (we will create the directory shortly, and place an index.php in there also):
    DocumentRoot "/home/httpd/html/phptest"
    9.  For the final config step, we must tell the Arch init script to load the php module when it starts apache.  All we have to do is edit /etc/conf.d/httpd and add the APACHE_OPTS line:
    HTTPD_USE_SSL="no"
    APACHE_OPTS="-D PHP4"
    10.  Now, create the directory /home/httpd/html/phptest
    11.  Create a plain text file using your favorite text editor.  The file is  /home/httpd/html/phptest/index.php
    The contents of this file should be the following:
    <html>
    <head>
    <title>PHP Test</title>
    </head>
    <body>
    <? phpinfo(); ?>
    </body>
    </html>
    12.  Once running the apache web server, you will notice that Arch sets it up to run as user "nobody".  Therefore, we want "nobody" to own all the files that we are going to use:
    [root@limbo root]# chown -R nobody.nobody /home/httpd/html/*
    [root@limbo root]# chmod -R 744 /home/httpd/html/*
    13.  Finally, start the apache web server again, and point your browser to your http://localhost/   You should now see alot of info, provided dynamically by the PHP module.
    I hope this quick tutorial is useful.  It you see anything wrong with it, or have suggestions, please let me know and I will edit this post.

    seba wrote:
    hi, i cant start apache
    [root@zlk daemons]# /etc/rc.d/httpd start
    [ Starting HTTP Daemon                                                  FAILED ]
    check you /var/log/httpd/error_log
    :^)

  • How to uninstall default Apache and PHP

    I use Lion 10.8.2。Now  i  want to uninstall default Apache and PHP。But i don't how to do it . Because i want to use nginx and update php to 5.4 or new.
    Than you very much.

    2. If I want to retrieve information from the database
    and display the information in the applet, what should
    I do then ?
    You would read the response given by the PHP side and parse it. How this is done depends on how PHP returns the data. It should preferrably be plain text or some other simple format, not HTML.
    Another problem is, when I tried to send a HTTP request, I get an exception :
    access denied ( java.net.SocketPermission "the host name") resolve
    What is that and how do I solve the problem ?What applets are allowed to do is severly restricted because they are loaded and started by a web browser when a user visits a web page without consulting the user. You wouldn't like some site delete all files on your hard drive while you're browsing the web. Opening network connections to servers other than where the applet was originally downloaded from is another thing that is not allowed.
    There are two ways to solve this: put the php script and the applet on the same server, or sign the applet. Signing an applet means assuring the user that the applet won't do anything bad and that it's ok to allow it to do something that would otherwise be forbidden, here's an example:
    http://java.sun.com/security/signExample12/signedPluginEx.html

  • I have downloaded MAMP for Mac and want to use it for working with Wordpress. I had mysql installed before this and would like to uninstall it and use MAMP. It was easy to turn off Apache and PHP but don't know how to uninstall mysql. Please help!!

    I have downloaded MAMP for Mac and want to use it for working with Wordpress. I'm on an Imac with Maverick OS 10.9. I had mysql installed before this and would like to uninstall it and use MAMP. It was easy to turn off Apache and PHP but don't know how to uninstall mysql. Please help!!

    It depends on how you installed it. You have to shutdown the MySQL service first. If you used the standard, but obsolete Startup Item, you can do that with the Startup Item. If you created a launchd script, you can do it with launchctl. Once MySQL is no longer running, you can delete the Startup Item or launchd script and the rest of MySQL.

  • I am having trouble with php and postgresql on OS X 10.7.5

    I have php, postgresql 5.3.23, and apache installed.  However, when I go to my web browser and open the pages things don't work when I try to enter info in the search boxes.  I get this error immediately upon typing something in the search box.
    Fatal error: Call to undefined function pg_pconnect() in /www/Includes/file.php on line 12
    I have installed and configured the php.ini file to reflect extension=pcntl.so and extension=pgsql.so, restarted apache, and still no luck.  I have to be just missing some minor thing that is major in terms of workability.  Can anyone help?

    I have noticed that this error is being recorded in the Apache logs.
    Warning:  PHP Startup: Unable to load dynamic library '/opt/local/lib/php/extensions/pgsql.so' - dlopen(/opt/local/lib/php/extensions/pgsql.so, 9): Library not loaded: /usr/lib/libpq.5.dylib
      Referenced from: /opt/local/lib/php/extensions/pgsql.so
      Reason: image not found in Unknown on line 0
    This has got to be the "missing" piece of my puzzle, but I am having no luck finding what to do about it.  I have tried making a link to the libpq.5.3.dylib with no success.
    Anyone know what I'm doing wrong?

  • Mod_wsgi for Apache and nginx

    Hey guys, new Arch Linux user and maintainer here.  I'm loving it so far.
    Anyhow, I just adopted the mod_wsgi package for Apache, and I'm interested in building one for nginx as well.  However, both upstream tar.gz uses the same name (mod_wsgi).  How should I name the packages for AUR? Just apache-mod-wsgi and nginx-mod-wsgi, or is there some other naming convention for scenarios like this?

    Hi Steve,
    I had the same problem and i have stop trying with abs and downloaded the latest sources. While compiling there exists the same problem. I have solved the problem using the last post of the ubuntu forums link you have specified: http://ubuntuforums.org/showpost.php?p= … ostcount=4
    But after compiling and installing the mod_wsgi i couldn't be able to test the example code given at arch wiki. I took such the following error:
    @Browser
    Server error!
    The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.
    If you think this is a server error, please contact the webmaster.
    Error 500
    Tue Apr 26 11:00:05 2011
    Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0d DAV/2 mod_wsgi/4.0-TRUNK Python/3.2
    @error_log
    [Tue Apr 26 10:51:14 2011] [error] [client **.**.**.**] mod_wsgi (pid=6981): Exception occurred processing WSGI script '/path/to/app/wsgi_app.py'.
    [Tue Apr 26 10:51:14 2011] [error] [client **.**.**.**] TypeError: sequence of byte string values expected, value of type str found

  • Did a clean install 10.9.4. on a stock Fusion HD.  When I run "diskutil list" via Terminal, everything is wrong.  I have "EFI" and "apple Boot Boot OSX in every dev/disk** How do I fix? Any help would be much appreciated, thank you

    Did a clean install 10.9.4. on a Apple Stock 1TB Fusion Hard Drive.  When I run "diskutil list" via Terminal, everything is wrong.  I have "EFI" and "apple Boot Boot OSX" in every dev/disk**  Everything is out of place, How can I repair? Im willing too reformat if need be, however thats what I did in the first place.  Any help would be much appreciated, thank you.
    I know this cannot be correct
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *121.3 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         121.0 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:          Apple_CoreStorage                         999.3 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Fusion                 *1.1 TB     disk2
    /dev/disk7
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                                                   *121.9 GB   disk7

    It appears as if my startup disk has been reversed and not using the fusion ssd portion as it should.  At least its now reversed as to what it used to be originally before.  the 128gb ssd used to be on top.  Is my mac booting fusion correctly?  Thank you for responding as I was about to reformat.
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group C2619AFE-0EB5-4721-8C50-3F3DBA520D1B
        =========================================================
        Name:         fusion
        Status:       Online
        Size:         1120333979648 B (1.1 TB)
        Free Space:   114688 B (114.7 KB)
        |
        +-< Physical Volume 583AAEA9-E333-4A83-9BE3-E937396E9248
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     120988852224 B (121.0 GB)
        |
        +-< Physical Volume B0C1CB16-D46F-4387-A679-B55392BB7934
        |   ----------------------------------------------------
        |   Index:    1
        |   Disk:     disk1s2
        |   Status:   Online
        |   Size:     999345127424 B (999.3 GB)
        |
        +-> Logical Volume Family FB42B9F4-CB77-4162-831B-7DCB7816E760
            Encryption Status:       Unlocked
            Encryption Type:         None
            Conversion Status:       NoConversion
            Conversion Direction:    -none-
            Has Encrypted Extents:   No
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume C0B8479B-C51C-45BF-B59B-1AA5DF3A3B83
                Disk:                  disk2
                Status:                Online
                Size (Total):          1111826497536 B (1.1 TB)
                Conversion Progress:   -none-
                Revertible:            No
                LV Name:               Fusion
                Volume Name:           Fusion
                Content Hint:          Apple_HFS
    FoHeazys-Mac-mini:~ FoHeazy$ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *121.3 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         121.0 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:          Apple_CoreStorage                         999.3 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Fusion                 *1.1 TB     disk2

  • Right problem with apache and tomcat

    Bonjour;
    I use a user login "apache" to stop/start Apache and tomcat. Because never launching apache et tomcat as root.
    But I have the following problem with apache (file error.log) :
    [Tue May  6 17:26:22 2003] [error] Connection "warpConnection" cannot connect
    [Tue May  6 17:26:22 2003] [error] Cannot open connection "warpConnection"
    [Tue May  6 17:27:01 2003] [error] Re-Trying to deploy connections
    As root the error msg does'nt exists (lost)
    Best regards;
    A+;

    Run it from the shell to see whats wrong:
    # httpd

  • Re: DW8 and "browser-safe" scripts

    > the <object> tag doesn't usually cause a problem,
    I don't think, unless
    > that's what's making IE produce a "click to run
    > ActiveX" messagebox when a page with a Shockwave movie
    is loaded.
    It is.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Fred Riley" <[email protected]> wrote in
    message
    news:[email protected]...
    >>>> Murray
    *ACE*<[email protected]> 28/06/2006 12:07:27
    >>>
    > "Browser-safe", eh? ;-)
    >
    > Definitely. Are you talking shockwave or Flash? The
    former is for
    > Director
    > files, the latter is for errr Flash files.
    >
    > F: Shockwave.
    >
    > Anyhow, your two errors are -
    >
    > Line 2, syntax error.
    > Line 159, object expected.
    >
    > Fix the first by removing this line -
    >
    > <?xml version="1.0" encoding="iso-8859-1"?>
    >
    > F: Aaarrrgggh! Not that blasted line *again*. It's not
    me that puts it in
    > the page, honest, guv, it was blasted Dreamweaver MX
    2004.
    >
    > It's not needed, and furthermore, it hurts you by
    putting IE into quirks
    > mode. I'm not quite sure why it's throwing this js error
    though. <shrug>
    >
    > The second error is caused by your failure to upload the
    Scripts folder,
    > which contains the function called on line 159 -
    >
    > <script type="text/javascript">
    > AC_SW_RunContent( '
    >
    > F: Hmmm. I'd not noticed that folder appearing in my
    site. Ah well, it
    > rules out me using the 'browser-safe' scripts then, as
    I'd have to create
    > and upload a /Scripts folder for every learning object
    on my site, and
    > that's lots of them. They can't all use the same
    /Scripts as they're
    > supposed to be standalone and survive if packaged and
    moved outside the
    > site. No matter, the <object> tag doesn't usually
    cause a problem, I don't
    > think, unless that's what's making IE produce a "click
    to run ActiveX"
    > messagebox when a page with a Shockwave movie is loaded.
    >
    > Do those things and you'll see a difference.
    >
    > F: No, you're not wrong there, Murray. Maybe the script
    is "browser-safe"
    > after all. I still think I'll use the <object>
    tag, though, but look
    > closely at the W3C spec to make sure that I stay within
    standards. I'm
    > always a bit nervous about doing in Javascript what
    should be done in
    > HTML.
    >
    > Thanks anyhoo for the reply, which wasn't expected.
    >
    > Cheers
    >
    > Fred

    > the <object> tag doesn't usually cause a problem,
    I don't think, unless
    > that's what's making IE produce a "click to run
    > ActiveX" messagebox when a page with a Shockwave movie
    is loaded.
    It is.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Fred Riley" <[email protected]> wrote in
    message
    news:[email protected]...
    >>>> Murray
    *ACE*<[email protected]> 28/06/2006 12:07:27
    >>>
    > "Browser-safe", eh? ;-)
    >
    > Definitely. Are you talking shockwave or Flash? The
    former is for
    > Director
    > files, the latter is for errr Flash files.
    >
    > F: Shockwave.
    >
    > Anyhow, your two errors are -
    >
    > Line 2, syntax error.
    > Line 159, object expected.
    >
    > Fix the first by removing this line -
    >
    > <?xml version="1.0" encoding="iso-8859-1"?>
    >
    > F: Aaarrrgggh! Not that blasted line *again*. It's not
    me that puts it in
    > the page, honest, guv, it was blasted Dreamweaver MX
    2004.
    >
    > It's not needed, and furthermore, it hurts you by
    putting IE into quirks
    > mode. I'm not quite sure why it's throwing this js error
    though. <shrug>
    >
    > The second error is caused by your failure to upload the
    Scripts folder,
    > which contains the function called on line 159 -
    >
    > <script type="text/javascript">
    > AC_SW_RunContent( '
    >
    > F: Hmmm. I'd not noticed that folder appearing in my
    site. Ah well, it
    > rules out me using the 'browser-safe' scripts then, as
    I'd have to create
    > and upload a /Scripts folder for every learning object
    on my site, and
    > that's lots of them. They can't all use the same
    /Scripts as they're
    > supposed to be standalone and survive if packaged and
    moved outside the
    > site. No matter, the <object> tag doesn't usually
    cause a problem, I don't
    > think, unless that's what's making IE produce a "click
    to run ActiveX"
    > messagebox when a page with a Shockwave movie is loaded.
    >
    > Do those things and you'll see a difference.
    >
    > F: No, you're not wrong there, Murray. Maybe the script
    is "browser-safe"
    > after all. I still think I'll use the <object>
    tag, though, but look
    > closely at the W3C spec to make sure that I stay within
    standards. I'm
    > always a bit nervous about doing in Javascript what
    should be done in
    > HTML.
    >
    > Thanks anyhoo for the reply, which wasn't expected.
    >
    > Cheers
    >
    > Fred

  • OBIEE 11g write back to Essbase and run calc script feature

    Hi,
    I have a requirement to write back into Essbase Cube and run calc script from OBIEE dashboard.
    From what i have search on google, we must deploy additional Java Script into weblogic, but that is before OBIEE 11.1.1.6.
    I have 2 question:
    - Does OBIEE 11.1.1.6 already supported native write-back to Essbase and running calcscript?
    - Anyone has example of the custom java-script for write back and running calcscript?
    And another, if there are requirement like this, is it better to install Essbase Add-in on Microsoft Excel and do the what-if analysis there, then just display the report on OBIEE dashboard? (based on user-friendliness and the complexity on maintenance)
    Thanks in advance.

    Hi,
    Even I am trying to achieve the same thing as you have mentioned but think that it is not possible to achieve easily in obiee 11.1.1.6, though we do have a work around to perform a writeback in Essbase cube using JAPI as mentioned below.
    Also we can call Hyperion reports from OBIEE using Action Links and also pass parameters to the same but dont know if it runs calculation script.
    Below link could be useful for you for write back workaround.
    http://oraclebizint.wordpress.com/2009/05/25/oracle-bi-ee-10-1-3-4-1-writebacks-to-essbase-using-japi-and-custom-html-part-1/
    Let me know in case you have found out anything else related to same.
    Thanks,

  • Satellite A660 - Will not boot up and HDD boot fail

    Hi,
    firstly thanks for your time.
    Model: Satellite A660 (PSAW3A-07U00R)
    The problem started yesterday, the computer was going slow as an application closed, so I held the off button untill the pc turned off. When I restarded the laptop it went to a screen saying: Start windows normally or repair Windows (recomended)
    When started normally it just hangs at a blank screen, the repair Windows recommends a system restore to earlier point which didnt work. As it just hangs again. I tried pressing F8 and starting in safe mode but again it just hangs. Then after a few times trying safe mode and another system restore the computer then hangs when I press F8. After this the computer goes past the Toshiba logo screen with F2 and F12 options (which both still work), and then it comes up boot failed then goes blank and comes with boot failed bootfailed with some numbers and letters, then it goes to a small box titled boot menu with 4 options.These are
    HDD/SSD Toshiba MK6465GSX
    CD/DVD MAT****ABD-CMB UJ141ES
    FDD
    LAN
    If I press ESC it goes through the bootfailed loop and ends up at same screen, if I press enter on "HDD/SSD Toshiba MK6465GSX" then it quickly comes back to screen and at the bottom it says [HDD/SSD Toshiba MK6465GSX] is failed.
    I dont understand why it got worse over time. Can anyone think of why this has happend and more importantly how can I get my pc working again? Note: holding 0 then starting does nothing for me atm
    regards, Matthew

    All you people looking here on this dead thread.....
    Toshiba A660 laptops are renowned for having hard drive fails and boot up problems after grinding to a halt.
    My solution (after losing 3 hard drives [and a terabyte of family treasured times]) is the following.
    Use MALWAREBYTES (free download and use for 28 days)
    Scan and fix. Mine found over 300 trojans that 2013 Norton 360 could not find.
    Re-boot into safe mode.
    SCAN again.
    Re-boot and empty the malwarebytes repair files it retains...
    Run Norton/McAfee (whichever you have) and you should still have no issues.
    Make a back-up repair disc. Ooooops......no you cant...........at least my laptop can`t.
    I don`t know why.....
    Tell me tosh..... why does windows x64 refuse to allow me to make a system boot disc (even though the laptop is all driver updated and Windows updated)?
    Uninstall MalwareBytes when Norton/McAfee tells you there will be a conflict between the two programs.
    It tells you to re-boot after uninstalling it.
    Then when it re-boots you get a black screen. You cannot even get to bios. You think ytour laptop is turned into a brick frisbee. You pull out the battery in frustration after five minutes.
    You replace and re-boot....but again you get no bios or boot up.... you think its destroyed the Bios or graphics somehow....youo can hear the hard-drive but you have no clue whats going on..
    Around this time you shake the laptop in frustration.....
    Calm down.
    Switch on and leave FIFTEEN MINUTES....Ten of which will be a Black nothing screen with maybe a single white underscore line in the top left corner.LEAVE IT ALONE.
    Make a sunday dinner for ten people....When you go back to the computer it will be up and running.
    When you re-boot again, it will be dead black for five minutes...then boots up... you still think it has a problem... LEAVE IT.
    When you reboot again it should work perfect (assuming you have not been overheating it by using it on a cushion on your lap and overheating the insides [use a laptop fan tray]) if you have not shaken your hard drive or caused scrambled damage by pulling the power fifty times like some people do.
    I have lost three hard drives and thousands of Gigabytes of treasured family memories discovering the secret the hard way.
    Enjoy.
    Buy a different brand next time.
    ALL Windows system files should be on a SWITCHED (to update) version of Windows.
    Spinning drives should be for Data only.

  • HT5628 When I install Windows 8 on my MacBook Pro(13-inch,Early2011),the Super DVD Drive doesn't appear in Windows 8 and installing Boot Camp 5 drivers doesn't solve my problem,what can I do?

    When I install Windows 8 on my MacBook Pro(13-inch,Early2011),the Super DVD Drive doesn't appear in Windows 8 and installing Boot Camp 5 drivers doesn't solve my problem,what can I do?

    Go into your system preferences and click the startup disk icon then select your Mac HD. 

Maybe you are looking for

  • Slow motion on windows xp pro

    Hello, I'm on windows xp pro by boot camp and I have sometimes some slow motion. It's a problem when i'm listening music. I didn't find virus with avast antivirus and my computer used to be clean with Ccleaner and Spybot search and destroy. What can

  • CSV output with more then 10,000 rows ( trick)

    Dear All, Tricked this sort of output by: - Making a page that displays all rows. - Column value have hidden comma's - Javascript opens new window - Javascript write all rows of the page with report to the new window - Javascript tells the new window

  • Unable to create BI JDBC connection in JDeveloper

    I'm trying to follow the steps in http://docs.oracle.com/cd/E28271_01/bi.1111/e10545/sql_bi_view_object.htm#BHAFJIHC to create JDBC connection. But when I click on Test, it shows Working.. and never returns with success or failure messages. username:

  • Photoshop elements 12 "valid size not available for this creation"

    I see the message "valid size not available for this creation" when I am in organizer and  I try and go to create a collage, photo book or any of those options.  I have tried to see what other people have done by changing their location to usa/Canada

  • My ipod display isnt working properly

    Help! any1 no whats rong wiv my ipod i turn it on n it onli shows half ov the screen and is a bit destorted can any1 help plz ?