Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Never heard of it, does it actually have anything to do with MySql or are you just posting here for fun?
  2. How about you rephrase the question so we might understand what it is your talking about. Like, what is snowdrop for one? Should we as developers have heard of it?
  3. I think the OP wants to actually output php code. Could well be wrong though...
  4. Single quotes need to be escaped when between single quotes or php thinks your ending your string. echo '[b]<?php if(function_exists(\'twit_connect\')){twit_connect();} ?>[/b]';
  5. It can be hidden behind a proxy but if you make a request giving an incorrect reply address where do you suspect the reply goes? To the wrong address.
  6. I'm not an Ubuntu user but I do use Debian allot which is where Ubuntu is derived from. Never had any GD issues here.
  7. Looking at this image it would appear you need GD not imagemagick.
  8. How sir do you propose to guarantee a file that needs to be downloaded for viewing cannot be downloaded?
  9. I'm sure it is.
  10. What are you talking about?
  11. And this is the same guy going on about designing and implementing his own OS virtualization?
  12. Why not take a look at the manual for the curl extension?
  13. This board is 'PHP Coding Help'.
  14. for this code <?php curl_setopt($ch, CURLOPT_USERAGENT, 'HackAliveCrawler htpp://mysite.com/hackalivecrawler'); echo $_SERVER['HTTP_USER_AGENT']; echo "|"; echo $_SERVER['USER_AGENT']; ?> You haven't defined $ch.
  15. It is not possible. Why? Because, for a client to view your content they need to download it. There are ways of making it more difficult, but that it, not impossible.
  16. Everything indicates that imagemagick is installed. Have you tried actually using it yourself?
  17. trq

    Crawler

    This board is for help with specific programming questions, your post is fare too vague and too widely scoped to possibly be answered within a simple forum post. I suggest you start posting these questions elsewhere.
  18. Assuming your database data is within $row['value']. $this->${$row['value']}(); Why your storing logic within your db is beyond me.
  19. There doesn't appear to be anything wrong with your imagemagick install. I would suggest its a bug within phpThumb.
  20. Remove the if statement, then when calling the function you could use something like.... if ($img = catch_that_image()) { echo "<img src='$img' />"; }
  21. There is an if statement in the code provided that is responsible for defining a default.
  22. Did you restart Apache afterward? What does phpinfo have to say?
  23. trq

    Most Popular MySQL

  24. I'll walk you
  25. Your problem has nothing at all to do with allow_long_arrays, you might want to look at what that actually does (or see ignace's post for a hint). As for your problem, I would say this is pretty clearly a case of not having the right equipment for the job. 130Mg of data is allot for most systems to be manipulating. What exactly are you doing with this data?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.