免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2911 | 回复: 0
打印 上一主题 下一主题

求助:CGI脚本不能打开文件 这是为什么啊 ??? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-07-22 16:56 |只看该作者 |倒序浏览
以下是我写的 CGI脚本代码 可是在打开文件时不能成功。。。高手帮忙看下 另外我想问下 用C写CGI 脚本是不是一定要用如CGIC这样的函数 库呢?还是直接用linux——C写就行来呢   不过我写的几个CGI 都没有成功实现   最简单的问题就是这个打开文件都失败了。。。
#include <stdio.h>

#include <stdlib.h>

#include <string.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>

char* getcgidata(FILE* fp, char* requestmethod);
int main(int argc,char *argv[])

{
int fp01;
  char *input;

  char *req_method;

  char cont[64];

// char pass[64];

  int i = 0;

  int j = 0;

// printf("Content-type: text/plain; charset=iso-8859-1\n\n";

  printf("Content-type: text/html\n\n";

  req_method = getenv("REQUEST_METHOD";

  input = getcgidata(stdin, req_method);

for ( i =5, j = 0; i < (int)strlen(input); i++ )

  {

  cont[j++] = input;

  }

  cont[j] = '\0';
printf("%s\n<br>",cont);
// char *P=pass;

if((fp01=open("xieru.txt",O_RDWR))==-1)
{

printf("cannot open the file\n<br>";
printf("%d<br>",fp01);
exit(0);
}
else
{
// fp01=open("xieru.txt",O_RDWR);
write(fp01,cont,;
}

close(fp01);
return 0;
}


char* getcgidata(FILE* fp, char* requestmethod)

{

  char *input;

  int len;

  int size=1024;

  int i=0;

   

  if (!strcmp(requestmethod,"GET")

  {

  input = getenv("QUERY_STRING";

  return input;

  }

  else if (!strcmp(requestmethod,"OST")

  {

  len = atoi(getenv("CONTENT_LENGTH");

  input = (char*)malloc(sizeof(char)*(size + 1));

   

  if(len == 0)

  {

  input[0] = '\0';

  return input;

  }

   

  while(1)

  {

  input = (char)fgetc(fp);

  if(i == size)

  {

  input[i+1] = '\0';

  return input;

  }

   

  --len;

  if (feof(fp)||(!(len)))

  {

  i++;

  input = '\0';

  return input;

  }

  i++;

   

  }

  }

  return NULL;

}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP