Search:

Type: Posts; User: Niklas

Page 1 of 28 1 2 3 4

Search: Search took 0.07 seconds.

  1. If you define the added-variable...

    If you define the added-variable (yoursite.com?added=something)

    The following would check if something was added:

    <?php
    if (isset($_GET['added'])){
    echo "Item added to cart";
    }
    ?>
  2. Looking for established hosting company interested in expanding to media transcoding

    Who?
    We are looking for an established hosting company (preferably one with an existing cloud computing service and if you offer an existing CDN service, this could be a great asset for it as well)...
  3. Replies
    12
    Views
    2,694

    The YouTube player is very customizable through...

    The YouTube player is very customizable through the YouTube player API. If you just wish to use the default embed, you can customize the options at the bottom under "Embedded Player Parameters". The...
  4. It'll worth checking whether it is a valid url,...

    It'll worth checking whether it is a valid url, unless you know for sure that it is.

    <?php
    $url_parts = parse_url($url);

    if($url_parts){
    $domain = $url_parts['host'];
    }
    ?>
  5. Integrating daemons, PHP with multi-threading

    Before I go into detail of what I was planning on doing, probably better to explain what I want it to do, in case someone has better ideas how to do it.

    I am developing an application in PHP/MySQL...
  6. Replies
    7
    Views
    2,882

    For basic functionality of jquery, the official...

    For basic functionality of jquery, the official documentation is very good. If you are in need of something specific, you might wanna google for it as something similar might be available already as...
  7. It definitely isn't including anything inside the...

    It definitely isn't including anything inside the scripts themselves. As some of these pages are static html with only a few lines of code, but somehow manage to get the added code during browsing...
  8. No, several PC's were tried. All with same...

    No, several PC's were tried. All with same results.



    Done.
  9. Digging deeper into this, and seeing as the...

    Digging deeper into this, and seeing as the problems seemed to be resolved while bind is shut down, it would point to being a BIND issue. Reading through...
  10. Can BIND be hacked to redirect traffic?

    Can your BIND server be hacked or exploited to modify contents of your pages, i.e. add a piece of html code in front of all of your pages, without actually editing any parts of the code of those...
  11. That fixed it, I feel like an idiot now :blush: ...

    That fixed it, I feel like an idiot now :blush:

    Thanks for the help!
  12. Thanks Sam Robertson and david510, that was what...

    Thanks Sam Robertson and david510, that was what I initially thought myself, however, the error still remains the same, apart from a "-" added to it:



    returns:
  13. I am running centos 5, and if by cp your...

    I am running centos 5, and if by cp your referring to control panel, I'm not using one. It is a fresh install, with only vncserver and apache setup.
  14. Trouble configuring ffmpeg

    I've installed ffmpeg a dozen times by now (using a guide of some sort each time though), but I've never had issues like the ones I am encountering now.

    For a better picture what I've installed...
  15. Replies
    3
    Views
    848

    That's what I thought, thanks.

    That's what I thought, thanks.
  16. Replies
    19
    Views
    2,320

    Depends really on the sites they are linked from....

    Depends really on the sites they are linked from. Some sites encourage this, and provide API's for them to do so (example PHP zend framework for flickr:...
  17. Replies
    3
    Views
    848

    cron tabs

    Is it possible to have a cron tab (under unix) check whether FILE1 exists, and if true then execute the first bash/sh script found in FOLDER1? Do you need a separate script to perform this?
  18. Replies
    18
    Views
    6,043

    Note that red5 doesn't support mp4/h264

    Note that red5 doesn't support mp4/h264
  19. Problem fixed. eth1 analyzed the logs and found...

    Problem fixed. eth1 analyzed the logs and found out that there was packet loss occuring , even between the server and the gateway. Advised me to contact the service provider (fdcservers) regarding...
  20. Can't edit anymore, but the server is running...

    Can't edit anymore, but the server is running slow again if anybody wants to try pinging or trace routing.
  21. The domain is www.pldx.com but it is working as...

    The domain is www.pldx.com but it is working as intended at the minute. I'll edit or post again when it slows down, but will reboot quite soon after to minimize the effect of the slow down.
  22. Installed sysstat, and it doesn't report any...

    Installed sysstat, and it doesn't report any change in cpu usage or anything else it measures (it went slow at around 01:10:00 am):
    http://g.imagehost.org/0942/sar.jpg
  23. Checking all the running processes, nothing using...

    Checking all the running processes, nothing using above 0.1%. Also, no irregular processes started during the time the time the system goes slow.

    Should mentioned that it doesn't gradually become...
  24. Server slows down fast

    The server I have running has LAMP and some other related services running. It's on a 100Mbit shared port. Whenever the server has been running for 30-90mins, the pings start to become very high...
  25. Replies
    5
    Views
    1,486

    It had the required permissions, but while trying...

    It had the required permissions, but while trying to check came across that it wasn't under 'localhost'. Adding it there fixed it :)
Results 1 to 25 of 697
Page 1 of 28 1 2 3 4