hi
If i access to a web server with PHP support what i can do so.
Building on 's question and the starter tips from and , here are practical next steps and common tasks to perform once you have access to a machine that can run PHP — focused on what to do after connection and avoid repeating access/installation details already covered.
First actions (quick checklist)
Verify the PHP runtime, loaded extensions, and configuration with a short info page. For example, create a file named info.php containing:
<?php
phpinfo(); See the official phpinfo() reference for what to look for: phpinfo() manual.
Put your code under version control and deploy using a push/pull workflow so rollbacks are easy.
Use a PHP dependency manager for libraries and autoloading; learn basic commands and the vendor layout in the official docs: Composer docs.
Operational and configuration items
Security and reliability
These steps give a safe, repeatable starting workflow for deploying and operating PHP apps after you have server access.
Jump to Post— fpsasm 0It depends on the platform, its usually on either a linux of windows box. you can SSH into a linux box, I use putty. or you can remote desktop into a windows box..
you need to know the address, the username, password.
You need to make sure that …
It depends on the platform, its usually on either a linux of windows box. you can SSH into a linux box, I use putty. or you can remote desktop into a windows box..
you need to know the address, the username, password.
You need to make sure that the ports are open, so for SSH you need port 22 (TCP).
helps?
To get access to a web server with PHP support, you can:
Install Apache (or IIS) on your own server, install PHP, and MySQL
Or find a web hosting plan with PHP and MySQL support
hi
thank for information ............christopher6.
Welcome :)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.