private static string sPath = @Directory.GetCurrentDirectory() + "\\config.ini"; [DllImport("kernel32")] private static extern long Wri...
分类:
其他好文 时间:
2015-08-25 18:21:33
阅读次数:
132
猛然发现通过http://ip:端口号/路径/config.ini竟然能下载项目代码的配置文件,检查nginx配置,原来是没有加限制,立即加上,并记录如下:location ~* \.(ini|docx|txt|doc)$ { deny all; } 转载:http://blog.cs...
分类:
其他好文 时间:
2015-08-05 06:28:34
阅读次数:
197
char SectionNames[MAX_PATH],*pSectionName; ZeroMemory(SectionNames,MAX_PATH); GetPrivateProfileSectionNames(SectionNames,MAX_PATH,"config.ini"); int i...
分类:
其他好文 时间:
2015-07-30 16:44:45
阅读次数:
109
ini文件[weixin_info]hello = Nick Huang#coding=utf-8#!/usr/bin/pythonimport ConfigParser;cp = ConfigParser.ConfigParser();cp.read('027.99.config.ini');he...
分类:
编程语言 时间:
2015-07-02 23:54:16
阅读次数:
239
研究了以下Qt下ini文件的读写,不废话,上干货。写入ini文件WriteIni.cpp 1 void WriteIni::writeSettings() 2 { 3 QSettings settings("config.ini", QSettings::IniFormat); // 当前目...
分类:
其他好文 时间:
2015-07-02 20:49:43
阅读次数:
142
请确保下面的文件是可写的:/path/to/your/magento-install/path/to/your/magento-install/downloader/path/to/your/magento-install/downloader/config.ini/path/to/your/mag...
分类:
其他好文 时间:
2015-06-28 16:57:05
阅读次数:
115
Amysql类 按照我的理解这就是框架的初始化上代码class Amysql { public $AmysqlProcess; public function Amysql() { global $Config; ini_set("magic_quot...
分类:
数据库 时间:
2015-06-22 17:50:48
阅读次数:
162
shopnc b2b2c开启伪静态的方法一. windows环境下 1.先下载isapi rewrite插件,安装,然后我们把根目录下面的htaccess.txt那么修改成.htaccess即可。 2.找到网站目录\data\config下面找到config.ini.php进行开启伪静态。 打...
分类:
其他好文 时间:
2015-06-18 15:05:23
阅读次数:
102
XServer与配置服务器,配置服务器保存有XServer的配置文件中的信息。如何在项目启动时,让XServer从配置服务器中获取到自己的配置信息,并达到通信资源的节省与控制。通信如下:
XServer与配置服务器都启动,没有先后顺序之分,初始配置服务器知道XServer的XServerHost和XServerPost,但是XServer不知道配置服务器的CfgHost和CfgPort;
配置服务器...
分类:
其他好文 时间:
2015-06-11 23:02:42
阅读次数:
129