-
Posts
1,025 -
Joined
-
Last visited
-
Days Won
40
Everything posted by Shinryuu
-
Oh, I was told they were interchangeable heh :/. Thanks for the clearing that up Tjoene
-
That's weird, I dragged that URL into a new tab that day and was directed to the suspension page.
-
Your account is still suspended, nothing you can do but wait.
-
Use your domain name as the server name. In the remote mysql page limit the allowed IPs to the block that is used by your home/work router, just setting it to allow connections from any IP is dangerous. also try: using (SqlConnection connection = new SqlConnection(db)) { connection.Open(); using (SqlCommand command = new SqlCommand("INSERT INTO Suroviny (ID, Meno, Suroviny) VALUES (@id, @meno, @pocet", connection)) { command.Parameters.Add(new SqlParameter("id", id)); command.Parameters.Add(new SqlParameter("meno", meno)); command.Parameters.Add(new SqlParameter("pocet", pocet)); command.ExecuteNonQuery(); } } and you have an extra ';' after your connection string.
-
Basically I'm trying to create a new user and save the user=>pass pair and leaving apache to handle the login process, but I've run into a silly snag. The html has the user field as a required field, so for newuser.php to ever be called it has to have a value, it's not passing over into newuser.php though create.htm: <form id="new_user" method="post" action="newuser.php"> <table> <tr> <td> <h2>Username:</h2> </td> <td> <input type="text" id="user" size="20" max="20" required="required"> </td> </tr> <tr> <td> <h2>Password:</h2> </td> <td> <input type="text" id="pass" size="20" max="20" required="required"> </td> </tr> <tr> <td> <h2>Contact Email:</h2> </td> <td> <input type="email" id="email" size="20" max="40" required="required"> </td> </tr> <tr> <td> <h2>Retype Email:</h2> </td> <td> <input type="email" id="email2" size="20" max="40" required="required"> </td> </tr> <tr> <td colspan="2"> <h4>Additionally if you prefer contact through text messages provide your phone number and mobile carrier</h4><h5>(For US only)</h5> </td> </tr> <tr> <td> Phone:<input type="tel" id="tele"> </td> <td> Carrier:<input type="text" size="20" id="carrier"> </td> </tr> <tr> <td colspan="2"> <h4>Finally please provide your birthdate to give a demographic statistic.</h4> </td> </tr> <tr> <td> <h2>Birthday</h2> </td> <td> <input type="date" id="bday"> </td> </tr> <tr> <td colspan="2"><input type="submit"> </tr> </table> </form> newuser.php: <?php $user=$_POST['user']; $pass=$_POST['pass']; $email=$_POST['email']; $email2=$_POST['email2']; if($email==$email2){ if(isset($_POST['user'])){ $pass=crypt($pass); $user=(string)$user; $output = $user.":".$pass.$nl; file_put_contents("passwd", $output, FILE_APPEND); }
-
The suspension is our way of informing you of issues. It's only punishment in the severe cases where users continuously misuse the service.
-
[Solved] Suspended: Shirlych
Shinryuu replied to shirkychancom's topic in Suspended and Queued Accounts
shirlychan.com is not a valid registered domain. Did you forget to renew it or something? -
- 8 replies
-
- java servlets
- java
-
(and 1 more)
Tagged with:
-
[Solved] 500 Internal Server Error On Stevie
Shinryuu replied to Jimbo1qaz's topic in Customer Service
http://www.helionet.org/index/topic/2592-proxies-allowed/ -
500 errors are generally from accessing stuff like cPanel, phpMyAdmin, mail, etc and trying to access your site concurrently, memory allocation errors you shouldn't be getting unless you have a runaway script spawning a lot of excess objects. As for the sluggishness, that's just part of being on Johnny, Johnny easily gets higher load than Stevie because of all the extra services it offers, with a higher load the pages it serves are served slowly.
-
Your account is likely suspended, which prevents account changes like password resets from going through.
-
[Answered] Some Users Can't Access On The Website
Shinryuu replied to princer134's topic in Questions
That screenshot shows something along the lines of an infinite loop caused by the page and that deleting cookies and allowing third-party cookies may fix the problem, so my suggestion is to do that and clear chrome's cache just to be sure and see if that helps. Your site is showing me a fresh e107 install for me. -
[Answered] Some Users Can't Access On The Website
Shinryuu replied to princer134's topic in Questions
I'd like to point out that http://prntscr.com/n8zej shows the use of a tracer command, which doesn't exist. -
If your site will work fine on Stevie just switch and never worry about Johnny.
-
Post what you get this festive season, what you give, what you're doing to make someone's day merrier. My dad is getting a cologne he had his eye on for a while. My mother is getting a trip to the mall.
-
[Solved] Stevie - "virus Detected!" Problem
Shinryuu replied to Marko xD's topic in Customer Service
No, I meant images for your site, when this started I threw a few files up to see if cPanel was being aggressive with only certain filetypes, and I managed to upload an image without an issue while having a simple 9-byte text file rejected. Basically, if you need to upload graphics for your site you might as well do that while we fix the problem. EDIT: Which is now fixed. -
[Solved] Suspended: Huzein
Shinryuu replied to Huzein_Kawada's topic in Suspended and Queued Accounts
Traffic isn't the only factor to consider, make sure to limit resource-intensive scripts, things like cURL tend to hog resources when called iteratively. -
You can lock it under moderation tools at the bottom of the thread, a mod will change the title soon.
-
Should also note that if your site requires ASP, JSP, or RoR you're stuck, unless you go for paid hosting, which depending on the range of services offered could be as-bad/worse than us. If you do static HTML/CSS or script with CGI, PHP or Perl then by all means flip servers.
-
[Solved] Stevie - "virus Detected!" Problem
Shinryuu replied to Marko xD's topic in Customer Service
*facedesk* Nothing you can do about that, admin needs to go fix that. Sorry for the slight inconvenience. Also if you got images you should be able to upload those while this gets sorted out. -
[Solved] Can't Access My Heliohost Account.
Shinryuu replied to stephan22's topic in Customer Service
Clever indeed . IPs used to do cPanel logins are recorded by the server so an admin could check that with the IP you posted this from and PM you or something, we have a password creator that makes nice passwords in cPanel, try making an ftp/email account and use it, then instead of making those accounts just copy it into the change password area for cPanel. -
Are you sure the user isn't a family member or something? Since you have control of your email you can get a password reset through http://forumhr.heliohost.org/cpanel and when you get the new password use the deletion script stephan22 posted.
-
Please follow these steps to move your account. Let us know if you have any problems.
-
Php Documents Generating 500 Server Error
Shinryuu replied to erroneum's topic in Website Management and Coding
I finally managed to get this error while testing a text editor running through a textarea. In my case I originally had the script output through the textarea's value attribute which ended up a little broken. When i simplified it to <textarea cols="80" rows="25" id="TEXT"> <?php if(isset($_POST['open'])){ if(isset($_POST['file'])){ echo file_get_contents($_POST['file']); } } ?> </textarea> I had left out the closing php tag and after opening a couple files, got the error. I waited a couple minutes, went into the source and put the missing tag and haven't gotten the error again.