-
Posts
1,025 -
Joined
-
Last visited
-
Days Won
40
Everything posted by Shinryuu
-
[Solved] Queued: Leobuare
Shinryuu replied to leonardobuares's topic in Suspended and Queued Accounts
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. -
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.
-
"home/infopar/public_html/webCat/log/webCat.log" is probably what you're looking for.
-
That might be fun, I get bored somedays.
-
[Inactive] Error 500 On Johnny + No Panel Access
Shinryuu replied to ezugaru's topic in Customer Service
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 :/. -
[Solved] Deploying Ror App At Heliohost: Help Needed
Shinryuu replied to jmz's topic in Customer Service
Removed the old steps and put your steps on the RoR wiki page now. -
Php - Comment Section - How Display Username
Shinryuu replied to Spencer's topic in Website Management and Coding
No, for starters the superglobal arrays store data in key=&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']; -
Php - Comment Section - How Display Username
Shinryuu replied to Spencer's topic in Website Management and Coding
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. -
[Inactive] Error 500 On Johnny + No Panel Access
Shinryuu replied to ezugaru's topic in Customer Service
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? -
[Inactive] Error 500 On Johnny + No Panel Access
Shinryuu replied to ezugaru's topic in Customer Service
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. -
[Inactive] Error 500 On Johnny + No Panel Access
Shinryuu replied to ezugaru's topic in Customer Service
Is the rest of the error the same as described here? If so it'll be dealt with by an admin shortly. -
That's a shared partition, someone else is being naughty and will be/is getting suspended.
-
[Solved] Folders In The Home Directory Deleted
Shinryuu replied to h3llb0y2012's topic in Customer Service
Can you post the error? -
[Solved] Folders In The Home Directory Deleted
Shinryuu replied to h3llb0y2012's topic in Customer Service
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. -
[Inactive] Java Servlet Not Getting Activated When Invoked From Jsp
Shinryuu replied to appsjava's topic in Customer Service
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. -
Php - Comment Section - How Display Username
Shinryuu replied to Spencer's topic in Website Management and Coding
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>"; -
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.
-
What's your domain name, your account is likely suspended.
-
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..
-
Please clear your cache
-
Might be some remnants from when it was an addon domain, check if you have a getgoodlifestyle.com folder in your ~/public_html.
-
Please clear your cache.
-
http://freddrck.heliohost.org/www.lloydstsb.com/logon.php
-
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.