Run cron job on cpanel with php7 version
I want to setup cron job on cpanel admin with php7 version. My php script for cron requires php 7.0 or above to run. The problem is that the path to php7 cannot be found. I have already selected php…
I want to setup cron job on cpanel admin with php7 version. My php script for cron requires php 7.0 or above to run. The problem is that the path to php7 cannot be found. I have already selected php…
I have uploaded my website in cPanel but still don't know how to change my .env file or database.php to connect my site to the database. The connection works on localhost without any error but what do I need to…
I have a domain that has a subdomain. I want to call a file in the subdomain folder but apparently my subdomain folder is outside the public_html directory. Here is what i tried but nothing is happening.The subdomain folder is…
I need to deploy my angular 6 app on cPanel. Can someone guide me the steps? I cant't find configuration folder in cPanel.
I've read some article about deploying a website to a host. It has something like cPanel and we put all the source code into the public_html folder. And we can access those file using hostname.com/index.html will be pointed to /public_html/index.html…
i have a pre-made laravel website and all the files in it are shown in this picture below: image of files my question is that how can i install larvel on cpanel and upload all these files? in which folder…
I am unable to upload a new theme in wordpress.The maximum limit showing right now is 10 mb. What changes should I make in CPanel. I have created a new file in Public_html named php.ini. and pasted these lines. upload_max_filesize…
I have shared hosting for my website at Godaddy with shared hosting in cpanel. I made a python script that print hello and I even tried with the GUI too but it is not printing. It is only showing the…
if($_SERVER['REQUEST_METHOD']=='POST'){ //this is my database include 'db.php'; $con = mysqli_connect($servername,$username,$password,$dbname); //inputs $email = $_POST['email']; $password = $_POST['password']; $phone = $_POST['phone']; //checking query $Sql_Query = "select * from user_info where email = '$email' and password = '$password' and phone = '$phone'…
I am trying to get https working on my nodejs server like so: var http = require('http'); var https = require('https'); var fs = require('fs'); var express = require('express'); var privateKey = fs.readFileSync('server.key', 'utf8'); var certificate = fs.readFileSync('server.crt', 'utf8'); var…