kelytha
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Using GIT with local host root directory for theme developmentFor local development it’s no problem to deploy straight into the server’s root directory. Just make sure if you share your work with others, you don’t share your database passwords with them. 😉
Best way to avoid that is putting the config files and other sensitive things in .gitignore
Forum: Localhost Installs
In reply to: Using GIT with local host root directory for theme developmentGit has no problems with running as the super user, but to avoid problems you shouldn’t try using one local repository with two users.
If you want to use git both with your normal user and the super user, then you should clone the repository and use git push / git pull to apply the changes from one repo to the other.
Forum: Localhost Installs
In reply to: Fatal error when install (line 48 in wp-load.php)It seems like the web server has no permission to read the file. You should either chown the WordPress files to the user the web server is running with, or you have to give global read permission on the PHP files.
Forum: Fixing WordPress
In reply to: Updated to the new version and now cannot log inTry to add the following line to your wp-config.php:
define('WP_MEMORY_LIMIT', '64M');Forum: Installing WordPress
In reply to: Launching WordPressYou have to install WordPress to the server where your website lives, not your own computer.