Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. AcidReignX

    Help with php5-fpm and nginx

    Fixed. I reinstalled the OS. I don't know how this solved it, or what I had run any differently. The only thing I can think of is that I may have run something in the wrong order, but I honestly don't know why that would have affected anything. At any rate, the problem is solved. This thread...
  2. AcidReignX

    Help with php5-fpm and nginx

    (( Mods, if there actually is a server administration forum I wasn't able to find, please redirect me there. )) Hey everyone, I'm having a problem getting php5-fpm installed on my ubuntu 10.04 Lucid system. I'm setting up an nginx installation, but when I run apt-get install php5-fpm, it can't...
  3. AcidReignX

    Memcache addserver() on distributed servers

    Hey everyone, I've been using memcache recently (works like a charm, btw - really drops the CPU load), and I'm now setting up a load balancer for my distributed server network. With the addition of this server, I now really need to have the ability to use my memcache in various servers. This...
  4. AcidReignX

    ERROR 2002 (HY000): Can't connect to local MySQL server through socket

    Alright, I was able to fix the problem. I went into /Library/Receipts I removed the mysql packages with: rm -R <mysql package> I reinstalled mysql. Worked fine after that.
  5. AcidReignX

    ERROR 2002 (HY000): Can't connect to local MySQL server through socket

    Hello, I'm trying to run MySQL, and sadly I've not had a lot of success. I'm running on a brand new Macbook (Mac OS X 10.4 - Intel). I've downloaded both MySQL 4.1 and 5.0 in attempts to run them. Both have installed (using .dmg packages), but neither has actually managed to run. I've been...
  6. AcidReignX

    CSS Overscrolling Issue

    I've got an issue with what I presume may be a Strict CSS issue. However, that could be wrong, because I've tried removing the DTD and it did the same thing. However, on some browsers, everything looks right. The site that I'm working on is http://www.actalwaysinlove.com and if you look on the...
  7. AcidReignX

    Weighting a MySQL Query

    Ahhh! Fantastic =D Yes, this is exactly what I was looking for. I had glanced over it in the previous versions today, but didn't catch the importance. This version's explanation, 5.1, seems to be exactly what I'm looking for. However, I'm wondering if there is any way to add your own parameter...
  8. AcidReignX

    Weighting a MySQL Query

    I'm trying to create a search engine for my site, but I can't seem to find any MYSQL options for weighting the queries. And I'm almost positive that I had found them a couple months ago. Are they only available in certain versions? Basically what I need is a clone of an engine like they have on...
  9. AcidReignX

    Invisible folder parameters

    For lack of a better name, how do you set up the "invisible folder parameters" that I've seen on so many sites? The type of setup that I'm referring to is like this: http://www.example_site.com/~parameter And that particular link will automatically act as a parameter, just like anything after...
  10. AcidReignX

    Need a Simple Link Counter

    I'm perfectly fine with using server-side code, but I can't imagine how javascript can run such a script, for example, php. I don't want any redirects or anything like that. If I can run a php script from an external .js file (which to my knowledge is impossible unless you open a popup... which...
  11. AcidReignX

    Need a Simple Link Counter

    I've been trying to figure out how to keep a very basic link counter through javascript. At first I didn't think it was possible with javascript because of it's inabilities with databases. Even so, does it have to rely on perl or something? I've looked through a couple scripts on the internet...
  12. AcidReignX

    Check if cookies are enabled?

    Holy crap I'm retarded... Checking the variable itself didn't even cross my mind. Sorry for the waste of computer bits. At any rate, thanks for the information about the session handling. That's definitely good to know.
  13. AcidReignX

    Check if cookies are enabled?

    I'm having a few people come to my site that have cookies disabled. Whenever they log in it will say "You have successfully logged in", but then they can't do anything because they're not really logged in... I know the problem is due to not having cookies enabled, but how do I actually check to...
  14. AcidReignX

    No timestamps working &gt;:(

    Hmm... I dunno. Every once in a while (possibly near the end or beginning of an hour), it will still calculate everything wrong again for some reason... Is there some equation to prevent it?
  15. AcidReignX

    No timestamps working &gt;:(

    Of course.. just when I post I find something that could work. ... Well, either that or work for a while and then screw up, just like all the other ones. At any rate, could somebody verify that this code would work? $query = "SELECT recorda, recordb FROM usertable WHERE timestamp + 1000 >=...
  16. AcidReignX

    No timestamps working &gt;:(

    I've tried just about every php/mysql combination out there in order to make this work, but even when it seems that it should work, it doesn't. It must be comparing strings or something, because I've tested the numbers, and the numbers themselves would have worked properly. What I'm trying to...
  17. AcidReignX

    Read variable from mysql_database

    Ack. Ken, once you posted that I realized I had overlooked that aspect, but even changing the quote types doesn't seem to help me. Also, Sleipner, as far as I can tell, the information is being held exactly like that. <td>$hello</td>
  18. AcidReignX

    Read variable from mysql_database

    To confirm: You're intending to store a variable $hello in a string in the database?" Not exactly. It's more like this: $hello = "Hi, whats up?"; $query = "SELECT * FROM foo WHERE bar = 1"; $result = mysql_query($query); $row = mysql_fetch_array($result, MYSQL_BOTH); // $row['hellotest'] is...
  19. AcidReignX

    Read variable from mysql_database

    Oh, and I should probably mention that I inserted the information manually through phpmyadmin. So it should be exactly as I inserted it, which is more or less the example I had provided: <td>$hello</td> As if I had done something exactly like that (but with different variables). But when I...
  20. AcidReignX

    Read variable from mysql_database

    Uh oh... how might I accomplish that? I don't really use mysql tools, except PhpMyAdmin, which I'm not sure if that even counts for much.

Part and Inventory Search

Back
Top