Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)
  • Ah, I meant Folders AND Files to 775.

    Where are you hosting it? The webserver has strange permissions. This directory has a listing, even though it shouldn’t:

    http://www.classicheadlines.co.uk/wp-content/uploads/

    Forum: Fixing WordPress
    In reply to: Refresh my ftp

    If the domain is pointing to the public_html or root folder, and WordPress is in a subfolder, even if you set the Site URL/Home URL in WordPress correctly, the webserver will serve up the files in the home directory once there’s an index.html available.

    Remove the Under Construction page and all its files. Then, go here:

    http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

    And under the second section titled “Using a pre-existing subdirectory install” perform those 7 steps. Good luck!

    Forum: Fixing WordPress
    In reply to: can't login

    No problem. Memory limit, ouch! Glad it’s fixed though.

    You’d have to remove the anchor in the CSS. For a quicker fix, try this:

    In the Appearance > Menus, use a “Link” for the parent item. Set the link address simply to “#” without the quotes.

    Try setting folder permissions to 775. www-data could be trying to use the group permissions and being denied.

    Forum: Fixing WordPress
    In reply to: can't login

    Ah, after updating, we’re you logged out? It could be a plugin conflict.

    Forum: Fixing WordPress
    In reply to: CSS Colours

    No problem 🙂

    Forum: Fixing WordPress
    In reply to: CSS Colours

    Scroll down a little more, you’ll see:

    /* Dropdown */

    That’s the section for the sub menu.

    To change the submenu background:

    #access ul li ul {
    	position: absolute;
    	background-color: #fff;
    	border-top: 4px solid #05A9C5;
    	top: 55px;
    	left: 0px;
    	width: 190px;
    }

    The background-color: #fff controls that.

    To change the submenu font color when hovered:

    #access ul li ul li a:hover, #access ul li ul li:hover > a, #access ul li.current-menu-item ul li a:hover {
    	background-color: #F9F9F9;
    	color: #05A9C5;
    }

    The background-color: #F9F9F9; controls the background and the color: #05A9C5; controls the font (currently a light blue when hovered).

    To edit the blue border at the top of the submenu:

    #access ul li ul {
    	position: absolute;
    	background-color: #fff;
    	border-top: 4px solid #05A9C5;
    	top: 55px;
    	left: 0px;
    	width: 190px;
    }

    The background-color: #fff; controls the submenu background. The border-top: 4px solid #05A9C5; controls that little blue bar. The 4px is the thickness, solid is the line type, and #05A9C5 is the color for the little top bar.

    Forum: Fixing WordPress
    In reply to: CSS Colours

    Hi,

    For the top level menu, in Appearance > Editor > style.css

    Where you see:

    #access a {
    	color: #777;
    	display: block;
    	float: left;
    	font-size: 14px;
    	text-transform: uppercase;
    	padding: 16px 0 0;
    	height: 39px;
    }

    Change the color: #777 to color: #000 // for black, since #000 is black. Change it to whatever color you need. That’s the element you need to change, and probably missed.

    Forum: Fixing WordPress
    In reply to: can't login

    So when you do login, you get a blank screen, correct?

    Did you install any plugins lately?

    Forum: Fixing WordPress
    In reply to: can't login

    You’re sure?

    http://www.oasisedphuket.com/wp-admin

    Redirects as per normal on my end, to:

    http://www.oasisedphuket.com/kaset/wp-login.php?redirect_to=http%3A%2F%2Fwww.oasisedphuket.com%2Fkaset%2Fwp-admin%2F&reauth=1

    Try clearing your browser cache perhaps, if you’ve recently made changes.

    Forum: Fixing WordPress
    In reply to: Refresh my ftp

    Are the WordPress files and the Dreamweaver file in the same folder? Where exactly is WordPress being hosted?

    When you login to WordPress, navigate to the Settings menu tab.

    Ensure the WordPress Address (URL) is set to http://www.techtyreproducts.com.au/wordpress

    Ensure the Site Address (URL) is set to http://www.techtyreproducts.com.au

    Are those correctly set?

    Also, navvigate to Settings > Permalinks and simply hit Save to regenerate your permalinks.

    Those would rule out any underlying settings interfering with the site.

    If it’s a plugin issue then you’ll simply have to rename or delete the plugin folder found in /wp-content/plugins/

    Log into your web host and look for the File Manager module, or use an FTP program to gain access to the actual files.

    In the public_html, or root folder you’ll see the following three folders along with the WordPress core files:

    wp-content
    wp-admin
    wp-includes

    Browse into wp-content > plugins and simply rename the jetpack folder to something obscure like “jetpackold” and then try logging in again.

    If you’re able to login then either JetPack conflicted with the theme or with another plugin and caused the error. Upgrading to the latest WordPress or making a note of how other plugins interact with Jetpack will help you to solve the issue if you still want to use Jetpack.

    Keep us posted!

    After you login, go to Settings > Permalinks and regenerate your .htaccess by choosing any type of Permalink structure and saving. See if that helps.

Viewing 15 replies - 1 through 15 (of 21 total)