how to disable registrations in my site?

Discussion in 'General Chat' started by vishnubabu, May 16, 2011.

  1. #1
    how to disable registrations in my site?
    this is my image uploading site,with mihalism script.
    i just want only me using the site. waiting for reply:D

    thanks!
     
    vishnubabu, May 16, 2011 IP
  2. MrPJH

    MrPJH Well-Known Member

    Messages:
    1,066
    Likes Received:
    7
    Best Answers:
    1
    Trophy Points:
    155
    #2
    rename your file where users signup like signup.php rename it to __signup.php
     
    MrPJH, May 16, 2011 IP
  3. Cucumba123

    Cucumba123 Well-Known Member

    Messages:
    1,403
    Likes Received:
    34
    Best Answers:
    3
    Trophy Points:
    150
    #3
    Add this on top of the signup/registration php file:

    $disabled = 1;
    
    if($disabled == 1) { echo "Sorry, registrations are disabled."; exit(); }
    Code (markup):
     
    Cucumba123, May 16, 2011 IP
  4. humayun2249

    humayun2249 Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thnx cucumba
     
    humayun2249, May 16, 2011 IP
  5. vishnubabu

    vishnubabu Member

    Messages:
    185
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #5
    hey guys thanks for ur reply :)
     
    vishnubabu, May 16, 2011 IP