由买买提看人间百态

topics

全部话题 - 话题: cgi
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
d*****r
发帖数: 39446
1
来自主题: NCAA版 - [通知] NCAA 举办博彩:[email protected] State
【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Mon Sep 19 12:53:10 2016 类别:单选
⊙ 主a class="__cf_email__" href="/cdn-cgi/l/email-protection" data-cfemail="6c8ecfd63b051f0f03021f05022c21050f04050b0d02">[email protected]/* */ State
⊙ 博彩题目描述:
Wisconsin Badgers @ Michigan State Spartans
Game Date: Saturday, September 24, 2016
Game Time: 12:00 PM
【选项如下】
(1) Wisconsin>Michigan State(-6.5)
(2) Wisconsin
d*****r
发帖数: 39446
2
来自主题: NCAA版 - [通知] NCAA 举办博彩:[email protected]
【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Mon Sep 19 12:55:19 2016 类别:单选
⊙ 主a class="__cf_email__" href="/cdn-cgi/l/email-protection" data-cfemail="7496d7ce32181b061d10153420111a1a1107071111">[email protected]/* */
⊙ 博彩题目描述:
Florida Gators @ Tennessee Volunteers
Game Date: Saturday, September 24, 2016
Game Time: 3:30 PM
【选项如下】
(1) Florida>Tennessee(-7.5)
(2) Florida
j********p
发帖数: 9680
3
来自主题: WaterWorld版 - CGI 面试求助
记得近几年参加过两次CGI的面试.
一次是面对面的香港人,很客气,但没给offer.
另一次是远距离的电话面试,对方是在halifax的一个公司,几个人还不错,但由于当时之
前不久和印度人交锋,心情不是很好,没太好把握那次面试.
作为中国人,不卑不亢,不要给中国人丢脸是底线.
面试你的人如果是本地白人,该怎么说就怎么说就行,
如果是阿三,直接pass掉就可以了.如果对方态度实在非常非常好,
也可以考虑跟他们合作.
如果你是男生,就按我上面说的办.
如果你是女生,估计老印会非常感兴趣.
你要考虑,要不要到老印成堆的地方工作.
印度毕竟是世界者明的强奸之国.
w**********k
发帖数: 1135
4
来自主题: BuildingWeb版 - Re: Is BBS.MIT.edu built with CGI or ASP?
不单单是CGI。
w*****g
发帖数: 198
5
use perl's HTTP moduile
something like
my $req = new HTTP::Request 'POST', "http://my.host2/cgi/submit";
$req->content_type('application/x-www-form-urlencoded');
$req->content("EMAIL=$USERID&PASSWORD=$USERPSWD");
s***k
发帖数: 23
6
【 以下文字转载自 Programming 讨论区,原文如下 】
发信人: stock (Microsoft is dead), 信区: Programming
标 题: Perl for programmers(10): A template for CGI file
发信站: The unknown SPACE (Fri May 26 11:12:07 2000) WWW-POST
#!/usr/bin/perl -w
############################################################
################
# Copyright (c) 1999-2000 Ywu.com Inc.
# This program contains proprietary and confidential
information. All
# rights reserved except as may be permitted by prior
written consent.
#
# R E V I S
y***n
发帖数: 8
7
来自主题: BuildingWeb版 - CGI
Now let us make a more useful one.
带有参数的脚本
为了传递一个参数给脚本,可以在URL中使用 (?) 插入脚本名词和参
数之间, 用加号(+) 表示每个单一的参数, 如:
run my script
当服务器接收到这个请求,它传递 arg1, arg2, 和 arg3 参数给脚
本. 你然后能在脚本中使用这些参数.
这个方法有时叫查询, 因为早期它用在搜索功能中.
练习: 检查是否有人登陆.
既然你知道怎样使用参数,让我们继续上面的例子pinglaura,通过
修改这个例子我们得到下面这个脚本pinggeneric.
我们取个不同题目:
#!/bin/sh
echo "Content-type: text/html"
echo
echo ""
echo "Are You There?"
echo ""
在上面的例子中, 下一步应该是测试我是否登陆,在这里我们用参数
${1}代替我
y***n
发帖数: 8
8
来自主题: BuildingWeb版 - CGI
传递其他信息给脚本
有第二种方法传递信息给CGI脚本. 它叫作路径信息path
information 用作那些在脚本调用是不用变更的参数, 象一个临时文
件名或调用脚本自己的文件名. 正如你看到的,在上面的例子问号后
面的参数是因用户表单的输入而改变的. 路径信息Path info用作其
他信息传递给脚本,实际上,你可以用它作任何事情.
g*****e
发帖数: 6
9
来自主题: BuildingWeb版 - perl cgis: how to send back frame webpage?
I use perl to write a cgi to send back a webpage contenting
frames. But it doesn't work. it directly print out the lines
contenting the source webpage files. Does anybody know how
to send back frame webpages?
f**l
发帖数: 2041
10
来自主题: BuildingWeb版 - perl cgis: how to send back frame webpage?
perl程序须在cgi-bin目录下.
t****r
发帖数: 106
11
最好是国外的,最好有CGI或PHP的权限。哪位知道,告诉几个url吧
E******y
发帖数: 614
12
go to http://www.freewebspace.net/
then do advanced search. There are many sites can do CGI.
l**d
发帖数: 110
13
来自主题: BuildingWeb版 - my /cgi-bin/ don't work!? help!
hi there.
i just installed a server, apache 1.3.11. everything goes
well..but test-cgi doesn't work. how to config httpd.conf to
make it work? thanks!
l**d
发帖数: 110
14
来自主题: BuildingWeb版 - my /cgi-bin/ don't work!? help!

thanks. i just called my professor. she asked me to make cgi
programs executable.
it worked well now.thank you.
w*****o
发帖数: 92
15
来自主题: BuildingWeb版 - Free Webspace supportting ASp or CGI
Who can recommend some free websites for personal webpage
that can support CGI or ASP? I mean, the web server should
be in China mainland!
Thanks
l**u
发帖数: 35
16
来自主题: BuildingWeb版 - 在Apache_Win32中如何设置cgi-bin呀
在你的主页里通过SSI调用它。
y*u
发帖数: 37
17
来自主题: BuildingWeb版 - C SHELL CGI问题求教
编了一个最简单的CSH CGI程序, 无奈无论如何都无法运行, 老是出错.
大虾帮忙看看?
#!/bin/csh
echo "Content-type: text/html"
echo
echo ""
echo "hello"
echo " hello "
本地机上运行没问题, 一到WEB上就不行了, 什么原因呢?
s***l
发帖数: 321
18
来自主题: BuildingWeb版 - how to invoke cgi in html?
i have a cgi file written in perl.
i want to wake it up in html file.
how? thx.
N**e
发帖数: 158
19
来自主题: BuildingWeb版 - how to invoke cgi in html?
It may not work if you don't have the privilege. There are lots websites
in Chinese talking about Perl CGIs.
z****y
发帖数: 7
20
来自主题: BuildingWeb版 - cgi 怎么run?
u should find a room in which site supports this CGI
function.
b*****y
发帖数: 1
21
我写了一个CGI程序,
返回的串开始为"Content-type:application/octet-stream\n\n",
然后是具体内容.
当我用Netscape请求时, 浏览器提示我保存文件; 但用IE访问时, 它
将结果直接显示在页面上了, 怎样让它也能提示我保存?
多谢指教.
N**e
发帖数: 158
22
Seems you need to learn how to call CGI -- HTML
m*****e
发帖数: 20
23
来自主题: BuildingWeb版 - 啥是cgi? 这个东西有什么用?
就是说允许你自己编个cgi程序放到服务器上并可以执行。
javascript好象是在你本机上运行的,是不是你自己机器
上的设置问题?
j***y
发帖数: 2074
24
来自主题: BuildingWeb版 - cgi-bin options in apache server?
how to configure it to be readable?
i have added the following line, but doesn't work:

AllowOverride None
Options None
Options ExecCGI
#johny added to make it readable.
Options MultiViews
Order allow,deny
Allow from all

help?
thanks,
s**********i
发帖数: 711
25
something wrong with your CGI program.
N**e
发帖数: 158
26
来自主题: BuildingWeb版 - 想学CGI
无数...
use google 中文 search "CGI 教程"
N**e
发帖数: 158
27
来自主题: BuildingWeb版 - [转载] IIS5.0支持哪些CGI程序?
Anyone that has a plug-in into IIS. Most common CGIs are supported under
IIS via this way
s*****i
发帖数: 650
28
cgi redirection
~{!>~} ~{TZ~} daboy (~{Nw0KIa~}) ~{5D4sWwVPLa5=~}: ~{!?~}
s**********i
发帖数: 711
29
来自主题: BuildingWeb版 - 怎么样在个人主页上运行CGI?
you need to check 1, whether they support perl,
which probably true, and 2, path to perl, 3,
make sure you upload perl scripts in asc mode,
4, make sure the script is executable by anyone
5, it has right suffix or in cgi directory.
s*****i
发帖数: 650
30
Hi, CGI program. using c to make it.
if I input the string as !!@@, then I want the program to output the
same string, the result is: %21%21@@
the length is 8,not 4. what is the problem?
if you input #, it is %23,input $, it is %24.
if input letters and number or comma, or period, it is correct.
why?
how to make it display correctly?
s**********i
发帖数: 711
31
if you check the HTTP return code table you would
have found 403 means forbidden: you don't have
right to access the file.
which means you should change permission of the
CGI program to let others able to read and execute.
normally set it to 755.
p***s
发帖数: 22
32
来自主题: BuildingWeb版 - what is cgi?
if i got a .cgi,
what should i do with it?
thanks.
q***e
发帖数: 90
33
来自主题: BuildingWeb版 - what is cgi?
cgi means Common Gateway Interface, that is an obselete
technology of ancient times of Internet! Just throw it
away if you did not already know it. No point learn such
obselete technology.
s**********i
发帖数: 711
34
来自主题: BuildingWeb版 - what is cgi?
CGI is used very widely, although it's kind
of become out of fashion. but it's far from
obselete.
p******f
发帖数: 162
35
来自主题: BuildingWeb版 - no cache CGI output
Anyone knows how to make my perl CGI output not cached by the brower?
m*****u
发帖数: 2
36
来自主题: BuildingWeb版 - cgi and c++ (菜鸟求救)
本人现在把电脑设置成服务器。安装了apache2.0.(windows环境下)。想把专业的c++
toolbox 放在网上。这样可以trial 或者test 这些程序。不知道如何在cgi下设置及编译
,调用那些c++程序。需要安装那些c++编译器?如果有相关的source地址,请大侠指
点。本人纯属新手,请大侠赐教。多谢多谢。bow//.
m*****l
发帖数: 55
37
来自主题: BuildingWeb版 - how to add cgi module in apache?
i just quickly installed apache in UNIX, and wrote a CGI program,
but i can not run it. how can i do?
v****r
发帖数: 158
38
来自主题: BuildingWeb版 - how to add cgi module in apache?
cp to cgi-bin.
b**s
发帖数: 589
39
down.kk66.com (or down.k666.com)
first search CGI, then choose 论坛程序
I think YUZI BBS is a good one
p******f
发帖数: 162
w*h
发帖数: 286
41

偶也知道这个理,可是偶到那里去找免费的支持PHP的空间?偶找
遍了GOOGLE的搜索,只有NETFIRMS还行,不交银子的话只有CGI服
务,只有交银子才有PHP服务,这道让偶想起了国内的小姐,给什
么样的钱才有什么样的服务。偶到那里才能找到即不化钱也能给
优质服务的“小姐”啊!最近,我一口气做了三个论坛,在不同的
免费“小姐”处,要不就是敷衍,要不就是奇慢无比,偶是没有那
个耐心,不只“顾客”们是什么想法。ASP的程序就更糟糕!那多
数是在WIN下的SERVER,访问起数据库来,那真叫在锻炼你的耐心!
这种形式的论坛还有谁上那?
这个MIT BBS这么火的一个关键原因是“快”,如果不快谁来这里?
a****n
发帖数: 7
42
来自主题: BuildingWeb版 - 一个关于CGI程序的问题
请问CGI被调用的时候的调用者是user,group 还是other?调用者和web server有什么关系

谢谢
z*q
发帖数: 29
43
来自主题: BuildingWeb版 - Help on View DB talbe using Perl CGI
Yes, for the first time, it will take time to retrieve all records
anyway.
But what I mean is I don't want to query database every time for some
records,
for example, for records 21-40, then 41-60. I want to save all retrieved
records
in a global array for the first time. Then I only show 1-20 records.
When user
click "Next Page", which trigger the same cgi, but for this time,
instead of
querying database again, I just check the global array, and show the
21-40 records.
Hope this time, it is cle
d*t
发帖数: 28
44
来自主题: BuildingWeb版 - Help on View DB talbe using Perl CGI
This is not the way to implement next/prev pages for CGI programs.
The server is stateless, meaning that the data will be gone after
you serve the first request, unless you store it in some persistent
storage such as database, file or shared memory.
Come on, mysql is fast in doing simple queries and it has a syntax
that allows you to fetch certain number of rows which is specifically
designed for implementing next/prev pages.
e***w
发帖数: 2
45
来自主题: BuildingWeb版 - 请教cgi程序问题
我用perl写了一段download file 的cgi sript, 一切运行正常,语句是
Content-Type:application/x-download\n
Content-Disposition:attachment;filename=$name\n\n
我希望download完毕以后页面能够显示一些信息,例如download的时间,
时间已经存在一个变量里面,不知道为什么我写在downlaod 后面的那些
print语句通通不工作,请高手指点指点,是不是页面需要refresh什么的?
w******o
发帖数: 21
46
来自主题: BuildingWeb版 - CGI sychronization?
I need to use CGI to let multiple users to access a single file, reading and
writing. How can I make sure the sychronization of accessing the file? Thanks!
a*********r
发帖数: 6
47
来自主题: BuildingWeb版 - Perl CGI to MySQL problem
I wrote a small Perl CGI to connect to the MySQL database installed on my
computer. The perl scripts run fine as a standalone program, however, when I
want to run it through Apache http server, there is always an internal error
saying sth about misconfiguration. those perl scripts that don't connect to
database have no problem. I've read several articles about the installation
and configuration, still can't find out what's wrong with my system.
Anybody has any experience or idea about this, plea
c*p
发帖数: 31
48
【 以下文字转载自 Programming 讨论区,原文如下 】
发信人: ccp (yeti), 信区: Programming
标 题: Per/CGI 表单:两类元素如何绑定?
发信站: Unknown Space - 未名空间 (Thu Mar 31 02:31:53 2005) WWW-POST
设计了这样一个表单界面:
[]0.bmp ()A ()B
[]1.bmp ()A ()B
.................
[]100.bmp ()A ()B
[submit]
Note:
[]:checkbox 选择文件
(): radio button 选择文件性质A or B,插入不同field in DB
这个界面是由前面负责转换文件的script产生的一个中间界面,动态的显示一系列转换过
的文件。
Question:
表单提交后,变量checkbox 和radion button 是不同的数组变量,怎样才能关联在一起
处理? 比如一个二位数组变量?(perl支持?) 还是别的方法?
或者界面不用checkbox?用其他的元素?
多谢各位相助!
c***c
发帖数: 21374
49
来自主题: BuildingWeb版 - Re: cgi测试newbee问题
apache情况下需要设置cgi目录
iis情况下需要关联相应的文件扩展名
w*s
发帖数: 7227
50
来自主题: BuildingWeb版 - cgi.pm: how to align the h1('hello')
perl, CGI.pm,
start_html(-title=>"hello"),
h1('world'),
...
how to move "world" to the center of the webpage ?
thanks !
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)