Search results

  1. descalzo

    Simple java script help

    Thought process.... radio buttons mean a form. Give it a name and id so I can reference it. I want the display to change when a radio button is clicked. I can add an 'onclick' handler to each radio button, but I think I will just add one to the form. <form id="theform"...
  2. descalzo

    Help

    adamparkzer sent it to support last night. 1. This is a free account 2. The admins have a lot to do 3. The admins sleep, I think. Have you checked the above link?
  3. descalzo

    my account has been suspended

    Copyright infringement/phishing is frowned upon.
  4. descalzo

    Tax in USA

    List of sales tax rates as of 2008 New Hampshire is 0%..you could visit Corey Oregon is a nice choice at 0%. No, wait. They passed a "No Pink Elephants" law last year.
  5. descalzo

    Why Account suspended eventhough i was active once in 14 days?

    1. Do you understand that you have to log on here, to the forums, not the cPanel? 2. Do you understand that you have to log on, no just visit? 3. Do you understand that the system takes a few minutes to recognize your visit? Just logging in here and then closing the window will not count. 4...
  6. descalzo

    SOAP module

    ?? phpinfo is disabled (at least on free hosting).
  7. descalzo

    Huge problems

    When you say "log on", you mean log on to your wiki admin facility, right?
  8. descalzo

    Images problem

    Wild guess... you Hotlink Protected the images but something went wrong. Check your .htaccess file. Otherwise, make sure the file permissions are set to 0644 P.S. Try to make your image names (actually, all file names) all lower case. They should be stored in an /images/...
  9. descalzo

    Menu[1] is Undefined

    For now, try changing the order to: <script src="http://www.techcorner.pcriot.com/js/mmenu.js"></script> <script src="http://www.techcorner.pcriot.com/js/menuItems.js"></script>
  10. descalzo

    Cgi

    If the question is "Can I install a file upload script", there is nothing in the TOS against it. But, if someone uploads a nulled script or other prohibited content, you are 100% responsible for it. ie, your account will be terminated. If someone causes high resource usage by using the...
  11. descalzo

    Menu[1] is Undefined

    make_menus(); Where is this defined? Do you have a url so we can see the error in the wild?
  12. descalzo

    Account suspended HELP!

    Sticky on unsuspending yourself if you were suspended for inactivity.
  13. descalzo

    Ineffective blocking of php exec()

    Look at the questions posted on these forums. How many are by people who use a CMS and they have no idea how it works? They throw in plug-ins and modules from anywhere they find on the Net. They have memory or other usage problems because the authors of the add ons are sloppy coders. What if...
  14. descalzo

    Ayuda JavaScript

    Text div Fader
  15. descalzo

    CPanel Problem

    On Chopin. Same problem with the layout/CSS on cPanel, IE7. Started yesterday. Just checked, same error trying to get into Horde. Squirrel can log onto.
  16. descalzo

    allow function.unpack()

    If you are talking about the PHP function unpack, it runs on x10hosting. Try running <?php if( function_exists( 'unpack')) { echo "Yes" ; } else { echo "No" ; } echo "<br />" ; $binarydata = pack("c*", 76, 83, 65, 66); echo $binarydata ; echo "<br />" ; $back =...
  17. descalzo

    Connecting java to mysql via J/connector and ODBC

    Are you saying that you have a java applet running on a webpage and that you want it to communcate with a mySQL database on x10hosting?
  18. descalzo

    Permissions Messed Up After Using Backup

    Seems like the cache directory has the owner set to 'root'.
  19. descalzo

    Permissions Messed Up After Using Backup

    Try creating test.txt in public_html and then running a quick test script: $f1 = fileowner( '/home/bob12408/public_html/test.txt' ); $f2 = fileowner( '/home/bob12408/public_html/community/cache' ) ; echo "$f1 and $f2 " ; exit(); The numbers should be the same if you own them both.
  20. descalzo

    javascript text class change for heading

    $_SERVER[ 'PHP_SELF' ] gives you the path to the current script. That lets you figure out which link to give the special class to. (personally, I do not like the link to be active at all). # array of arrays with LINK_TEXT and LINK_PATH # add to array as site grows, etc $pages =...
Top