Search results

  1. descalzo

    Count to 1 Million

    1662
  2. descalzo

    Word Association

    Fly
  3. descalzo

    high system resource usage?

    Do you run cron jobs more that once every 5 minutes? What are you running? You might be a memory hog. Your scripts might run too long and use too much cpu time.
  4. descalzo

    How to re-use an RSS feed?

    First, you want to grab the other rss feed. cURL library is nice. PHP online manual Example of using cURL rss.php // create curl resource $ch = curl_init(); // set url curl_setopt($ch, CURLOPT_URL, "www.booksgo's_other_site.com/rssfeed.rss")...
  5. descalzo

    PHP Include

    <?php require("/home/******/public_html/forums/SSI.php"); ?> Warning: require() [function.require]: URL file-access is disabled in the server configuration in /home/*****/public_html/partie/index.php on line 1 Warning: require(http://*******/forums/SSI.php) [function.require]: failed to...
  6. descalzo

    Fixing the CSS Overide

    Maybe add.... .group .content .jCalendar table {width:170px; }
  7. descalzo

    .htaccess selective redirecting

    1. I am not 100% sure how they handle addon domains. From what I gather if you add sharkysworld.com to your account, the root directory for that domain is /public_html/_/sharkeysworld.com/ Then I assume they use mod_rewrite to adjust the incoming urls. With those assumptions...
  8. descalzo

    Problem with hosting

    SERVICE ALERT
  9. descalzo

    emailer not working?

    1. The mail system works 2. There seems to be some problems with some email accounts treating some of the mail as spam. 3. If no mail is getting out at all, then it is probably the fault of one of the scripts in the website package. It might be busted. It might be misconfigured. 4...
  10. descalzo

    Error Message

    http://bluecat.x10hosting.com/about.php 1. No 'ftp', you are accessing via the web. 'http://' 2. No 'public_html' ... that is the name of the top level directory. 3. No need to add the port
  11. descalzo

    .htaccess selective redirecting

    You mean a additional rule to the original two so that image files for the addon domains do not get redirected along with those for the main domain?
  12. descalzo

    cron job problem

    1. TOS says cron jobs once every 5 minutes. 2. Your path to wget is the same as mine (though I do not use it) 3. For some reason some people cannot get cron jobs to work. I am on Chopin and they work for me. It might be the server you are on. There has never been an official answer as to why...
  13. descalzo

    Interspire website publisher and mysql

    Any error messages, etc? Maybe you misconfigured it when you installed it.
  14. descalzo

    Interspire website publisher and mysql

    That usually means version 4.1 or higher. It should work.
  15. descalzo

    HELP .htaccess

    What does the page do? Where does the data come from? Do you parse URLs anywhere in the script?
  16. descalzo

    Weird MYSQL_FETCH_ARRAY error

    Without seeing all the code, I have no idea. By the way, my car won't start. Can you tell me why?
  17. descalzo

    What happen to my site

    And he just noticed?
  18. descalzo

    .htaccess selective redirecting

    Not that familiar with mod_rewrite regex syntax, but RewriteCond %{REQUEST_URI} (.jpg|.jpeg|.png|.gif)$ might work
  19. descalzo

    Weird MYSQL_FETCH_ARRAY error

    ..deleted bad suggestion... ...Edit to add: Below is what you want. Since $result is not a resource, it is because of an error, not because the query returned no results.
Top