Search results

  1. W

    php problem?

    Kind of off topic, but do you know if any admin has said anything about this anywhere? I looked around yesterday for any official info on it and I couldn't find any. Since sunils said upgrading would fix it, I assumed there was word somewhere about that but it looks like that doesn't work...
  2. W

    php problem?

    Was your upgrade request accepted though? And alright, I'll get on msn.
  3. W

    php problem?

    This was answered here: http://forums.x10hosting.com/programming-help/76193-imagecreate-errors.html#post427987 You probably have the same problem. Try upgrading to intermediate.
  4. W

    OMG no page. Help!!!

    Assuming you're able to connect through ftp, have you tried re-uploading your site? If that doesn't work, you should probably bring this up in Free Hosting since I doubt this is a code issue. *** Looks like the same problem has already been reported in Free Hosting...
  5. W

    Custom Markup Language

    I'm not entirely sure exactly what it is you're trying to do, but by a custom markup language do you mean an xml-based format? Like SOAP or RSS? The link you provided just redirects me to facebook's main page, so I couldn't really tell anything from that. The "Fb:name" part does look like xml to...
  6. W

    HELP ME!! JavaScript!!

    You need to have "form" defined. Try this: <html> <head> <SCRIPT language="JavaScript1.3" type="text/JavaScript"> function disable(form) { var code = form.code.value; if (form.code.value == 'g') { document.getElementById("mySelect").disabled=false } else {...
  7. W

    Fatal error: Class 'IDS_Init' not found in /home/admin/domain/phpids.php on line 15

    Re: Fatal error: Class 'IDS_Init' not found in /home/admin/domain/phpids.php on line Config/Config.ini should be in quotes, but could you post the line before 50? Or, preferably, all lines before 50?
  8. W

    get php file content, please help.

    You need to use include('index.php'); in that case. include() will parse/execute the php file on the server similar to if it was being requested by someone through http. However, if you want to store "hello" in a variable instead of having it output to the user, you need to use output...
  9. W

    Fatal error: Class 'IDS_Init' not found in /home/admin/domain/phpids.php on line 15

    Re: Fatal error: Class 'IDS_Init' not found in /home/admin/domain/phpids.php on line Where is the IDS_Init class being defined? What files are include()'d or require()'d before line 15? If none of them define IDS_Init, then that's the problem.
  10. W

    My adsense Earnings.

    So I guess that makes you a paranoid, cocaine-addicted monkey that's been awake for several days straight :P Anyway, I wouldn't say 0.38% CTR is *that* bad. The vast majority of people online ignore just about any ad, if they don't block them. What's more, assuming the site you're referring to...
  11. W

    Problem JavaScript

    First, variables and element names can't have spaces. So "selling price" and "form.production costs.value" and the others like that are invalid. Second, bereken() isn't defined anywhere. I'm going to assume that the first JS is supposed to be a definition for it. But in this case, you can't use...
  12. W

    Small gap between tables help...

    Try changing the table width to 727(135 + 592) instead.
  13. W

    What's your favorite TV show?

    Doctor Who for me too, except not the new episodes. I have the full collection of the 1963-1989 run(some 200gb), except for the missing episodes. I'm not really interested in the new series. Not that it's really bad, but it's got too much fluff for my liking.
  14. W

    Yahoo rejecting mail sent through php

    If you haven't already, you should read this topic since your problem sounds very similar. But if you're sure that doesn't apply to you, then I would suggest taking oracle's advice.
  15. W

    MysQL Query for Master table & child table

    You'll probably be better off using an left join actually. Joins are usually faster than a subquery. But you may not notice much of a difference unless you have a lot of records. I can't say what the load would be though. Check the execution time on this query: SELECT tbltest_hst.test_id FROM...
  16. W

    Please Help, Urgently...

    Well then I'm going to assume that you don't have access to the /var/lib/php/session/ directory. Also, if you did make your own php.ini, did you specify the session.save_path directive? You can try setting that directive to something like: session.save_path = "/home2/imusicz/tmp" Just be sure...
  17. W

    Iframe not transperent in ie 6!

    Why not just use css? <iframe name="I1" src="http://www.google.com" width="311" height="190" scrolling="auto" align="top" frameborder="0" marginwidth="0" marginheight="0" style="opacity: 0.0; filter: alpha(opacity=0);"></iframe> Or if you want it to be invisible but still affect the content...
  18. W

    MysQL Query for Master table & child table

    Without a JOIN or subquery, I don't think it can be done.
  19. W

    Help using link to download from pages

    You need to take out the public_html part, that's the web root directory: http://skycougar.x10hosting.com/uploads/EncoreMall.rar.exe
  20. W

    Send email using PHP

    You don't need a double or even a single CRLF(\r\n) at the end of the headers. The last header doesn't need to be followed by anything(with mail(), not speaking generally about http headers). Also, I know it's just an example but it's worth mentioning that $from would have to be sanitized to...
Top