Jump to content
[MUST READ] Forum Rules ×

xpde

Senior Members
  • Posts

    71
  • Joined

  • Last visited

  • Days Won

    11

Posts posted by xpde

  1. Just now, cloudHost said:

    Willn't resetting it delete everyone's accounts on web host?

    Well, web host accounts will not delete, but the forum's data will. As in all the users in my community will no longer have topics they've previously created. I already have everything set up for that in my documents. Text me over Discord for more information -.-

  2. Just now, Tidal said:

    The depressing life of Ramen and student debt would be experienced. xD

    Wow, that got deep pretty quick. Hey, is there a way to contact you? (contact information eg; skype, discord) I may have a proposition for you in a project I am working on. It's extremely confidential work atm and it's nearly finished.

  3. 1 minute ago, Tidal said:

    Striding towards excellence from MIT (Mass. Institute of Technology)

    Oh dang. I would totally go to MIT if I could afford tuition.

  4. Just now, Tidal said:

    Honestly, a really nice place to be an Intern at. You'd enjoy it :D

    I have thought about an internship there. Never really come to that decision yet. What university did you come from?

  5. Well, there are many ways to implement a contact form. PHP is a very common language people use to do so. Here is a quick example I made up:

    <?php
    $fn = "Contact"; // Name of form
    $to = "[email protected]"; //Typically your email
    
    if (isset($_POST['submit'])) {
        
        $subject = $fn . " " . $_POST['subject'];
        $message = $_POST['message'];
        $from    = stripslashes($_POST['from']);
        
        //Using mail function to send mail
        mail($to, $subject, $message, $from);
        
        //Success Message
        $notification = "Message Sent!";
        
    } else {
        //otherwise
        $notification = "Send a message!";
    }
    echo $notification;
    ?>
    <form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>">
       <input type="email" name="from" placeholder="Email">
       <input type="text" name="subject" placeholder="Subject">
       <textarea name="message" placeholder="Message"></textarea>
       <input type="submit" value="Submit!">
    </form>

    I have no clue if this works, I just made it. If you have any further questions, feel free to ask.

  6. On 8/16/2017 at 0:31 AM, msikat said:

    Plz Help i want to connect domain name with byethost

    i give this error

     

    rerere.thumb.PNG.e8c4746b1aab93b9975ea4431da31564.PNG

    With the knowledge that I
    I purchased a domain from a website
    Amen.fr

    plz help me

    Here's a few Solutions:

    1. Change your DNS to match with the given Name Servers by ByetHost. Note: You may have to wait 24 -to- 72 hours before your domain is matched with the host.
    2. Contact the Support team if the issue is not resolved
  7.  

    18 hours ago, PlanetCloud said:

    Do you mean I cant use Wordpress with this?
    And does the bot verification will still works?

    1. Any script using GET parameters will disable certain features of scripts, determined by the function of the scripts. You can try using Wordpress. If there are any errors or bugs, troubleshoot the situation and remove the snippet from the .htaccess - if you believe it's the case.

    2. It doesn't necessarily matter. You can easily add your own human verification. Takes at least 2-3 minutes of your time. 

  8. Want to remove that pesky parameter from your domain? Well, now you can! With the simple help of .htaccess, you can have your pure domain back! Just follow these few steps.

    1. Connect to your Webserver via File Transfer Protocol (FTP)
    2. Go into your sites primary directory
    3. Modify, or Create the .htaccess file
    4. Use this code snippet and Save the file
    RewriteEngine On
    RewriteCond %{QUERY_STRING} .
    RewriteRule ^([^.]*)$ /$1? [L,NE,R=301]

    Vwolla! That harmless parameter is not to be seen anywhere.

    Quote

    Note: This method will erase all GET parameters. In case you want to install plugins or scripts, to your website, and they will not work, I recommend removing the content (Code Snippet) from your .htaccess document.

     

  9. 8 minutes ago, PlanetCloud said:

    Hi ,
    Welcome to the community!

    You could be an expert developer to make one yourself, but you can take a look at my Free and Completely Customizeable Login Templete here :

    Also please fill this survey if you had download and installed the Free Login Templete above : https://goo.gl/forms/qaCxxZ7e7C3qwVas2

    Thank you :)

    Wow, nice job Jason. I have to go to studies in a moment, but when I return, I will help you with that template - if you need any help, that is.

  10. Introducing @xpde

    Hello, my name is xpde. I am a Full Stack Developer and currently looking for work to obtain money for my coffee addiction.

    How did I stumble upon byet.net?

    I am actually working on a Confidential Project. Let's just say it's a pretty advanced web host created by two gentlemen, and of course one of them being me. I came across MOFH and was surprised. A Free Web host reseller sounds unreal. So, now I am using the service and couldn't be any happier. I'd honestly want to join the team and help as much as possible to keep this service up and the users happy.

    If you need help with anything, just ask <3 have a nice day

    xpde

  11. Hey @lfsitenl,

    If you're still having issues, go to the iFastNet Support Center, register an account, and click on "Open New Ticket". When you open a new ticket, remember to describe your situation neatly and thoroughly. Your ticket will be opened by the Support and they will contact your account with a solution to your issue.

    Have a great day.

×
×
  • Create New...