419 solutions found in server-admin
Page 4 of 21votes
I’ve been trying to access this particular REST service from a PHP page I’ve created on our server. I narrowed the problem down to these two lines. So my PHP...
votes
I'm trying to build a PHP site and I'm wanting to test my PHP files without uploading them to my host. Basically testing them on my own machine before I...
votes
I'm running PHP Version 5.6.3 as part of XAMPP on Windows 7. When I try to use the Mandrill API, I'm getting the following error: > Uncaught ex...
votes
Well, this one seems quite simple, and it is. All you have to do to download a file to your server is: file_put_contents("Tmpfile.zip", file_ge...
votes
I am trying to send an API request using Stripe but get the error message: > cURL error 60: SSL certificate problem: unable to get local issuer certificat...
votes
Is it possible to configure [xampp][1] to serve up a file outside of the `htdocs` directory? For instance, say I have a file located as follows: `C:\proje...
votes
I have this code: <script type="text/javascript"> var foo = 'bar'; <?php file_put_contents('...
votes
I am on shared hosting and have [cPanel][1], Apache, and PHP is run by [FastCGI][2]. Where does PHP store the error log? Is there another way I can find the...
votes
Is there any way of taking a screenshot of a website in PHP, then saving it to a file?
votes
I am trying to send an email via GMail's SMTP server from a PHP page, but I get this error: > authentication failure [SMTP: SMTP server does no suppor...
votes
What is the difference between `$_SERVER['HTTP_HOST']` and `$_SERVER['SERVER_NAME']` in PHP? When would you consider using one over the other...
votes
I am trying to make sure that my app container does not run migrations / start until the db container is started and READY TO accept connections. So I decide...
votes
Are there are any Linux mysql command line tools that don't require the entire mysql db installation package to be installed? What I'm trying to do...
votes
When I attempted to connect to a local MySQL server during my test suite, it fails with the error: OperationalError: (2002, "Can't connect to l...
votes
I've been struggling with this for some time. I've installed Rails 3, gem, mysql on my Snow Leopard machine. All was going well until I created my fi...
votes
Is there any way to get an ER model of a database from the server that is connected to my MySQL Workbench?
votes
I installed mySQL on my Mac. Beside starting the SQL server with mySQL.prefPane tool installed in System Preferences, I want to know the instructions to start f...
votes
I want to order by Time,but seems no way to do that ? mysql> show processlist; +--------+-------------+--------------------+------+---------+----...
votes
I'm running MySQL version 8 on PHP 7.0. I'm getting the following error when I try to connect to my database from PHP: > Connect Error: SQLSTAT...
votes
I am trying to create a container with a MySQL database and add a schema to these database. My current Dockerfile is: FROM mysql MAINTAINER (me)...