Lunarpages主机控制面板——Alpaca

现在Lunarpages虚拟主机上使用的控制面板是自己开发的alpaca面板(以下简称LPCP),新注册的账户将使用LPCP作为默认的主机控制面板,如果需要使用Cpanel面板,购买时需要指定控制面板为Cpanel面板,使用Cpanel面板需要额外支付2美金/月的费用。如果购买后需要从LPCP更换到Cpanel面板,也可以联系Lunarpages客服更换到Cpanel面板所在的服务器上,同样的需要收取2美金/月的费用。

老用户继续免费使用Cpanel面板,不受任何影响!

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机控制面板——Alpaca

文章的脚注信息由WordPress的wp-posturl插件自动生成

Lunarpages主机如何登陆MyLittleAdmin管理数据库

Lunarpages的windows主机如何登陆MyLittleAdmin管理数据库呢?

在这里提供两种方法的登陆MyLittleAdmin:

方法1、登陆plesk面板,单击你的当前域名,点自定义按钮下的“MyLittleAdmin Tool”

  • 在登录字段中,输入您的数据库用户名。
  • 在密码字段中,输入您的数据库用户的密码。
  • 单击“连接”按钮。

方法2、按照你mssql数据库所在的服务器选择下面的链接登陆

要确定你应该选择哪个链接登陆,可以发邮件联系LP客服,或者登陆你的主机账户在你的主机信息里有

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机如何登陆MyLittleAdmin管理数据库

文章的脚注信息由WordPress的wp-posturl插件自动生成

Lunarpages主机如何添加JSP功能

Lunarpages主机上如何使用jsp网站?

默认情况下Lunarpages主机basic方案是不支持JSP的,要想在Lunarpages主机上使用JSP需要额外添加,这项服务器是收费的,Lunarpages主机商需要收取4.95/月的费用

下面来介绍一下在Lunarpages主机申请开通JSP的操作步骤:

要想添加JSP到你的主机账户里,需要联系Lunarpages客服发邮件到 [email protected] 或到help desk ticket 提交ticket

邮件内容如下:

Primary Domain Name(主域名):
User Name(主机用户名):
The Last 4 Digits of Your Credit Card(信用卡的最后四位数字):

If you do not have a credit card on record then please provide(如果不能提供信用卡的最后四位数字,请提供以下信息):

Primary Domain(主域名):
User Name(主机用户名):
Postal Address(详细的联系地址):
Phone Number(真实的电话号码):
First/Last Digits of Password(主机账户密码的第一个和最后一个字符):

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机如何添加JSP功能

文章的脚注信息由WordPress的wp-posturl插件自动生成

Lunarpages主机独立IP价格上调

近日,Lunarpages主机独立IP价格上调,独立IP价格由原来的2.95美金/月,提高到现在的4.95美金/月,这个上调幅度有些大,相对其他主机这个价格的确让人难以接受,如果还没有购买独立IP的,建议暂时先观察一段时间,不用急着购买。

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机独立IP价格上调

文章的脚注信息由WordPress的wp-posturl插件自动生成

Lunarpages主机ASP.NET使用CDOSYS发送邮件

Lunarpages的windows主机ASP.NET可是使用哪种邮件组件收发邮件呢?

Lunarpages的windows主机可以使用CDOSYS组件收发邮件,脚本如下:


Const cdoSendUsingPickup = 1
Const cdoSendUsingPort = 2
Const cdoAnonymous = 0
Const cdoBasic = 1
Const cdoNTLM = 2
Set objMessage = Server.CreateObject("CDO.Message")
objMessage.Subject = "Example CDO Message"
objMessage.Sender = "[email protected]"
objMessage.From = "[email protected]"
objMessage.To = "[email protected]"
objMessage.TextBody = "This is some sample message text.." & vbCRLF & "It was sent using SMTP authentication."
'==This section provides the configuration information for the remote SMTP server.
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
'Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.your.com"
'Type of authentication, NONE, Basic (Base64 encoded), NTLM
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
'Your UserID on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusername") = "youruserid"
'Your password on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "yourpassword"
'Server port (typically 25)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
'Use SSL for the connection (False or True)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
objMessage.Configuration.Fields.Update
objMessage.Send

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机ASP.NET使用CDOSYS发送邮件

文章的脚注信息由WordPress的wp-posturl插件自动生成

Lunarpages主机JSP目录结构

Lunarpages主机下开启JSP,由于JSP工程项目的目录、文件有规定的结构,所以这里给出了在Lunarpages空间下,jsp文件的目录结构:

  • public_html
    • index.jsp
    • post-article.xtp
    • WEB-INF
      • web.xml
      • lib
        • bulletin-board.jar
      • classes
        • Navigation.class
        • HelloWorld.class
      • xsl
        • default.xsl
        • article.xsl
    • webapps
      • myjspfiles.war

public_html是空间的根目录,jsp页面就放在public_html目录下,开启JSP后,系统会在public_html下新建WEB-INF目录,里面包含web.xml文件及lib、classes目录,webapps下存放的是jsp工程文件

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机JSP目录结构

文章的脚注信息由WordPress的wp-posturl插件自动生成

Lunarpages主机支持哪些JSP框架?

Lunarpages主机可以添加JSP功能,但共享环境下的Lunarpages Basic方案只是哪些JSP框架呢?
Lunarpages主机支持以下JSP框架:

  • FreeMarker
  • iBatis
  • Niggle
  • Struts
  • WebMacros

尚不支持Hibernate —— 消耗资源厉害
尚不支持Spring —— spring框架不适合在共享主机的环境

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: Lunarpages主机支持哪些JSP框架?

文章的脚注信息由WordPress的wp-posturl插件自动生成

LunarPages主机404重定向

LunarPages主机支持404重定向和修改MIME类型,具体方法如下:
1、登录LunarPages主机的Cpanel控制面板,点选“Error Pages”

LunarPages主机404重定向
2、然后选择你要重定的Error Page页面404

LunarPages主机404重定向
3、输入你输入的404 error page HTML网页(里面可以随意设置你要的MIME类型),然后点下“Save”就完成404重定向

LunarPages主机404重定向

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: LunarPages主机404重定向

文章的脚注信息由WordPress的wp-posturl插件自动生成

支持jsp主机的LunarPages

LunarPages主机支持JSP的空间吗?而且这样的空间提供多少个FTP账户呢?支持数据库备份吗?

Lunarpages的 Basic Plan可以支持JSP,只不过JSP并不是一般的主机功能,所以你需要JSP功能的话则须在购买流程里额外添购JSP主机功能。

Lunarpages的 Basic Plan 支持的无限个mySQL数据库和postgre SQL数据库,而且也提供无限个FTP帐户。当然,Lunarpages每天都会为所有的网站备份,这也包括数据库里的所有资料。

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: 支持jsp主机的LunarPages

文章的脚注信息由WordPress的wp-posturl插件自动生成

重新订购Lunarpages的Windows Hosting

你是否遇到这样的情况呢?购买LunarPages Basic Plan的Linux主机方案后,后悔了,想要购买unarpages的支持ASP的那款主机,同时还想留住我的域名,出现这样这样才状况,该如何操作呢,以及费用如何计算?

虽然Lunarpages Basic Plan是Linux主机,但也可以额外购买添加ASP功能的,当然如果你的网站不止需要ASP,而且还会用到MS SQL或ACCESS数据库的话,那就只可以选择Lunarpages Windows Plan了。

如果你要购买Lunarpages Windows Plan, 其实不需要取消你的Lunarpages Basic Plan,只需通知Lunarpages客服说明你要把Basic Plan 转换去 Window Plan 就行了,这样一来, 他们只需把你的网站从Linux 主机迁移到Window主机,同时也将继续保留你的域名,至于费用方面,你只需付这两个主机配套价格之间的差别。

我们帮你写了英文的申请转换要求,你可以做一些修改后使用:
Hi,
I applied a Lunarpages Basic Plan hosting account for my website: XXXX(这里请填写你的网站域名) on date: XX/XX/2009 (这里请填写你的主机申请日期). However, I came to realize that Basic plan is in fact a Linux hosting which do not support ASP .net feature that required by my website. Therefore, I’m writing to request to change my hosting plan from Basic plan to Windows plan. Obviously, I want to keep my origianl domain name intact after the move. Please let me know the additional cost and process involved as well as the date of the moving. Looking forward to your reply. Thank you.

你可以到Lunarpages 客服 或电邮: [email protected], 把以上要求通知Lunarpages,他们在收到你的转换主机方案申请邮件后,很可能会要求你提供你的Lunarpages用户名,网站域名和信用卡最后4个数字,主要是在验证你的正式请求后从你的信用卡扣除相关款额。

原创文章,转载请注明: 转载自国外主机评测

本文链接地址: 重新订购Lunarpages的Windows Hosting

文章的脚注信息由WordPress的wp-posturl插件自动生成