Search results

  1. descalzo

    Problem with .co.cc zone records ??

    Huh? You can use x10hosting nameservers and set the mx record via cPanel
  2. descalzo

    error 306 in all pages: Found The document has moved here.

    Go in and rename your .htaccess file to .htaccessBAK
  3. descalzo

    .htaccess not working

    He asked you for a URL. And exactly what "error" are you talking about? Most of your links lead nowhere. Is that your problem? Have you set up SEO urls?
  4. descalzo

    DNS Issue?

    I do not see an external domain attached to your account. Could you be more specific in your question?
  5. descalzo

    cPanel Port 80 Access

    There is no access to cPanel via port 80. Only 2083 (https) or 2082 (http)
  6. descalzo

    PHP, Jquery and cookies

    Why the worry over the size? A string of 31 letters, Y and N or T and F doesn't take up that much space. If all 31 bits are on, your bitset is an integer with 10 places. Stored in a cookie, it takes up 10 characters. If saving 21 characters is of vital importance, fine. Also, Javascript...
  7. descalzo

    .htaccess problem...

    Your front page loads fine for me.
  8. descalzo

    Internal Server Error

    Make sure files have permission of 0644 and directories 0755 Make sure your .htaccess file is correct.
  9. descalzo

    PHP Table

    $memberQuery->fetch(); should be $memberQuery1->fetch();
  10. descalzo

    Adsense ads dont show up on web page

    Your page is sending a request for the add but Google is sending back a 403 Forbidden message. Talk to Google. They are the ones denying you access. At this point, there is nothing x10hosting can do.
  11. descalzo

    Stylesheet doesnt come :(

    Both load for me, but in Firefox5 the HTML5 doesn't take the styling. Chrome/Iron does take the styling. Didn't try IE.
  12. descalzo

    How do I use multiple joins? - PHP

    Another approach is to first run: SELECT primary_id , secondary_id FROM user_equipped_items WHERE userid='$userid' ; Grab the two values. Run your original query and in the loop check the item_id against the two values and skip any that match.
  13. descalzo

    Co.cc domain

    ns1.x10hosting.com ns2.x10hosting.com
  14. descalzo

    How do I use multiple joins? - PHP

    SELECT items.*, user_equipped_items.primary_id , user_equipped_items.secondary_id FROM user_items INNER JOIN user_equipped_items ON user_items.userid = user_equipped_items.userid INNER JOIN items ON items.item_id=user_items.item_id WHERE...
  15. descalzo

    How do I use multiple joins? - PHP

    ie, user_items are his total inventory, user_equipped_items are the two (or less) items he is "using" You want a list of items in his inventory that his is not using. Right?
  16. descalzo

    PHP Login

    Yes. Start a new thread.
  17. descalzo

    How do I use multiple joins? - PHP

    Try saying what you want in words. The fields in user_equipped_items do not seem to relate to the other tables.
  18. descalzo

    Please help!!! .htaccess for permalink

    RewriteEngine On RewriteBase / RewriteRule ^article/(.*)/(.*) index.php?article=$1&alias=$2 [L] If it just has this, does it throw the error?
  19. descalzo

    jquery UI & jQuery

    Learn how to debug. Test to see what is going on. You will find out that the underlying checkboxes are operating correctly. The jQuery display just does not reflect the programatically induced change. It is not automatic. Look at the documentation: http://jqueryui.com/demos/button/ Look...
  20. descalzo

    Can't submit unsuspension request

    Done. Sorry about the system problem.
Top