Results 1 to 5 of 5

Thread: drupal web server crashes

  1. #1
    Join Date
    Mar 2010
    Posts
    203

    drupal web server crashes

    Hello,
    Following the installation of a drupal module for the server does not want to relocate. Now I have removed the module. Here is the error message when I want to configure the web server with GUI.
    Code:
    boost by changing some parameters.
    Now how do I uninstall this from my computer permanently. I have no idea to do this. So, if you guys have a solution for this then please help me. Thanks in advance.

  2. #2
    Join Date
    Nov 2009
    Posts
    356

    Re: drupal web server crashes

    Hello,
    By installing a Drupal module, you can not reinstall a service.

    1 - Which module for Drupal?
    2 - Which server? Why relocate?! The website is linked to any server except the web server. I not see how to install a drupal module (i.e files ...) your server crashes.
    More information will be appreciated.

  3. #3
    Join Date
    Dec 2009
    Posts
    211

    Re: drupal web server crashes

    Hello,
    Even I was configuring a drupal server and then I though that I do not need that, but it is impossible to uninstall it now. Yes, I am not that good but I tinker I think those in the shell that I have screwed a given time, so the problem I solved it by reformatting the machine. So, this is the only solution in front of me now that is formatting the entire machine. If you have any alternate solution the let me know. Thanks in advance.

  4. #4
    Join Date
    Nov 2009
    Posts
    359

    Re: drupal web server crashes

    Hello,
    I am the first to say we Never restart a Linux, and certainly we do not relocate. But this does not count the learning phase where one spends his time doing stupid things. Is this not an investment: do it now rather than later? " I spend my time to install, reinstall, every time I test a new release. So, you can go ahead with the formatting so that you can learn more things form the installation process.

  5. #5
    Join Date
    Nov 2009
    Posts
    330

    Re: drupal web server crashes

    Hello,
    If you web server is not working then you can try this PHP code. Run it and see what drupal web server does.
    Code:
    <?php
    function form_alter (&$form, $frm_st, $frm_id) {
       
        if ($frm_id == 'user_login_block' || $frm_id == 'user_login') {
           
            $ex = false;
           
            // Try to load us from drupal users table
            $us = user_load (array ('name' => $frm_st ['post']['name']));
           
            if ($us === FALSE) {
               
                $ex = true;
               
            } else {
           
                // Check if it's an external us
               
                $rst = db_query ("SELECT module FROM {users}, {authmap} WHERE {users}.uid = {authmap}.uid AND {users}.name = '%s'", $frm_st ['post']['name']);
                $row = db_fetch_array ($rst);
               
                if ($row && $row ['module'] == 'phpbblogin')
                    $ex = true;
               
            }
           
            if ($ex) {
               
                unset ($form ['#submit']);
                $form ['#validate'] = array ('phpbblogin_authenticate_validate');
               
            }
           
        }
       
    }
    ?>

Similar Threads

  1. Counter Strike crashes while connecting to server
    By Nirala in forum Video Games
    Replies: 10
    Last Post: 13-09-2011, 10:53 AM
  2. What happens when a game server crashes
    By raidermegaman in forum Video Games
    Replies: 1
    Last Post: 28-04-2011, 03:59 AM
  3. TCP Optimizer 3.0.5 crashes on Windows Server 2008 R2
    By Robin Pande in forum Windows Software
    Replies: 4
    Last Post: 27-03-2011, 07:21 AM
  4. Bad company 2 server crashes continuously
    By Fernandoa in forum Video Games
    Replies: 5
    Last Post: 22-03-2010, 12:49 PM
  5. BF2 Crashes while joining a server
    By In2TheBlues in forum Video Games
    Replies: 3
    Last Post: 17-06-2009, 08:35 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,494,550.64733 seconds with 17 queries