IBEE Solutions Web Hosting Blog
 
  • Business Solutions
  • Dedicated Hosting
  • Domain Names
  • IBEE Hosting Home
  • SEO Services
  • Web Hosting

Category Archives:

Microsoft

What is SQL Server 2005 Reporting Services Hosting?

Posted on  November 11, 2010  by  Betrand

Categories: Microsoft, Web Hosting
Tags: SQL reporting services, SQL Server 2005 Hosting, SQL Server Hosting, SSRS Hosting

SSRS Hosting nothing but providing SQL Server Reporting Services addition to SQL Server in your server. SQL Server 2005 Reporting Services (SSRS) is a robust reporting solution that runs on Microsoft Internet Information Services (IIS) on Microsoft Windows XP, Windows 2000, and Windows Server 2003. It works with data that resides on SQL Server 2005 platform, as well as other data sources. SSRS can deliver reports in a variety of formats. The reports can be delivered on paper or through interactive web-based reports.

SQL Server Reporting Services is a comprehensive, server-based solution that enables the creation, management, and delivery of both traditional, paper-oriented reports and interactive, Web-based reports.

SQL Server 2005 Reporting Services comes with the installation of SQL Server 2005. Installing SQL Server 2005 Services Pack 1 and Service Pack 2 is helpful in fixing some bugs of SSRS. We can create reports project in visual Studio 2005. We can also incorporate reports project with in our own website. Whenever you install Reporting Services, we could see virtual directories with the name Reports and Report Server gets created in the IIS.

For more details about SSRS hosting, you may reach by email at info@ibeesolutions.com or call to 1800-102-IBEE

0 Comment

Google Apps Vs Microsoft Online Services(BPOS)

Posted on  September 20, 2010  by  Betrand

Categories: General News, Google, Microsoft, Web Hosting
Tags: GAPE, Google Apps, Google Apps reseller Hyderabad, Google Apps reseller India, Microsoft BPOS, Microsoft BPOS reseller

As the Cloud computing concept is evolving, IT majors like Google and Microsoft are competing aggressively in this space. As a partner for both the companies, IBEE can see there is lot of improvement needed in terms of technology and analyzing customer needs with both the companies products. Here in this article i will try to evaluate the offerings of these products.

Google Apps
Google Apps comes as a packaged communication and collaboration solution with features like Email, Docs, IM, Calendar and Sites. Google Apps offers Standard, Premier, Education and Non-Profit versions with different pricing and features. However Standard and Education versions are Free and Premier version costs $50 per user per year, Non-Profit will get discount based on volumes. Features wise Premier, Education and non-profit versions are almost same and Standard Edition have only 7 GB storage vs 25 GB in Premier edition and Access to postini, SSO and other enterprise features are not available for standard edition.

As not many are opting for paid version, we need to wait and see how this will be a profitable venture for Google. For discounted Google Apps pricing click here

Microsoft BPOS
After seeing a good response for Google Apps in the market and Office share dropping down, Microsoft suddenly jumped into web based software business and reduced their on-premises BPOS prices and launched Microsoft office web apps in 2010. With this kind of immediate release there are lot of bugs with the control panel where the users and apps are managed. Microsoft BPOS is priced on a monthly basis as $10 per user and comes with Exchange Online Standard, Share Point Online Standard, Office Communication Online Standard, Live Meeting Standard.

For discounted Microsoft BPOS click here.

IBEE Solutions is a Microsoft BPOS and Google Apps reseller located in Hyderabad, India.

2 Comments

Microsoft Online Services / BPOS in India !

Posted on  January 27, 2010  by  Betrand

Categories: Microsoft, Web Hosting
Tags: BPOS, BPOS India, Microsoft Online Services

Microsoft recently launched its Online services called Business Productivity Online Standard Suite (BPOS) in India, which comes with powerful productivity capabilities of Microsoft Exchange Server, Microsoft Office SharePoint Server, Microsoft Office Communications Server, and Microsoft Office Live Meeting —all hosted online and all up and running quickly and easily without the upfront costs of an on-premise deployment. The suite of productivity tools enables your workers to communicate and collaborate effectively, while enabling your IT team to focus on more business-critical tasks. And with services hosted by Microsoft, you can have peace of mind knowing that experts are managing your IT and that your services will be available when you need them.

Seems like Microsoft changes the name from HostSpark to BPOS to compete with Google Apps. However as a partner of Microsoft Online Services / BPOS, IBEE offers discounted prices on setup, integrate and migration to Microsoft Online Services.

Click here for more details on pricing and how to enroll for Microsoft Online Services.

Contact IBEE at 09949922500 / mail at info@ibeehosting.com for more details.

1 Comment

How to Configure Cron Jobs in Windows Servers?

Posted on  October 13, 2009  by  Betrand

Categories: Microsoft, Web Hosting, Windows servers
Tags: cron job in windows servers, cron jobm windows servers

To configure or setup a Windows machine to run cron.php at a specific time follow the specific instructions below. This can be useful if you are not familiar with Linux/Unix, or if your web host does not offer the ability to run cron jobs; you can run them remotely from your own computer.

Note: These instructions were written for Windows XP but should be similar in other versions of Windows.

Creating a Scheduled Task

  1. Open Scheduler
  2. Go to Start > Programs > Accessories > System Tools > Scheduled Tasks
  3. Double-click Add Scheduled Task
  4. The Scheduled Task Wizard will appear. Click Next.
  5. Select the program to run. Choose your browser from the list (for example, Internet Explorer or Mozilla Firefox). Click Next.
  6. Give the task a Name, such as Drupal Cron Job, and choose the Frequency with which to perform the task (for example, Daily)). Click Next.
  7. Choose specific date and time options (this step will vary, depending on the option selected in the previous step). When finished, click Next.
  8. Enter your password if prompted. Change the username if required (for example, you’d like the task to run under a user with fewer privileges security reasons). Click Next.
  9. On the final page, select the checkbox Open advanced properties for this task when I click Finish and click Finish.

Configuring the task

  1. Go to the task’s setting page either by checking the checkbox at the end of the last step, or by double-clicking on the task.
  2. In the Run box, after the text that is there now (for example, C:\PROGRA~1\MOZILL~1\firefox.exe), enter a space and then type the address to your website’s cron.php page in double quotations (for example, C:\PROGRA~1\MOZILL~1\firefox.exe http://www.example.com/cron.php
  3. To set a frequency more often than Daily (for example, hourly), click the Schedule tab, then click Advanced. Here you can set options such as Repeat task, every 1 hour for 23 hours. Click Ok when finished.
  4. Change the start time on the task to one minute from the current time. This will allow you to test the task and make sure that it is working.
  5. When all settings have been configured to your liking, click Apply and OK (note: you may be prompted for your password)

Command-line version

Another way to perform the above commands is by using the schtasks (or at in Windows 2000) command from the command line. To duplicate the example above, which runs Firefox hourly to execute http://www.example.com/cron.php, open a command prompt (Start > Programs > Accessories > Command Prompt) and enter:

schtasks /create /tn "Drupal Cron Job" /tr "C:\PROGRA~1\MOZILL~1\firefox.exe http://www.example.com/cron.php" /sc hourly

Enter your password if prompted.

Using wget for Windows to run cron

If for whatever reason you’d rather not deal with a browser window popping up on the machine, you can use wget, the Windows port of which works more or less the same as it does in UNIX. curl and lynx also have windows ports but wget is probably the easiest to set up and use.

Grab a copy of wget from your choice of either the author’s site or from SourceForge. Install it to the location of your choice.

Follow the steps for Creating A Scheduled Task above, except select wget.exe as the program to run (you may need to click the Browse button to locate it if you installed from a .zip file, for example). When you get to the Advanced Properties dialog, paste in the following after the program path:

-O - -q -t 1 http://www.example.com/cron.php

Adjust the rest of the options as described above and test it.

1 Comment

Microsoft WebSpark !! What is this?

Posted on  September 25, 2009  by  Betrand

Categories: Microsoft, Web Hosting
Tags: free windows software, Microsoft webspark, webspark

Microsoft has released WebSpark Program recently to provide Visibility, support and software for professional Web Developers and Designers – at no upfront cost!, This is a program for professional Web Developers and Designers.

More details can be available at http://www.microsoft.com/web/websitespark/default.aspx

0 Comment
  • RSSRSS Feed
  • Categories

    • Blogging Tips (1)
    • Domain-Names (14)
    • General News (16)
    • Google (20)
    • Mobile Apps (4)
    • Offers and Promos (2)
    • Security (3)
    • SEO (32)
    • Social Media (3)
      • Facebook (3)
    • Web Design (9)
    • Web Development (4)
    • Web Hosting (38)
      • Control Panels (2)
      • Microsoft (5)
        • Windows servers (1)
    • Wordpress (1)
  • Tags

    blacklisted in google Corporate SEO CSS attacks Directory submission Domain-Names domain name domain registration expired domains free windows software FTP Google Apps Google browser Google Wave hosting company hosting packages hosting services Hostspark Host Spark IE Linux Hosting Microsoft Apps Microsoft webspark on-page restore MSSQL restore SQL database script injections Search engine optimization SEO SEO process SEO services SEO Strategy SQL 2005 SSRS Hosting templates unlimited hosting upload website Web Design webhost Webhosting Web Hosting website may harm in google search results webspark what is seo windows explorer XSS attacks
  • Archives

    • December 2011 (1)
    • July 2011 (1)
    • June 2011 (2)
    • April 2011 (3)
    • March 2011 (8)
    • February 2011 (2)
    • January 2011 (1)
    • December 2010 (3)
    • November 2010 (7)
    • October 2010 (1)
    • September 2010 (3)
    • August 2010 (2)
    • July 2010 (7)
    • June 2010 (4)
    • May 2010 (4)
    • April 2010 (4)
    • March 2010 (5)
    • February 2010 (7)
    • January 2010 (3)
    • December 2009 (4)
    • November 2009 (4)
    • October 2009 (3)
    • September 2009 (7)
    • January 2009 (1)
    • January 2008 (1)
    • December 2007 (28)
  • Resources

    • Free Anti Malware tool
    • Geeks From India
    • Google Apps
    • Telugu and Hindi Songs
    • Telugu Movie Reviews
Copyrights © 2010. All Rights Reserved.
IBEE Solutions