LyleChamney
Forum Replies Created
-
Forum: Localhost Installs
In reply to: local host MAMP page blank after updating resauranteur themeHollie –
When you initially installed MAMP, did you change any of the default settings after or during the installation?
If not, then indeed, your site files will be in:
Applications/MAMP/htdocsor most likelyApplications/MAMP/htdocs/wordpressWhat is the URL you use to access the local site? Is it:
http://localhost:8888/wordpress?If it is the above, then your theme is located:
Applications/MAMP/htdocs/wordpress/wp-content/themes/restauranteurSimply delete the
restauranteurfolder which should cause WP to revert to it’s default Twenty Fourteen theme. If not, you will sitll be able to access the Dashbaord where you can then install the updated theme normally through Appearance > Themes > Add New > Upload Theme.Forum: Localhost Installs
In reply to: Help Installingcreated a new user with the name wordpress and password wordpress.
You also must grant the user
wordpressAll PrivilegesAlternatively, and what I always do on local installs, is use the default database user credentials, which in the case of XAMPP is:
User: root
Password: <empty> … do not enter anything, not even a spaceUsing Notepad (or equivalent plain text editor), change the two values in your wp-config.php and you will be good to go 🙂
Note that if you do use the above, the entry for the password will be:
/** MySQL database password */ define('DB_PASSWORD', '');<<< note that there is NO SPACE between the single quotes.
Forum: Installing WordPress
In reply to: XAMPP MultiSite – Local Host – Does NOT Work !decided to install XAMPP on local PC
then following traditional instructions to enable and install MultiSite
… did you notice this section of the above-noted instructions? 🙂
http://codex.wordpress.org/Before_You_Create_A_Network#Restrictions
“(Note that you can create a domain-based network on your local machine for testing purposes by using your hosts file to map some other hostnames to the IP address 127.0.0.1, so that you never have to use the hostname localhost.)”
Forum: Installing WordPress
In reply to: Error: Website not availableWhere is the new blog/site hosted, on a hosting account or locally on your own computer?
Forum: Installing WordPress
In reply to: Problems with permalinksTry this:
– using FTP or the file manager of your hosting account, delete the existing .htaccess file
– go to Setting > Permalinks > choose one of the default settings (perhapsPost name) > Save Changes (this will re-generate the .htaccess with the selected values)
– refresh the site and check the linksForum: Localhost Installs
In reply to: Problem after local site to web serverDouble and triple check that you some how may have changed the name of the config file.
wp-config.phpEven one space where it shouldn’t be will enough to get the installer to want to run again 🙂
Forum: Localhost Installs
In reply to: localhost keeps downloading wordpress directory nameTo clarify, you edited the
siteurlandhomefields in wp-options with:http://localhost/localdirectory… note that you require thehttp://Forum: Installing WordPress
In reply to: 1 click installIts is a basic HTML no frills hosting service.
Does it provide at least one MySQL database? If not, then you will need to get a plan which does. There is no way to load any script to configure the database if one is not available on the hosting plan 🙂
Forum: Installing WordPress
In reply to: After unzipping – what next?WordPress is a website framework which requires both a web server and database server to operate. It is not an executable program that one “double-clicks” to “run”.
Typically, it is installed on a remote hosting account which provides the necessary web and database servers.
One is also able to install this environment locally on their own computer by using one of the available free local server AMP “stacks” (Apache – web server, MySQL – database server, PHP – programming language). Many are available for the various operating systems and some also include the ability to install WP as part of their own installation.
Some of the popular ones are XAMPP, WAMPServer, Uniform Server (Windows) and MAMP, XAMPP for Mac OS.
Installing WP into one of these local servers is generally used to test plugins and themes and to just get the hang of using WP. Some folk use this method to create and test a complete site and then move it to a live, remote hosting account.
To summarize, you need a compatible hosting environment, either local or remote into which you install WP by:
– creating a new, empty database
– upload (or copy if local) the unzipped files and folders of the WP download
– start the WP installation processNote that all of this is done via your favorite web browser 🙂
Forum: Installing WordPress
In reply to: Last widget wont line up with the restA few things 🙂
1 – you are using the Pro (paid for) version of the Dynamic News theme and should therefore be using the theme vendor’s support as we here do not have access to this version (the “lite” version is available in the WP Theme Repository)
2 – that image is way too large, both in dimensions (2,741 px x 1,719 px) and file size (2.69 MB); takes a while to load for me even on high speed broadband
3 – regardless of the above points, it will never appear “aligned-left” as the image is not correctly cropped; in other words, there is a large white margin on the left
Use your favorite graphics program to crop out the white left margin and to scale and re-save at a more manageable size (250 px x 186 px which should be no more than 25 – 35 KB)
Once you do this, I would suggest you use this plugin to add the image to your sidebar:
Forum: Installing WordPress
In reply to: New blog not appearing on WordPress account – cant use JetpackIf you want to use Jetpack, you have to create an account on WordPress.COM in order to do so, and it must use the URL of the site that will be using Jetpack. Each site that you want to use Jetpack with will require it’s own .COM account.
Personally, this is the main reason I find alternative plugins for similar functionality provided by Jetpack.
Forum: Installing WordPress
In reply to: How to get into admin with a passwordAdd
/wp-adminor/wp-login.phpafter the site URL.For example:
http://www.mydomain.com/wp-adminorhttp://www.mydomain.com/wp-login.phpForum: Installing WordPress
In reply to: Can't log in to WordPress after uploading site to remote serverWhen manually editing/adding a user in the database using phpMyAdmin, you have to select MD5 from the drop down for
varchar(64)foruser_pass.In other words, enter the desired password in the Value box, then select MD5 from the drop down, then click Go
Forum: Localhost Installs
In reply to: All URLs redirect to server root (localhost/xampp)Check that the
siteurlandhomefields in the wp-options table have the new, local value, i.e.http://localhost/new-domainForum: Installing WordPress
In reply to: Installation in MAMPThe user name and the pass word were for the data base
Yes, you enter this information at the beginning of the install, along with the database name, database host and table prefix, etc.
YOU enter the dashboard login at the last screen of the install where it asks for the site title, email address, whether or not to allow search engines to index this site, etc., along with the Username and Password, twice 🙂