• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Testing / Creating PHP files remotely?

I'm wondering what would be a good way that I can test PHP files remotely? Say, if I'm in school and during my free time, just play around with php? I have a website/ftp but I'm not sure how I can do this.
 
There are some editors that have an ftp client built in. So instead of opening files, you'd point it at your ftp server, it'd grab a local copy of the files and simply put them back up when you say so (maybe whenever you save, maybe you have to tell it explicitly to upload). Never used one though, so I couldn't recommend a specific one.
 
Like Kamper said, many editors have built-in FTP clients. So, when you open a file, you go File > Open Remote and connect to the FTP server and get your file. Whenever you save the file, it's automatically uploaded to the server in the background. After that, you jsut have torefresh the PHP page in your web browser.

Crimson Editor is a free editor for windows that supports this feature, if you'd like to try it.

As far as I know, this is how nearly everyone works on these types of things. It's how I've been working on them for the past half-decade or so, anyway.
 
Originally posted by: notfred
As far as I know, this is how nearly everyone works on these types of things. It's how I've been working on them for the past half-decade or so, anyway.
Or you can always run your own testing webserver. Of course that won't go so well if you're on the school's machines 😛
 
Back
Top