㈠ 谁有理想论坛的邀请注册码
蓝色理想?不是可以注册么?
㈡ 理想论坛如何发帖
我如何发表新主题
在论坛版块中,点“新帖”,如果有权限,您可以看到有“投票,悬赏,活动,交易”,点击即可进入功能齐全的发帖界面。
注意:一般论坛都设置为高级别的用户组才能发布这四类特殊主题。如发布普通主题,直接点击“新帖”,当然您也可以使用版块下面的“快速发帖”发表新帖(如果此选项打开)。一般论坛都设置为需要登录后才能发帖。
我如何发表回复
回复有分三种:第一、贴子最下方的快速回复; 第二、在您想回复的楼层点击右下方“回复”; 第三、完整回复页面,点击本页“新帖”旁边的“回复”。
㈢ 理想论坛是股票的论坛吗
理想论坛是股票的论坛,在国内的知名度很高的,
㈣ 我注册了理想论坛id,为什么没有找到发表主题贴的按纽啊
注册后请先在新注册会员实习区发帖(主题帖、回复贴皆可),在新手区满10分后,就可以进入其它版区发帖学习和交流了。
㈤ 谁知道理想股票论坛的地址,看清了不是理想论坛
55188
㈥ 解决QQ和360共存问题 本文来自:理想论坛 www.55188.com 作者:连国彬 -------------------------
QQ公司有点过了噢,别人用什么杀毒软件防火墙是别人的自由,不能用了就不让用QQ了吧,QQ的用户是广大的无辜大众,你不是在和360过不去,而是在和广大拥护使用QQ的用户过不去
㈦ 理想论坛的硬件具体情况
MySQL服务器: DualXeon 5335/8GB内存/73G SAS硬盘(RAID0+1)/CentOS5.1-x86_64/MySQL5
三台WEB服务器如下:
N1. Dual Xeon 3.0 2GB 内存
N1. Dual Xeon 3.0 4GB 内存
N1. Dual Xeon 3.0(双核) 4G内存
另外有三块300G的SCSI硬盘准备做RAID5,用来存放附件,四台机器通过内网连接
猪头考虑过的解决方案如下:
1. ZEUS + PHP5 + eAccelerator
2. squid + Apache2 + PHP + eAccelerator
3. nginx + PHP(fastcgi) + eAccelerator
4. nginx + Apache2 + PHP + eAccelerator
第一个方案,属于比较完美的,而且很稳定,但是最大的问题是ZEUS是收费软件,用盗版总会受良心责备的,所以暂时押后做候补方案
第二个方案,squid转发请求给Apache2,很多网站都采用这种方式,而且效率也非常高,猪头也测试了一下,但是问题非常严重,因为squid是把文件缓存起来的,所以每一个访问过的文件,squid都要把它打开,理想论坛拥有150G的附件,而且访问量巨大,这种情况下只有打开squid,机器很快就会因为打开文件过多而拒绝响应任何请求了,看来也不适合,只适合缓存文件只有几百M以内的网站.
第三个方案,猪头对第三个方案的测试结果是访问量大的时候,PHP经常会出现bad gateway,看来通过TCP连接Fastcgi执行PHP的方法不够稳定,猪头也测试了通过Unix Socket连接执行PHP,同样还是不稳定.
对比之下,猪头目前使用了第四种解决方案.
Apache2的安装。
(由于服务器采用FreeBSD7,所以大部分软件将会通过ports安装)
由于Apache2只需要处理PHP请求,所以其他模块基本上都不需要,所以不要选择安装其他模块,即使rewrite也不需要,因为rewrite将会在nginx上面实现,如果熟悉,还可以修改Makefile删掉不需要的部分,这样经过优化之后,apache将会以最稳定最高效的方式处理PHP请求
make install clean
修改httpd.conf(这里仅列出要修改/增加的部分)
vi /usr/local/etc/apache2/httpd.conf
把KeepAlive On修改为KeepAlive Off,在下面添加
ServerLimit 2048
MaxClients增加到512
Listen 127.0.0.1:81 #由于httpd服务器不需要对外开放,仅仅处理nginx转发过来的PHP请求,所以仅仅需要监听本地的端口.
另外增加对PHP的支持
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
至于添加虚拟主机的部分将不再啰嗦,注意虚拟主机也监听本地81端口就可以了
PHP5的安装(GD库等模块请提前装好)
cd /usr/ports/lang/php5
修改一下Makefile,把需要的东西加上去吧
本来应该有这样一段的
CONFIGURE_ARGS=
--with-layout=GNU
--with-config-file-scan-dir=${PREFIX}/etc/php
--disable-all
--enable-libxml
--with-libxml-dir=${LOCALBASE}
--enable-reflection
--program-prefix=
我们要把它修改成
CONFIGURE_ARGS=
--with-layout=GNU
--with-config-file-scan-dir=${PREFIX}/etc/php
--disable-all
--enable-libxml
--with-libxml-dir=${LOCALBASE}
--enable-reflection
--program-prefix=
--with-config-file-path=/etc --enable-mbstring --enable-ftp --with-gd --with-jpeg-dir=/usr/local --with-png-dir=/usr/local --enable-magic-quotes --with-mysql=/usr/local --with-pear --enable-sockets --with-ttf --with-freetype-dir=/usr/local --enable-gd-native-ttf --with-zlib --enable-sysvsem --enable-sysvshm --with-libxml-dir=/usr/local --with-pcre-regex --enable-xml
make install clean
cp work/php-5.2.5/php.ini-dist /etc/php.ini
安装eAccelerator
cd /usr/ports/www/eaccelerator
make install clean
把以下部分添加到php.ini尾端:
extension_dir=/usr/local/lib/php/20060613/
extension=eaccelerator.so
eaccelerator.cache_dir=/tmp/eaccelerator
eaccelerator.shm_size=64
eaccelerator.enable=1
eaccelerator.optimizer=1
eaccelerator.check_mtime=1
eaccelerator.debug=0
eaccelerator.filter=
eaccelerator.shm_max=0
eaccelerator.shm_ttl=60
eaccelerator.shm_prune_period=60
eaccelerator.shm_only=0
eaccelerator.compress=1
eaccelerator.compress_level=9
eaccelerator.keys=shm_and_disk
eaccelerator.sessions=shm_and_disk
eaccelerator.content=shm_and_disk
建立缓存目录以及修改权限
mkdir /tmp/eaccelerator
chmod 777 /tmp/eaccelerator
chown nobody:nobody /tmp/eaccelerator
nginx的安装以及配置
cd /usr/ports/www/nginx
make install
有几个mole是我们需要的,要选上
HTTP mole
http_addition mole
http_rewrite mole
http_realip mole
http_stub_status mole
其他的看自己需要了
修改配置文件
vi /usr/local/etc/nginx/nginx.conf
user nobody nobody;
worker_processes 4;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid /var/log/nginx.pid;
events {
worker_connections 10240;
}
http {
include mime.types;
default_type application/octet-stream;
limit_zone one $binary_remote_addr 10m;
#log_format main '$remote_addr - $remote_user [$time_local] $request '
# '$status $body_bytes_sent $http_referer '
# '$http_user_agent $http_x_forwarded_for';
sendfile off;
tcp_nopush off;
#keepalive_timeout 0;
keepalive_timeout 10;
gzip off;
server {
listen 80;
index index.html index.htm index.php;
access_log /dev/null combined;
limit_conn one 5;#限制一个IP并发连接数为五个
error_page 404 /404.html;
error_page 403 /403.html;
location /status {
stub_status on;
access_log off;
auth_basic NginxStatus;
auth_basic_user_file conf/htpasswd;
}
#在根目录使用Discuz6.0 rewrite规则,如果你的论坛在二级目录下面,则要相应修改location
location / {
rewrite ^/archiver/((fid|tid)-[w-]+.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+).html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ /viewthread.php?tid=$1&extra=page\%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+).html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+).html$ /tag.php?name=$1 last;
break;
error_page 404 /404.html;
error_page 403 /403.html;
}
#对附件做防盗链,没有正确的referer将会返回403页面
location ~* ^.+.(gif|jpg|png|swf|flv|rar|zip|doc|pdf|gz|bz2|jpeg|bmp|xls)$ {
valid_referers none blocked server_names *.55188.net *.55188.com;
if ($invalid_referer) {
rewrite ^/
}
}
#转发PHP请求到本地的81端口,让Apache处理.
location ~ .php$ {
proxy_pass http://127.0.0.1:81;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_hide_header Content-Type;
}
}
}
测试一下你的配置文件是否都正确
/usr/local/sbin/apachectl configtest
/usr/local/sbin/nginx -t
都没问题的话就启动服务器吧
/usr/local/sbin/apachectl start
/usr/local/sbin/nginx -c /usr/local/etc/nginx/nginx.conf
浏览一下主页,应该正常了
㈧ 理想论坛怎么了
被封了。去贴吧啊!
㈨ 关于注册理想论坛问题
楼主你好,
可能你填错了邮箱吧!
你可以仔细检查一下填写的邮箱,
或者重新注册一个账号。
希望楼主能够满意!
(成功了的话,就请楼主点击一下这个链接吧!没有病毒,是理想论坛)
http://www.55188.com/?fromuser=凉爽的春天
㈩ 理想论坛怎么上不了
http://55188.com/index.php这样就可以上了。