Search results

  1. W

    running gcc on server

    could anyone please tell me how(if possible) i can run gcc on my server. actually i wanted to compile a c program on my server i tried using exec(), and shell_exec() function but none worked. it just showed permission denied. :(
  2. W

    Problem viewing page in IE6

    i am making this website www.phoenix-dce.com tha page displays correctly on firefox/chrome but goes haywire on IE6 Please help me debug this thing(its really urgent) <?php session_start(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  3. W

    page refreshes on logout

    i made a login system using php and ajax. the login is perfectly fine but however when i logout (by making a post request to logout.php) the whole page automatically refreshes after the request and response is complete. //logout.php session_start(); unset($_SESSION['uid'])...
  4. W

    making multiple ajax request on one page

    i was trying to make two separate ajax request on one page www.phoenix.exofire.net/events.php i have two js written for it. when only one of the js are inserted it works fine , however when i insert both th js into my code one of the request doesnt take place. //login.js var xmlHttp; var...
  5. W

    getting a new domain

    i wanted to buy a new doman name for my college website. i checked out various sites and couldnt figure out which one is good or bad. please tell me which features i should look out while purchasing a domain name. please be a bit elaborate as this is the first time i would be buying domain name
  6. W

    css div size

    here's the webpage created by me nitesh.x10hosting.com the problem is that the background image for the navigation panel does not fill up to the end of the page but only till below the menu here's the css defiing the layout of my webpage html { width:100%; max-width:100%; padding:0...
  7. W

    ajax post request

    i was trying to make a post request using ajax here's the request code function show_comments() { xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="<?php require('source_link.php');echo"$comments_add";?>"; var...
  8. W

    php post request: random characters output to screen

    i am using php post requests for restricting access to certain pages to my website. here's the function that calls for access check require('accesscontrol.php'); $page_access_level=1; check_access_status($page_access_level); //accesscontrol.php...
  9. W

    image links not working

    this is my webpage nitesh.x10hosting.com in the gallery section the thumbnails to the different galleries are working.but the images(thumbnails) in each gallery do not link to the full image. however this problem occurs only when i access my site through Firefox and Safari and not through IE...
Top