In Feburary 2016 29,
Select 'Tools' from inside the CMS program then click on 'User Permissions.'
Select 'ACD' or 'ACD Group' from the 'ACD' field depending on which type of user you need to create according to the company's IT policy.
Click on 'User Data' in the 'Operations' list, and then click 'OK.'
Fill in the user information for the user you are creating. Including user ID, user name, room number, telephone number, default printer, login type, maximum user count, maximum refresh rate and login ACD. Fields other than user ID and user name are optional. You enter the information that applies according to your company's IT policy for new accounts.
Select 'Actions' from the menu bar, and click on 'Add.' The user is added and can now log in to Avaya CMS.
In Feburary 2016 29,
Showing posts with label company. Show all posts
Showing posts with label company. Show all posts
Monday, 29 February 2016
Saturday, 27 February 2016
How to setup Google Apps Standard Edition (free) with a new Domain NameIn Feburary 2016 27,
In Feburary 2016 27,
Start your web browser and navigate to 'https://www.google.com/a/cpanel/domain/new.' Enter your domain and click 'Get Started.'
Enter your personal information in the fields marked with an asterisk (*). You may also enter the incidental information for your company or organization, but it is not required. Your sign-up email may not be on the domain that you are setting up.
Click the check-box next to 'Google Apps requires changes to DNS to properly set up services. ' Click 'Continue.'
Enter a username/email address and a password. Enter the captcha phrase. Click 'I accept. Continue with the setup.'
Click 'Next,' then 'Next' again. Right-click the HTML file and save it to your computer desktop. Open your FTP application a new web browser and upload the file to your web server. If you do not know how to access your file serve,r consult your web master or network administrator.
Switch back to the Google Apps browser window. Click 'Verify.' You Google Apps account is now enabled.
In Feburary 2016 27,
Start your web browser and navigate to 'https://www.google.com/a/cpanel/domain/new.' Enter your domain and click 'Get Started.'
Enter your personal information in the fields marked with an asterisk (*). You may also enter the incidental information for your company or organization, but it is not required. Your sign-up email may not be on the domain that you are setting up.
Click the check-box next to 'Google Apps requires changes to DNS to properly set up services. ' Click 'Continue.'
Enter a username/email address and a password. Enter the captcha phrase. Click 'I accept. Continue with the setup.'
Click 'Next,' then 'Next' again. Right-click the HTML file and save it to your computer desktop. Open your FTP application a new web browser and upload the file to your web server. If you do not know how to access your file serve,r consult your web master or network administrator.
Switch back to the Google Apps browser window. Click 'Verify.' You Google Apps account is now enabled.
In Feburary 2016 27,
Labels:
Apps,
asterisk,
company,
Email,
Enter,
Google,
incidental,
organization,
required,
sign
How to Replace a Substring in Oracle SQLIn Feburary 2016 27,
In Feburary 2016 27,
Sign in to SQLPlus.
Type a 'select' command using the 'replace' function and press 'enter':select string_column, replace(string_column, 'co.', 'company') from string_table;This command retrieves the 'string_column' twice so that the user can see a before-and-after representation of the data. In this case, 'co.' is the target and 'company' is the replacement.
Inspect the results to see the replacement. If the 'string column' contained 'abc co.', it should now be converted to 'abc company.'
Translate Function
Sign in to SQLPlus.
Type a 'select' command using the 'translate' function and press 'enter':select string_column, translate(string_column, 'abc', 'xyz') from string_table;This command retrieves the 'string_column' twice so that the user can see a before-and-after representation of the data. The phrase 'abc' is the 'fromlist', and 'xyz' is the 'tolist.'
Inspect the results to see the replacement. If 'string column' contained 'abc co.', it is converted to 'xyz zo.'
In Feburary 2016 27,
Sign in to SQLPlus.
Type a 'select' command using the 'replace' function and press 'enter':select string_column, replace(string_column, 'co.', 'company') from string_table;This command retrieves the 'string_column' twice so that the user can see a before-and-after representation of the data. In this case, 'co.' is the target and 'company' is the replacement.
Inspect the results to see the replacement. If the 'string column' contained 'abc co.', it should now be converted to 'abc company.'
Translate Function
Sign in to SQLPlus.
Type a 'select' command using the 'translate' function and press 'enter':select string_column, translate(string_column, 'abc', 'xyz') from string_table;This command retrieves the 'string_column' twice so that the user can see a before-and-after representation of the data. The phrase 'abc' is the 'fromlist', and 'xyz' is the 'tolist.'
Inspect the results to see the replacement. If 'string column' contained 'abc co.', it is converted to 'xyz zo.'
In Feburary 2016 27,
Labels:
case,
company,
data,
Enter,
representation,
retrieves,
string_column,
string_table,
Type,
USER
Monday, 22 February 2016
How to Update My WebsiteIn Feburary 2016 22,
In Feburary 2016 22,
Go to the link below and click on 'Free Trial.' After registering at the site, download Adobe DreamWeaver, a website design program for updating your website.
Download your website in html or htm format using the FTP server from your hosting company or the 'File Manager' feature of your hosting company. (For example, if your website is hosted at Globat.com, then go there, click on 'File Manager' and download 'index.html.')
Decide whether you are more comfortable working with a graphic visual interface or looking directly at the code. Click on the 'Design' button to see the website from a graphical perspective or on the 'Code' button to look at the html.
Update your website by adding the necessary new paragraphs or lines of code. If you are using the graphical view, click 'In Context Editing' to create a region where text can be edited. Clicking on the region again will cause a cursor to appear so you can edit the text directly on the webpage using the design interface.
Update your website in 'Code View' simply by finding the line where text needs to be added or changed, and replacing your old text with the new information.
In Feburary 2016 22,
Go to the link below and click on 'Free Trial.' After registering at the site, download Adobe DreamWeaver, a website design program for updating your website.
Download your website in html or htm format using the FTP server from your hosting company or the 'File Manager' feature of your hosting company. (For example, if your website is hosted at Globat.com, then go there, click on 'File Manager' and download 'index.html.')
Decide whether you are more comfortable working with a graphic visual interface or looking directly at the code. Click on the 'Design' button to see the website from a graphical perspective or on the 'Code' button to look at the html.
Update your website by adding the necessary new paragraphs or lines of code. If you are using the graphical view, click 'In Context Editing' to create a region where text can be edited. Clicking on the region again will cause a cursor to appear so you can edit the text directly on the webpage using the design interface.
Update your website in 'Code View' simply by finding the line where text needs to be added or changed, and replacing your old text with the new information.
In Feburary 2016 22,
Thursday, 4 February 2016
How to Use SFTP in PuttyIn Feburary 2016 04,
In Feburary 2016 04,
Open a command prompt window by clicking the 'Start' button on your computer and typing 'Run.' Type 'cmd' in the box and click 'OK' to open the command prompt window.
Enter 'PSFTP' at the command prompt. This invokes the FTP client within Putty.
Type your user name for the company network. Contact your network administrator if you do not have a user name or if you have forgotten what it is. Type your password when prompted.
Use the 'Get' command to retrieve a file from the remote system and save it to your computer's hard drive. For instance, to retrieve a file called 'MyFile.txt' you would type 'Get MyFile.txt.' Press enter to start the file transfer.
Type 'Put' to send a file from your hard drive to the remote system. To send a file called 'MySettings.doc' you would type 'Put MySettings.doc.'
In Feburary 2016 04,
Open a command prompt window by clicking the 'Start' button on your computer and typing 'Run.' Type 'cmd' in the box and click 'OK' to open the command prompt window.
Enter 'PSFTP' at the command prompt. This invokes the FTP client within Putty.
Type your user name for the company network. Contact your network administrator if you do not have a user name or if you have forgotten what it is. Type your password when prompted.
Use the 'Get' command to retrieve a file from the remote system and save it to your computer's hard drive. For instance, to retrieve a file called 'MyFile.txt' you would type 'Get MyFile.txt.' Press enter to start the file transfer.
Type 'Put' to send a file from your hard drive to the remote system. To send a file called 'MySettings.doc' you would type 'Put MySettings.doc.'
In Feburary 2016 04,
Monday, 1 February 2016
How to Create a Free Website for KidsIn Feburary 2016 01,
In Feburary 2016 01,
Decide what kind of content your website will offer to kids. A few examples of content to consider are games, puzzles and coloring pages. Do your research to make sure the content that you are adding is age appropriate for the kids who will be visiting your site.
Create a new account with a free web hosting company who will host your kids' website for free. This is accomplished by clicking on the 'New User' link. The exact wording will vary by site, but the keyword is 'new.'
Log into your free web hosting account with the user name and password you chose when creating your new account.
Open the 'File Directory' to begin creating new pages for your kids' website. Click 'New' to create a new file or page. By doing so, your HTML editor will open up so you can begin creating content for your website.
Enter HTML code into the HTML editor to begin creating your first page. Some online sites will actually provide you with free HTML code for games and other kid activities. You can simply copy and paste their HTML code into your HTML editor.
Save the file when you have finished. It is best to save the file according to the content that is on the page. For example, you can save a games page as games.html and a coloring page as coloring.html.
Repeat Steps 4 through 6 until your kids' website is complete.
In Feburary 2016 01,
Decide what kind of content your website will offer to kids. A few examples of content to consider are games, puzzles and coloring pages. Do your research to make sure the content that you are adding is age appropriate for the kids who will be visiting your site.
Create a new account with a free web hosting company who will host your kids' website for free. This is accomplished by clicking on the 'New User' link. The exact wording will vary by site, but the keyword is 'new.'
Log into your free web hosting account with the user name and password you chose when creating your new account.
Open the 'File Directory' to begin creating new pages for your kids' website. Click 'New' to create a new file or page. By doing so, your HTML editor will open up so you can begin creating content for your website.
Enter HTML code into the HTML editor to begin creating your first page. Some online sites will actually provide you with free HTML code for games and other kid activities. You can simply copy and paste their HTML code into your HTML editor.
Save the file when you have finished. It is best to save the file according to the content that is on the page. For example, you can save a games page as games.html and a coloring page as coloring.html.
Repeat Steps 4 through 6 until your kids' website is complete.
In Feburary 2016 01,
Subscribe to:
Posts (Atom)