Search results

  1. D

    cPanel Login Redirection

    Whenever I login to my cpanel the cpanel main page is loaded into the right side of the page like it is a frame. I have to click home within that to get it load cpanel. This could be a browser compatibility problem. I'm using safari when it does it. I haven't tried any other browsers.
  2. D

    Google Maps

    Is anyone familiar with using google maps? I'm looking to be able to add markers to a google map by clicking on the appropriate spot on the map. Does anyone know how to do this? Thanks
  3. D

    Php 5

    Anyone know what's the best way to go about PHP 5? Basically, where to begin and how to convert PHP 4 scripts to PHP 5. Thanks
  4. D

    Error Establishing a database connection

    Interesting. I just deleted my MySQL users and then readded them again and my site works again. Is this a bug?
  5. D

    Executing Python scripts

    Should work fine in cgi-bin as long as python is installed and your scripts have the shebang line at the very first line. I also think that the file has to have *nix line breaks.
  6. D

    Error Establishing a database connection

    Do you think the privileges need to be flushed in MySQL?
  7. D

    Error Establishing a database connection

    I am having this problem to at devproject.x10hosting.com. I tried the localhost trick and that didn't work. I deleted and readded the database users and that worked but it came back some time after.
  8. D

    MySQL Errors

    I had to delete the users, recreate them and readd them to the databases. Possibly privileges had to be flushed to fix this.
  9. D

    Site Down

    My site, devproject.x10hosting.com, isn't loading. Apache says it is down.
  10. D

    Ajax Captcha

    Just do a regular captcha script and if you load the page with ajax just send the time as a get param to the page that shows the captcha. This will prevent ajax caching
  11. D

    Linux Setup

    Well it actually is CentOS (sort of). It runs fedora 8 though. It's on amazon web services. I had it fully setup and everything and then I tried installing cpanel and cpanel messed up the apache and PHP configuration. It wouldn't run PHP files but would try to force them to be downloaded (bad)...
  12. D

    KDE / GNOME on your x10 VPS

    Thanks a lot. This really helped me setup a fedora base server installation for my job.
  13. D

    Linux Setup

    Well it's fedora currently.
  14. D

    Linux Setup

    Can anyone help me with setting up a linux server? I basically want the latest apache, latest mysql, and PHP compiled with most options. I need to run a script that uses gd and all of the types of images. I also need mbstring for phpmyadmin. I'm trying to use this walkthrough but some of the php...
  15. D

    Delete break spaces php

    or you could do str_replace("\n", ' ', $string);
  16. D

    Programming your own forum

    They rely heavily on databases. It's the easiest and most secure way to store data.
  17. D

    How to create Cookies by using PHP???

    Not true. setcookie usually has to be used elsewhere because. You do have to call ob_start(); before everything else on the page.
  18. D

    how to create a link that download...

    You have send the header to download the file. It involves a little PHP or another web language. PHP is the one I know though. Put this code in a file called text.php or something. Of course you have to change the Content-Length parameter. <?php header('Content-Type: text/plain')...
  19. D

    secure a page with .co.cc

    You would have to buy an ssl certificate.
Top