Search results

  1. descalzo

    Flash Player, An Image Gallery, Not loading in php, but loads directly

    Whereever you got the Image Gallery should have the documentation.
  2. descalzo

    Don't understand suspension.

    Signing into Account Panel and/or cPanel do not count. Only signing into the Forum (and staying ~5mins for the system to notice you, or just post in one of the Forum Games games ) counts.
  3. descalzo

    Flash Player, An Image Gallery, Not loading in php, but loads directly

    It is amazing anything displays at all. Pasting together entire web pages is not the way to do things. In your specific case, I would guess the problem might lie in the address to gallery.swf. It seems to be http://dquigley.x10hosting.com/gallery/gallery.swf . In...
  4. descalzo

    AJAX loading image in login page

    bypass_login.php, I assume, checkes the username and password against a database/list. If they are ok, it sets a session value like LOGGED_IN to true. What you do: Have it send the text "OK" back to the page if user successfully logged in. Have it send your error message (like...
  5. descalzo

    Issues with Javascript?

    Step 1. One set of html/head/body tags, nested properly. <html> <head></head> <body> </body> </html> Step 2. title, javascript, css links go in the head section HTML to display content goes in the body seciton <html> <head> <title>Plageman Insurance</title>...
  6. descalzo

    Issues with Javascript?

    <link type="text/css" rel="stylesheet" href="navigation.css" /> should be Navigation.css Works on Windowz machines, not on *nix machines. Lucky the page displays at all. The HTML is horrid.
  7. descalzo

    Where to find nameserver and IP address?

    The x10Hosting DNS servers and DNS' IP are: ns1.x10hosting.com - 67.228.168.190 ns2.x10hosting.com - 74.86.117.241
  8. descalzo

    [IP] OMG. I need Major Help

    Re: OMG. I need Major Help 10.1.27.99 is not a web IP, it is a private network IP. Are you saying that Apache on x10 is reporting that as the address for the Request? What does your script use, REMOTE_HOST or REMOTE_ADDR? Lastly, which server are you on?
  9. descalzo

    My website keeps getting reported

    I would also suggest contacting inanis.net, the apparent creator of the theme.
  10. descalzo

    Gzip

    It doesn't on Chopin. The ifModule seems to be false since I tried: <ifModule mod_php4.c> ErrorDocument 404 /error/404.html </ifModule> And the ErrorDocument declaration was not picked up.
  11. descalzo

    Not able to connect to MySQL DB using PHP

    Instead of $dbhost = "mysql-cossacks.x10hosting.com"; try $dbhost = "localhost"; Edit/Add: You might want to use htmlentities instead of strip_tags: $name = $r['name']; $name = htmlentities($name); $message = $r['message']; $message = htmlentities($message); Edit2...
  12. descalzo

    I transfered a domain. What next?

    DNS lookup shows that they still list freewebs.com as the name servers. You have to tell your registrar to point to x10's nameservers. [Ok, now shows pointing to x10 ] (With a name like Orr, one would think you would be a Bruins fan).
  13. descalzo

    redirects to mybookface.net

    If you do not want to tell us your domain name, many of us will not be able to help.
  14. descalzo

    Why wont my uploading images dispaly on the website?

    Can you type in the url of the image directly into the address bar and see the image? Are the images jpegs with capitalized extension JPEG? Do you have a url we could look at to narrow down the possibilities?
  15. descalzo

    Suspended account and can not logon

    Apparently you should just ignore the error and continue the process if you can.
  16. descalzo

    error register global

    From phpnuke site: And their site lists the latest version as 8.1 . This brings some questions to mind.
  17. descalzo

    I transfered a domain. What next?

    You have beautifulscranton.com as your main domain for your x10hosting account. You are moving atleastwearenotpittsburgh.com to your account. Do you want them to be separate sites? Or do you want them to be the exact same site? Exact same site: add atleastwearenotpittsburgh.com as a...
  18. descalzo

    AJAX loading image in login page

    To get the value of a text box, you have ask for the value: var username = dojo.byId( "login_name" ).value ; response is text since you asked for it: handleAs: 'text', <?php if( isset( $_POST[ 'submission' ] ) ){ sleep( 2 ); if( isset( $_POST[ 'username' ] ) &&...
  19. descalzo

    AJAX loading image in login page

    To show the basic idea (using the Dojo toolkit) <?php if( isset( $_POST[ 'submission' ] ) ){ sleep( 2 ); echo "message recieved" ; exit() ; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">...
  20. descalzo

    I dont understand php all that much

    <?php $ads = '<google> <script type="text/javascript"><!-- google_ad_client = "pub-6991322522351721"; google_ad_width = 120; google_ad_height = 600; google_ad_format = "120x600_as"; google_ad_type = "text_image"; google_ad_channel =""; google_color_border = "CCCCCC"...
Top