Now that you have checked that your system meet the requirements, you can proceed to the actual installation.

Installation of PHPDevShell is extremely easy;

  1. Extract the downloaded compressed file of the PHPDevShell package.
  2. Create a Mysql database (Character set : UTF-8 Unicode and Collation : utf8_general_ci) note the database name, username and password.
  3. Rename /config/single-site.config.php.RENAME to /config/single-site.config.php and change the settings.
  4. Upload the complete PHPDevShell directory to your web server including your modified setup files.
  5. Make the whole “write” and sub folders writable (if default else make custom folders writable).
  6. Browse to the http://localhost/other/service/service.php (directory where you uploaded PHPDevShell), a Database install script will appear, complete this as the final installation step.
  7. Follow instructions on database install script that loads when you open PHPDevShell in your browser…
  8. Optional Cronjobs

Create cronjob to run [http://[install location]/index.php?m=742061208 every 10 minutes or lower (if automated file execution is required).

Optional Cache, Gzip, Friendly URLs

If your server support mod_rewrite and mod_expires you can rename rename.htaccess to .htaccess to gain cache, gzip performance and friendly urls. PS: Remember to switch friendly urls on in the gui to make it work.

Optional Multiple Domains

For multiple domains working from the same directory with different databases for each package, modify _host.config.php and add configuration files as required.

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment

greg wrote: Jul 20, 2015

Sample sql instructions to set up the database:

create database phpdev;
create user phpdev;
grant all on phpdev.* to 'phpdev'@'localhost' identified by 'phpdev';