|
Hi,
I am getting below error on my XAMPP. Cany anyone help please..
https://www.slideshare.net/api/2/search_slideshows?api_key=xxxxxx&ts=1413579243&hash=4a5a2485ebc026a59ef9f8168f1c9960f004023c&q=PHP&lang=en
Warning: simplexml_load_file(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in C:\xampp\htdocs\GraffitiWire\search_slideshow.php on line 27
Warning: simplexml_load_file(): I/O warning : failed to load external entity "https://www.slideshare.net/api/2/search_slideshows?api_key=xxxxxx&ts=1413579243&hash=4a5a2485ebc026a59ef9f8168f1c9960f004023c&q=PHP&lang=en" in C:\xampp\htdocs\GraffitiWire\search_slideshow.php on line 27
Technology News @ www.JassimRahma.com
|
|
|
|
|
Well, is https enabled in you PHP configuration?
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
How?
I have the following in my php.ini:
extension=php_openssl.dll
Technology News @ www.JassimRahma.com
|
|
|
|
|
|
I did.
According to the article you mentioned, I should check the extension path and openssl extenstion.
Here is my php.ini:
; On windows:
extension_dir="C:\xampp\php\ext"
extension=php_openssl.dll
Technology News @ www.JassimRahma.com
|
|
|
|
|
Jassim Rahma wrote: I did.
Ah, well, then I'll have to upvote you.
Jassim Rahma wrote: Here is my php.ini: Looks decent. Where did you download your XAMP? If I have the same copy I could give it a try in the weekend.
Do take in account that the other domain probably does not fall under the certificate; you could test that by hosting some dummy-content on the original server.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Hi,
I have a REST Json method like this.
double[] GetResult(List<ComplexType> tinput, string tdata);
And i am expecting a response from this method. But based on the result available in few articles in Internet, it seems like ComplexType object can only be passed in POST method not in GET method. But i want an array result from the above method as response.
Could any one help me how the UriTemplate an be assigned to the above method.?
And how to pass JsonInput Parameter to this REST method from c# client application and how to parse the result back to double[] type at client side.?
|
|
|
|
|
Hello,
A few days ago I posted here a message to ask for the best solution to test a website. At same time I decided to try some web hosting services to run a simple SVC web API.
I tried www.ovh.com (france), www.aruba.it (italy) and www.hostforlife.com (luxembourg). I was unable to set up my very simple ASP.NET C# 4.0 SVC Rest web API. I can publish my file without any problem but the web API doesn't work. It seems like the hosting services are not able to deal with svc file. The help of these services is so bad that I don't know what to do.
Do you know a good hosting service that understand and can mamage web svc API?
|
|
|
|
|
This issue may be out of scope for this forum; however, I have not found anything that solves this issue on the net. This is the situation. I have deployed an MVC web service to a Windows 2008 r2 server and insured that IIS is configured correctly, to the best of my knowledge, using Windows authentication and when I try to access the MVC web service I am getting a 404 error not found error. Now, when I try to access the service on another server it find the web service fine. I know that this is not a Server configuration forum but any help would be great.
Big thanks,
Steve
|
|
|
|
|
The problem was with the IIS bindings. The server bindings for the web service were bound for SSL so I add http port 80 to the bindings and it fixed the problem.
|
|
|
|
|
Hello,
I'm looking for an easy and cheap Windows Server / IIS / SQL solution. I just want to be able to deploy my application on a test machine. This is not for production.
First I looked at Azure and other hosting services. When you are requesting for a Windows Server with IIS and SQL it's too expensive. They offer a lot of services I don't need.
I'm now looking to build my own server at home. I already have a Synology but I cannot install IIS or a virtual machine on the Synology. I think I'll have to buy a new PC. I'm thinking of something like the Asus eeeBox but I'm not sure the eebox can run IIS or windows server.
What is the best solution? Virtual machine, hosting, Azure, new PC?
|
|
|
|
|
There are many commercial web hosting companies where you can get IIS with asp.net and SQL Server. Prices severly differ between companies.
|
|
|
|
|
Really depends on what you're trying to test... for me, there's nothing like having a PC with multi-boot setup for testing.
Why? ...because depending on the software that you're testing, if you find issues in the Virtual Machine, then you have to determine whether the issue comes from the virtualization process or if it's a real bug within your code. You also tend to spend a lot of time setting up a virtual system the way you need it, so IMO, for testing, it's worth it in the long run to just get a system you can boot into multiple OS's. I had a single, cheap server that I had set up to boot into three different versions of Windows Server, worked great for testing and I never had a doubt whether any extra layers were causing an issue.
Of course, virtualization has its benefits.... you always have a clean copy of the OS running (if that's what you want/need) and you can easily change OS's with little downtime.
Cloud based solutions tend to pretty much be virtual machines too.. so the only added benefit is the hosting is managed by someone else. Recurring costs are the drawback. Plus depending on your application, you may not want it hosted on the cloud, where someone else's sloppy security might affect you down the road.
|
|
|
|
|
Hi,
anyone knows about a free alternative to TeamViewer which gives an ID and PIN just like TeamViewer NOT by connecting to IP address?
I want this for remote support...
Thanks,
Jassim
Technology News @ www.JassimRahma.com
|
|
|
|
|
|
my 5.
We should be building great things that don't exist-Lary Page
|
|
|
|
|
I'm using Ammyy[^] a lot for RDP lately...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
You should also differentiate if you need to access computers in a different network or in the same network (which may be a virtual private network also). In the latter case, some kind of VNC might do.
Commercial alternatives usually offer more possibilities and thus might be worth their money!
|
|
|
|
|
|
|
Hello,
I'm trying to send text file to a IIS Server with the function WinHttpOpenRequest
hRequest = WinHttpOpenRequest(hConnect, L"PUT", L"/HelloTest1.txt", NULL, WINHTTP_NO_REFERER, WINHTTP_DEFAULT_ACCEPT_TYPES, NULL);
bResults = WinHttpSendRequest(hRequest, WINHTTP_NO_ADDITIONAL_HEADERS, 0, WINHTTP_NO_REQUEST_DATA, 0, wcslen(pwchData), 0);
But the http response is 404 NOT Found. Are there a special folder for the text file?
Thanks for your help
|
|
|
|
|
The only person who can answer that question is the person who set up the site.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Hi,
I would like to ask wat's the difference between the normal web host provides vs SSD web host providers?
and which one you'll recommend?
Thanks,
Jassim
Technology News @ www.JassimRahma.com
|
|
|
|
|
The only SSD acronym[^] which comes close to making any sense is "Solid State Drive[^]", which would imply that the host computer uses an SSD for faster performance.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I used the help page http:
Changed the database name to DataBase name: 819903
DataBase username: 819903
DataBase password: equal with account password
DataBase host: localhost
But receive the following error after filling the registration form that hosted at myproject.6te.net and receive the error Database Error Occured Query Failed .
You can test it at http:
Is it hosting server error or database connection type error although I have made all the changes as per the requirement?
|
|
|
|