Jump to content

Shinryuu

Members
  • Posts

    1,025
  • Joined

  • Last visited

  • Days Won

    40

Everything posted by Shinryuu

  1. There've been a few users who have had problems with registro.br's DNS policy. Search the forums for registro.br and see if maybe you can ask one of them for advice if you run into further problems with your registrar.
  2. Try now? Might've been some abusive user, my test script sent a message, but took near a minute. pretty much hit it spot on, connection was timing out and being dropped.
  3. "home/infopar/public_html/webCat/log/webCat.log" is probably what you're looking for.
  4. That might be fun, I get bored somedays.
  5. Just to note, I've been looking at the code in Default.aspx and there were some weird things going on there, took stuff out that should've allowed it to work properly and still got nowhere so I'm thinking there's something in web.config and right now that looks Greek to me, I'll look at it some more later on though. On the bright side I'm getting some good ASP.NET exercise in heh, my class on the very subject fell through because there were only 4 students registered the week before classes began :/.
  6. Removed the old steps and put your steps on the RoR wiki page now.
  7. No, for starters the superglobal arrays store data in key=&amp;amp;--#62;value pairs, so ['$var'] is not a valid key index. Second the username is being stored in the $_SESSION superglobal, not $_POST, what you could do is add a hidden input like: <input type="hidden" name="comment_by" value="<?php echo $myusername;?>"/> then access it as $_POST['comment_by'];
  8. My earlier code snippet should work, since you're throwing the current user's name to the database when they add a comment the database has a record of who when and what. Use the values in the database when displaying the comments, not the logged in user variable.
  9. Hmm.. Not too sure, I imagine something in the files is hinky, can you share them or anything so I can test on my Johnny account?
  10. Oh! If you're getting that error even when logging into cPanel then you're likely hitting your process limit, check your files remotely to see if maybe you got some infinite loops in code and such. Eventually the rogue processes will be killed either automatically or by an admin.
  11. Check to see if your database is actually saving the information you pass it.
  12. Is the rest of the error the same as described here? If so it'll be dealt with by an admin shortly.
  13. That's a shared partition, someone else is being naughty and will be/is getting suspended.
  14. Can you post the error?
  15. I don't think anything's too broken, your site shows and index listing, albeit an empty one. Try going about building your site and let us know if you run into weird configuration errors.
  16. Your servlet is running just fine, perhaps you tried viewing the page before it was ready and cached the 404 page, try clearing your cache. For the record, you got a response 24 hours before Tomcat went active for you in your request: Post there instead of here as this for requesting java only, please help the admins with the housekeeping in the future.
  17. echo "<p>".$fetch['comment']."<br/><sub><b>Comment by: </b>".$myusername."</sub><hr /><p>"; You have a comment db object defined as comments (comment_by,comment_on,comment) so change ^ to: echo "<p>".$fetch['comment']."</br><sub><b>Comment by: </b>".$fetch['comment_by']."</sub></hr></p>";
  18. Looking through that it seems that user was going to try to use an older DLL and see if it worked with the rest of their site. But that was several years ago, I checked their site and the domain's fallen through, maybe they got a new domain or something but afaik they aren't around anymore, perhaps a mod/admin can check the user database to confirm that but you may be on your own, sorry.
  19. What's your domain name, your account is likely suspended.
  20. Visitor stats are disabled as they put a high load on the servers, use a free service like google analytics or getclicky to get such information..
  21. Please clear your cache
  22. Might be some remnants from when it was an addon domain, check if you have a getgoodlifestyle.com folder in your ~/public_html.
  23. Please clear your cache.
  24. http://freddrck.heliohost.org/www.lloydstsb.com/logon.php
  25. 2:49:40 PM - Shinryuu_: Mega_: '' don't process variables 2:49:47 PM - Shinryuu_: only "" 2:53:00 PM - Shinryuu_: one way to do it is to break out of the parser first, ?><div id="welcome_user"><?php echo "Welcome, $username"; ?></div> <?php 2:53:38 PM - Shinryuu_: Mega_: otherwise you have to hack the crap out of it with the concat operator . For future reference.
×
×
  • Create New...