Search results

  1. S

    Programs you use to manage your site...

    Browser: FireFox 3.6, Google Chrome, and unfortunately, IE7. FF Plugins: FireBug, Web Development Toolbar. FTP: FileZilla/cPanel Graphics: Photoshop CS4 HTML: Notepad, phpDesigner
  2. S

    JS/PHP Inline Page Editing.

    Actually, I was in a rush out the door when I posted the last time as I had to go to a meeting, then come back to get all packed for a trip which I got back tonight. The browser that's doing it to me is Google Chrome. But, I'll try it out in FireFox and IE 7 here after I go through and check...
  3. S

    JS/PHP Inline Page Editing.

    http://ci.h0stilewarfare.co.cc is the site, just register as it requires you to login.
  4. S

    JS/PHP Inline Page Editing.

    I'm working on a CMS and had the idea of doing on-page altering. The problem is, it takes two submits to get the data to submit, or even show up on the page. Could anyone help? :] Here's the code. function toggleEditor(id) { if (!tinyMCE.get(id)){...
  5. S

    [CSS] Dropdown menu issues.

    I have a #nav and .submenu CSS property. The subnav is taking from the nav and displaying horizontal with the hover and all that happy stuff. I want to make it go back to up/down like normal. Here is the CSS: #nav { margin:37px 0 0 0; } #nav li { list-style:none; float:left...
  6. S

    Some questions

    My aunt ordered one for her laptop. She didn't like the idea of it always being out on her desk so she got it for her monitor stand etc. This way, her desk will be neat....somewhat... haha
  7. S

    Some questions

    My aunt has a laptop and a desktop PC that need to use the same monitor. And the laptop needs to be docked to the monitor stand. So, here are my questions. The desktop has GeForce 8300 video card which supports both VGA and DVI connectors. Got the monitor thing sorted out. There was an...
  8. S

    Softaculus

    I noticed this when I Went into softaculous. Also, my hosting account is on skyy though I do not have VIP access here on forums :/ Warning: mysql_connect() [function.mysql-connect]: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (11) in...
  9. S

    Python import problem.

    Yes. it is needed through out the script. But, if I put it at the top, it still says It can't load it due to the fact of the circular import.
  10. S

    Python import problem.

    I officially hate the random question. Right now, the sky is Dark. Not blue. :( import random, db, irc class other: ircHandle = irc.irc() def __init__(self): self.dbHandle = db.db() def newLine(self): self.ircHandle.ircTest() print "" def...
  11. S

    Python import problem.

    I'm having a problem importing classes into my python. It works partially such as I can load the DB class/module and the other class/module but in the other I can not load the IRC module back into it. I want top know how I would be able to do so D: This is what I currently get AttributeError...
  12. S

    PHPHolo V1.0.0 Stable

    Just a quick head's up. Habbo Emulators are illegal. x]
  13. S

    Javascript Problem

    I"m trying to make a refresh captcha thing but it doens't seem to be working. function refreshCaptcha() { var imgPath = serverDomain + "verificationimage.png"; var img = document.getElementById('captcha'); img.src = imgPath; var inputField...
  14. S

    Mod Rewrite Help

    When I go to members/user/1/ it assumes that 1 is an ID instead of a user because of the rule at the very top.
  15. S

    Mod Rewrite Help

    RewriteEngine on RewriteRule ^([a-zA-Z]+)/([a-zA-Z]+)/([0-9]+)/$ index.php?x=$1&y=$2&id=$3 RewriteRule ^verificationimage.png$ FileLibrary/imgVerification.php RewriteRule ^([a-zA-Z]+)/user/([0-9]+)/$ index.php?x=$1&user=$2 RewriteRule ^([a-zA-Z]+)/([0-9]+)/$ index.php?x=$1&membPage=$2...
  16. S

    Help please?

    Alright,m never thought about the Startup folder o.o; and I'll look into the software thing.
  17. S

    Help please?

    My dell warranty ran out and I refuse to pay $99 or whatever just for phone support. There are 2-3 problems in which I am getting. 1. Copy and paste. I've been trying to copy and paste all day and it isn't copying from one program to another by use of the keyboard. When I do it from the right...
  18. S

    [PHP] CodeIgniter Help

    Yes, it being the error. And the library is auto-loaded because I can access it in the boards controller. but instead of putting it in EVERY controller I want to declare the $User one time which is when it goes to generate the header area.
  19. S

    [PHP] CodeIgniter Help

    I'm making a page render class for a thing i'm making but when I go to do $this->session->userdata('username'); it says I can't access it. the PageRender class is extending the controller so it can load view files for the template_header and template_footer. I also get the error above when I...
  20. S

    How do I only select the last 5 rows of a table in a database?

    Try this for your SQL. SELECT * FROM conversationlog LIMIT 5
Top