Recent content by froger

  1. F

    Cron Jobs

    Actually when I deleted it, and re entered it, it seems to be working fine now. Before I was just in my phpMyAdmin and was just refreshing my table. Every 9-15 seconds I noticed that the table would get updated. Now it does it every 2 minutes like it should.
  2. F

    Cron Jobs

    Hello, I am still a lil bit of a noob on cron jobs. How do I set up one to work properly? I need a php script ran ever 2 minutes (if thats not a heavy load on the server.) I set one up successfully but it seemed to me that it was updating at much much much faster rate than every 2 minutes.
  3. F

    My hosting account suspended

    Thank you so much Brandon. Can you point me in the right direction to signing up for x10 premium?
  4. F

    My hosting account suspended

    Tell me this though, did yall even take a look at the "so claimed" chat script? I wrote it myself and made sure there was nothing memory intensive or heavy on the server about it. It only consists of a table with 3 columns and 5 rows that get updated everytime someone posts. Weeks ago I found...
  5. F

    My hosting account suspended

    I have realized a few weeks ago, that the chat page I made was a bannable offence for the free users. Which is why I was planning to goto premium hosting with it. I just logged on this morning to come to find out that my account has been permanently suspended do to a mysql chat script. I don't...
  6. F

    URL File Access with PHP

    Thanks, yea everything is working fine for me now. Thanks and this thread can be closed now.
  7. F

    URL File Access with PHP

    I am having a URL File Access with the PHP gd function imagecopymerge. Is there an estimated time on when/if the issue will be resolved anytime soon? Also, is this just disabled on the free hosting, or has this affected the premium users too?
  8. F

    Errors on my website

    Yes this feature worked before. It was working earlier this morning. No the pictures aren't stored somewhere else. They are stored on my website. This is a new error, and judging from some other peoples threads, this is a known issue. Do you know when it will be resolved?
  9. F

    PHP/MySQL Query Help

    The reason the map seemed seriously altered was because, in some of the y rows, I only had x going up to 99. It caused the map to be altered. After I fixed the map and aligned everything properly, the script worked perfectly.
  10. F

    Errors on my website

    I get this error when trying to view some pages of my website... Warning: imagecreatefromgif() [function.imagecreatefromgif]: URL file-access is disabled in the server configuration in /home/froger/public_html/images/test4.php on line 23
  11. F

    Internal Server Error

    I am currently facing a problem. Almost every 5-10 page refreshes on my website, I get a 500 internal server error. Also when viewing pages like http://cosmicshade.x10hosting.com/images/zoneviewer.php its every other page refresh that I get an internal server error. This has been happening for...
  12. F

    PHP/MySQL Query Help

    To answer question 1, yes the text images make up a ASCII art map. To answer question 2, you see, I can change the text into images with smaller images. When I use the imagecopymerge function the map seems seriously altered. *EDIT* I found the solution to my problem. Thanks.
  13. F

    PHP/MySQL Query Help

    updated my original post.
  14. F

    PHP/MySQL Query Help

    I was using something similar to this... $sql = mysql_query("SELECT * FROM Test WHERE (X BETWEEN 1 AND 100) AND (Y BETWEEN 1 AND 65) AND Z='1' ORDER BY X"); but for some reason when echoing the data, it will order x something like this... 1, 1, 1 10, 1, 1 100, 1, 1 2, 1, 1 3, 1,1 I don't...
  15. F

    PHP/MySQL Query Help

    What I am trying to do is display all the text images in their coordinated spot. You see X goes all the way up to 100, and Y goes all the way up to 65. What that statement does is querys the database to get the textimage for each coordinate. So if X goes up to 100 and Y goes up to 65 then than...
Top