Access to Lotus Notes Calendar via PHP? - php

I try to get my Lotus Notes calendar entries via PHP.
I read about the REST API, but when I tried to access my calendar there is an forbidden error and it seems that to access the content, there must be some settings on the Lotus Notes Server (I cannot make this as the servers are hold by external admins)
I know that I cann access the entries via vba, like the guy in this thread made. For this I only need the mail database .nsf and the server (for me it works with just "")
I'm sure that there must be a possibility to also get the wished content in PHP...
Please help me, a workaround by calling a vba file doing the job wouldn't be very nice ;-)
Thank you in advance!

This old article describes how to use the Lotus Notes COM API in PHP. It also gives a couple of other alternatives, which you might find useful if you're not running your PHP server on a Windows host.

Related

Not able to connect Php application with SharePoint

I am a php developer have no experience with Share Point. I have follow these two links to get Data from Share Point into my Php application.
stackoverflow question here.
A Library for Share Point here.
Share Point team give me 2 IP address. What they said is, I have to login at Forti Client with first IP then second IP is used to access application in browser which is also prompted for Credentials. If I not login in Forti Client with first IP, Web Application will not work at all. One more thing is, this process is working well in windows system but not working on ubuntu (Linux).
So, My Php applications are running on AWS linux ( ec-tier ). I have to get data from Share Point.
I just want to know is it possible to get data from Share Point into my application.
If it is possible then what is the process that I should follow in order to get data.
Kindly help me with your suggestions/answers. Thank you.
Hope these links help you out.
Forti Client CLI for Linux click here.
Shell Script To Use CLI click here.
Is it a SharePoint List or Document library?
If it's a list, use web API to call for the required info.
Refer to my answer in this post:
how to add a connection to a sharepoint list to a word addin

Create an email account with PhP - With some things I need to work around

I need to create an email account in PhP. I found a ton of code samples online that do this, however I have a few problems:
I'm on a shared server host with the default php.ini, and my host won't change it
I need to create it via a URL, not with forms (something like: mywebsite.com/email.php?username=user)
The password and quota created needs to be the same every time, so the only thing after the ? I need is the username
I have 0 experience with PhP so I can't just edit one I find online, so sorry if this is easy. If someone could point me in the direction of a script someone made or something that'd be great! Thanks.
From your reply, it turns out that you are using cPanel. This is quite helpful, as cPanel provides its own XML API for some administrative tasks, including creating email accounts.
You can find a ready made script that uses the cPanel XML API and does what you require in this forum post:
http://forums.glowhost.com/programming-talk/using-cpanel-api-creating-email-account-forwarders-your-own-php-scripts-2798.html
This SO question contains information on how to use the cPanel XML API yourself.
If for some reason you can't get the XML API to work, there's another script that makes regular HTTP calls to cPanel itself over here:
http://www.zubrag.com/scripts/cpanel-create-email-account.php

Communicate through xmpp protocol for php and ios

I am a php developer and I installed xampp in my machine. I have a mysql database where user table is there. This table is containing userid, name and online status(1 or 0).
I have to send the list of current online users to ios client, which is not supposed to request again and again. Instead of that if any changes occurs in table, automatically it will update in ios. I need only online user list, not for the te
By googling, I come to know that we can use XMPP protocol for that. But as I am using xampp server, it is using http protocol. So could you please let me know whether my googling is correct or not. If yes then please guide me how to proceed according to above mentioned environment and if no then please suggest what will be the better solution for that.

how to add a subdomain with another server ip in cpanle(API) with php script

I have a cpanel account. I wants to add a subdomain having ip (it points to another server) with the help of php script.
does any one have any idea?
Well first you should grab the XML-Api wrapper for php - it makes things a lot easier.
Then check the api reference for the methods you'll need.
http://docs.cpanel.net is the official documentation for the cpanel api. Unfortunately, it really is hard to get around, at least for me it was.
You will need to read up on the api yourself though since I know of no implementation of your issue.

Advice regarding either a web based FTP or a File Sending service

I could use some advice.
I'm building a website in which the general user needs to be able to transfer files to the site administrator. It could be done one of two ways:
1] Some kind of web based interface - PHP perhaps - to send files to the FTP. I've done some Googling but have yet to come up with anything concrete that works. I've considered using an Applet but I need something free. Also, it seems to me that people are hesitant to give Applets permission to run in their browser.
2] Some kind of file transfer service. I've looked at services like Megaupload but using a free account, the files are public and that will not work. I need something that a user could use to send a file to the administrator who could pick it up later.
If anyone has some suggestions, it would be appreciated.
Thanks in advance.
You can do file upload via http if you have enough space (which I assume since you also have access to a ftp server). See here for more information.

Categories