Jump to content

Fsmv2

Members
  • Posts

    10
  • Joined

  • Last visited

Posts posted by Fsmv2

  1. I think I will take this opportunity to say thanks for doing this all these years, you guys are amazing. Great to see people just doing good in the world.

     

    I'm finally going to send a donation and move to paid hosting to free up the space for some young programmer who can't pay for hosting yet like I once was.

     

    Thanks for the information too. That sounds like a pretty serious hack. Hopefully people aren't just restoring wordpress and getting hacked again.

  2. Man, that's unfortunate. Thanks for staying on top of the vulnerabilities. It's better to have it taken down than have my site used for malicious purposes.

     

    I had been meaning to take it off wordpress and make a static copy of the site for posterity. I guess I waited too long.

     

    Do you have a link about this hack? I couldn't seem to find anything online. Do you think that the attacker may have scanned all heliohost sites for wordpress? Hopefully they have not compromised anything other than some wordpress sites. My website was linked in very few places online (basically only my profiles), so I'm sort of surprised it was even found. I suppose it's possible they scanned all of ipv4 for wordpress sites.

  3.  

    My account is on Stevie. I actually made a donation before I saw this thread since you guys have hosted my site for so long. (paypal ID: #4A279578PY718871P)

     

    Can I get an account on Tommy with the same username I had on Stevie?

     

    username: fsmv

    domain: sapium.net

     

    You should receive an invite soon to create an account on Tommy. Your username and domain are free to use again.

     

     

    I see an active tommy account with username nvestor (no i). Try logging in or resetting your password at this link http://tommy.heliohost.org:2083/

    Please, reset password for me. Nor logging nor resetting your password at link http://tommy.heliohost.org:2083/ doesn't work.

    All the combinations 'nvestor', 'investor', 'investor7' lead to the same

    The login is invalid.

     

    or

    The email address you provided does not match our records.

     

     

    Your account didn't create properly. Resetting your password won't do any good. Krydos will need to look into this.

     

     

    Unfortunately the email I used for paypal is on my sapium.net domain and points at the crashed Stevie server. I had it just forwarding to another email, but I don't think I'm going to get it. There also didn't appear to be any link in the transaction details on the paypal website.

  4. My account is on Stevie. I actually made a donation before I saw this thread since you guys have hosted my site for so long. (paypal ID: #4A279578PY718871P)

     

    Can I get an account on Tommy with the same username I had on Stevie?

     

    username: fsmv

    domain: sapium.net

  5. I cannot log into phpMyAdmin. When I click the link from cPanel I get the log in page with the message "#1045 Cannot log in to the MySQL server". If I enter my username and password and try to log in I get a blank page. My PHP software also cannot connect to the database.

     

    I have a database called fsmv_wordpress which is showing as 0.00 MB on cPanel. Hopefully my data still exists, can you look into that as well? I cannot check since I cannot log into phpMyAdmin.

     

    I have deleted and recreated the user of the database like this post suggests. Oddly enough, this appears to have worked without errors.

  6. When I navigate to the website hosted here (fsmv.co.cc) I get server not found same with cpanel.fsmv.co.cc and all the other sub-domains (mail, ftp). I also get an error when attempting to sign into the cPanel from heliohost.org it simply states "Login Attempt Failed!." Finally the reset password feature appears to work but I never receive an email. How can I solve this problem?

  7. can you help me with my site??

    i'm a new member here.

    i upload my aspx file to public_html using cpanel but when i open it http://notfreebook.heliohost.org/showTime.aspx

     

    i got this error:

    XML Parsing Error: no element found

    Location: http://notfreebook.heliohost.org/showTime.aspx

    Line Number 1, Column 1:

     

    contents of my file:

    <%@ Page Language="VB" %>

    <script runat="server">

     

     

    Sub Page_Load(sender As Object, e As EventArgs)

    response.write("*" & Day(Now()) & "-" & Month(Now()) & "-" & Year(Now()) & "-" & Hour(Now()) & "-" & Minute(Now()) & "*")

    End Sub

     

    </script>

    <html>

    <head>

    </head>

    <body>

    <form runat="server">

    <!-- Insert content here -->

    </form>

    </body>

    </html>

     

    do i have to change some configuration on the cpanel to make my site works??

     

    After doing a bit of research it looks like you have to add

    Response.ContentType = "text/HTML"

    somewhere. I got that from here. I've never programmed in ASP.NET. But I put it where I think it would need to go. I know in Perl you have to print the content type before anything else or you get an error.

    <%@ Page Language="VB" %>
    <script runat="server">
    
        Response.ContentType = "text/HTML"
    
        Sub Page_Load(sender As Object, e As EventArgs)
               response.write("*" & Day(Now()) & "-" & Month(Now()) & "-" & Year(Now()) & "-" & Hour(Now()) & "-" & Minute(Now()) & "*")
        End Sub
    
    </script>
    <html>
    <head>
    </head>
    <body>
        <form runat="server">
            <!-- Insert content here -->
        </form>
    </body>
    </html>

×
×
  • Create New...