Bitrix Intranet Portal 7.1.5

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X OpenSource RSS Bitrix Intranet Portal 7.1.5
# 1  
Old 04-15-2009
CPU & Memory Bitrix Intranet Portal 7.1.5

ImageAbout Bitrix Intranet Portal
A business-driven intranet solution designed for Enterprise 2.0 collaboration. Get an effective and easy-to-use intranet portal that includes the latest integrated communication, collaboration, social networking, document sharing, and task management tools

Quick Setup&Deployment Process: Installation time is only 30 minutes, Easy-to-follow installation and configuration wizard, Multiple template options at your choice, Integration with Active Directory takes less than 4 hours, AD user profiles and user information are used for easy login, Ready-to-run intranet portal is launched on your server, No client software installation, Customize portal according to your business requirements. Many more features.

More from Apple...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. IP Networking

How to add intranet sites to DNS cache?

Hi all, I'm hosting a site for my team in my LAN, for which my team mates should type my hosting server IP address in the web browser, example: http://192.168.134.213:78/testteam/ This is really hectic to type the ip address always, is there anyway where i can create a site name mapping to... (7 Replies)
Discussion started by: Arun_Linux
7 Replies

2. UNIX for Dummies Questions & Answers

Intranet P2P Filesharing

I need suggestions for what to use. I need all my users to be able to share files and be able to search into all their files. I also need to control how much bandwidth they use so my network doesn't overload. I can't have my users searching/downloading directly from each other which is my... (5 Replies)
Discussion started by: GoranX
5 Replies

3. HP-UX

Intranet Server

Hi All, I am planning to move an intranet server from win to unix,any tips on how to go about doing this and also factor to consider.Any documentation will be greatly apppreciated. :confused: (1 Reply)
Discussion started by: Simelane
1 Replies

4. HP-UX

Intranet Server

I am planning to move an intranet server from win to unix,any tips/documentation/how guide on the subject will be greatly appreciatted. (0 Replies)
Discussion started by: Simelane
0 Replies

5. AIX

intranet web site

hello I would like to create an internal web site, but how do i make it with Aix ? I must to install apache and send my http pages in the declared repertory ? There are some configuration files to modify ?? thank you (2 Replies)
Discussion started by: pascalbout
2 Replies

6. UNIX for Advanced & Expert Users

Sending mail outside the intranet

hi Everybody while using the mail command , i sent a mail within the organization, it worked perfectly. Example of mail id victor@dev.unix.com But when i gave the mail command outside the intranet it failed and no responses of acknowledgement this is the example of mail id ... (8 Replies)
Discussion started by: victorvvk
8 Replies

7. UNIX for Dummies Questions & Answers

Remote access to Intranet

I am currently running my company's intranet on Linux Mandrake using Apache web server with the pages written in PHP. We currently have users who dial into the network who have access to the intranet, I need to find a way of stopping access to the user to certain pages when they dial in. Is there a... (1 Reply)
Discussion started by: robsebastian
1 Replies
Login or Register to Ask a Question
SPI_CURSOR_OPEN_WITH_PARAMLIST(3)			  PostgreSQL 9.2.7 Documentation			 SPI_CURSOR_OPEN_WITH_PARAMLIST(3)

NAME
SPI_cursor_open_with_paramlist - set up a cursor using parameters SYNOPSIS
Portal SPI_cursor_open_with_paramlist(const char *name, SPIPlanPtr plan, ParamListInfo params, bool read_only) DESCRIPTION
SPI_cursor_open_with_paramlist sets up a cursor (internally, a portal) that will execute a statement prepared by SPI_prepare. This function is equivalent to SPI_cursor_open except that information about the parameter values to be passed to the query is presented differently. The ParamListInfo representation can be convenient for passing down values that are already available in that format. It also supports use of dynamic parameter sets via hook functions specified in ParamListInfo. The passed-in parameter data will be copied into the cursor's portal, so it can be freed while the cursor still exists. ARGUMENTS
const char * name name for portal, or NULL to let the system select a name SPIPlanPtr plan prepared statement (returned by SPI_prepare) ParamListInfo params data structure containing parameter types and values; NULL if none bool read_only true for read-only execution RETURN VALUE
Pointer to portal containing the cursor. Note there is no error return convention; any error will be reported via elog. PostgreSQL 9.2.7 2014-02-17 SPI_CURSOR_OPEN_WITH_PARAMLIST(3)