• Fresh install of WordPress 2.8.
    Using Godaddy.com free economy hosting.
    Website looks fine: https://www.21105oakdale.com.
    I can login in to dashboard admin fine.

    However, it appears the dashboard has no formatting – ie, it appears it is not calling the css correctly.

    (I’m a novice but have somewhat of an understanding of this stuff).

    I’ve tried reinstalling the wp-admin and wp-includes folders.
    I’ve tried resetting the cache and cookies.
    I’ve tried refreshing the permalinks.

    All of the above were tips I found on the WP forums.

    Unfortunately, none has worked thus far.

    Any tips?

Viewing 15 replies - 61 through 75 (of 101 total)
  • thorsso

    (@stefanotorricelli)

    Hi mmenigma,
    the solution not hide the ads banner but fix the problem in the Dashboard Administration page.
    If you want to hide the ads you must add:

    #conash3D0 { display:none; }

    at the end style sheet of your theme, usually style.css located in /wp-content/themes/default/ or /wp-content/themes/classic/ or /wp-content/themes/<your personal theme>.

    That’s all.
    ??

    Wow thanks, It worked.

    I’ll leave it out for now. It’s the least i can do for free server space.

    I am having another problem that I may be related to this code.

    When I click on the RSS links for posts or comments, all I get is the code and not my browser reader.

    It looks like this:
    https://www.goofyburg.com A town for Goofy people Fri, 15 Jan 2010 19:27:04 +0000 https://www.ads-software.com/?v=2.9.1 en hourly 1 https://www.goofyburg.com/?p=8 https://www.goofyburg.com/?p=8#comments Fri, 15 Jan 2010 19:21:09 +0000 admin https://www.goofyburg.com/?p=8 https://www.goofyburg.com/?feed=rss2&p=8 0 https://www.goofyburg.com/?p=1 https://www.goofyburg.com/?p=1#comments Fri, 15 Jan 2010 00:02:05 +0000 admin https://www.goofyburg.com/?p=1 https://www.goofyburg.com/?feed=rss2&p=1 1

    It also loads the page with the godaddy ad so I wonder if there’s a conflict.

    thorsso

    (@stefanotorricelli)

    Hello @mmenigma,
    this is an hard problem.

    For the moment i have not a solution, if i found i post it.
    Sorry ??

    OK, Thanks anyway.

    Hi all,

    Thank you all very much for the solutions you have provided so far; they have been an immense help.

    I’m in exactly the same situation as many of you and have used all the fixes described here. I’m having one problem, however. Within the post editor page, whenever I try to insert any type of media using the buttons above the formatting palette, the progress bar for the media uploader iframe pops up and just hangs. The media uploader itself never appears.

    Can any of you help?

    Again, many thanks.

    Hi @stefano.torricelli and anyone who might be able to help…

    I was excited to see the modifications to post.php and script-loader.php but I’m wondering if there are any updates for wp 2.9.1

    I looked for them at Stefano’s Website, but it looks like a new install of wp there.

    Could someone post these mods again?
    Thanks,
    John

    Hello @minadin, @all,
    wordpress 2.9.1 work fine with the same changed applied to wordpress 2.9.0, read post up.
    But if you wont the script post.php and script-loader.php give me an email account or download its from https://stefano.torricelli.name/.

    Good work.

    thorsso

    (@stefanotorricelli)

    Hello @all,
    recently i changed the mantainer of stefano.torricelli.name and i was stupid, i had no backup of my wordpress.
    The stefano.torricelli.name naw is a fresh install of wordpress release 2.9.2.
    When i fix my wordpress blog i re-post the faq, i think … asap.
    For now sorry.

    I was having the same problems with the post editor not working. I installed the FCKEditor for WordPress and that fixed things.

    Basically, the FCKEditor replaces the default WordPress editor.

    You can find it here.

    OK, I spoke too soon. The editor works, but a bunch of other stuff is broken, like add media, add tags and custom fields. Booooo.

    thorsso

    (@stefanotorricelli)

    Hi @all,
    this faq solve several problem of wordpress 2.9.2.

    wordpress fix for godaddy

    0) home page without godaddy ads –>
    open the file /wp-content/themes/<your theme>/style.css and add at the end: #conash3D0{display:none;}

    1) admin login page without godady ads –>
    open the file /wp-admin/css/login.css and add at the end: #conash3D0{display:none;}

    2) dashboard without godaddy ads and widget work fine –>
    open the file /wp-includes/script-loader.php and apply the changes:

    substitute line 699:

    echo "<link rel='stylesheet' href='" . esc_attr($href) . "' type='text/css' media='all'>\n";

    with the current code:

    // ***************************************************************
    		// godaddy ads fix
    		$st_data = file_get_contents( $href );
          		$st_data = substr( $st_data, 0, strpos( $st_data, '</iframe></noscript>' ) );
    		echo "<style type='text/css' media='all'>\n";
    		echo $st_data . "\n";
    		echo "#conash3D0 { display:none; }\n";
    		echo "</style><!-- /wp-includes/script-load.php -->\n";
    		// ***************************************************************

    substitute line 632:

    echo "<script type='text/javascript' src='" . esc_attr($src) . "'></script>\n";

    with the current code:

    // ***************************************************************
    		// godaddy ads fix
    		$st_data = file_get_contents( $src );
          		$st_data = substr( $st_data, 0, strpos( $st_data, '</iframe></noscript>' ) );
           		echo "<script type='text/javascript'>\n";
           		echo $st_data;
          		echo "</script><!-- /wp-includes/script-load.php -->\n";
    		// ***************************************************************

    3) post without godaddy ads and work fine –>
    open the file /wp-admin/includes/post.php and apply the changes:

    substitute the lines form 1492 to 1502:

    <?php
    			if ( $concatenate_scripts )
    				echo "<script type='text/javascript' src='$baseurl/wp-tinymce.php?c=$zip&$version'></script>\n";
    			else
    				echo "<script type='text/javascript' src='$baseurl/tiny_mce.js?$version'></script>\n";
    
    			if ( 'en' != $language && isset($lang) )
    				echo "<script type='text/javascript'>\n$lang\n</script>\n";
    			else
    				echo "<script type='text/javascript' src='$baseurl/langs/wp-langs-en.js?$version'></script>\n";
    		?>

    with the current code:

    <?php
    			// ***************************************************************
    			// godaddy ads fix
    			if ( $concatenate_scripts ) {
    				$st_data = file_get_contents( "$baseurl/wp-tinymce.php?c=$zip&$version" );
    				$st_data = substr( $st_data, 0, strpos( $st_data, '</iframe></noscript>' ) );
    				echo "<script type='text/javascript'>\n";
    				echo $st_data;
    				echo "</script><!-- /wp-admin/includes/post.php -->\n";
    			}
    			else {
    				$st_data = file_get_contents( "$baseurl/tiny_mce.js?$version" );
    				$st_data = substr( $st_data, 0, strpos( $st_data, '</iframe></noscript>' ) );
    				echo "<script type='text/javascript'>\n";
    				echo $st_data;
    				echo "</script><!-- /wp-admin/includes/post.php -->\n";
    			}
    
    			if ( 'en' != $language && isset($lang) ) {
    				echo "<script type='text/javascript'>\n$lang\n</script>\n";
    			}
    			else {
    				$st_data = file_get_contents( "$baseurl/langs/wp-langs-en.js?$version" );
    		                	$st_data = substr( $st_data, 0, strpos( $st_data, '</iframe></noscript>' ) );
    		                	echo "<script type='text/javascript'>\n";
    		                	echo $st_data;
    		                	echo "</script><!-- /wp-admin/includes/post.php -->\n";
    	       		}
    			// ***************************************************************
    		?>

    4) rss feed (now not work fine) i study it.

    Give me a feed back for others problem.
    Thanks.

    Stefano, you’re a freaking genius! All of those worked great. Thanks so much for your help!

    Stefano, your solutions work great although I’m still having trouble with custom fields.

    Specifically, I have a custom field (photo) that when added appears in a flash gallery on my front page (www.keystothebus.com)

    When I try to add the photo through the custom fields menu, it gives me a big old red box:

    screen cap here.

    If you hit the “Update” button the red box goes away and from the admin screen’s point of view, it looks as if all is fine. If you look on the site where the custom field is supposed to appear, however, it isn’t there.

    FWIW, it wasn’t working before I implemented the fixes you listed above, so I don’t think those broke anything.

    thanks!

    @stefano.torricelli

    Thank you very much! You are my hero… ??

    I follow step #2 and it solved my Dashboard Editor Error problem using WP 2.9.2.

    I skip the rest coz I didnt needed.

    Thank you genious… :p

    thorsso

    (@stefanotorricelli)

    Hi @jlnovak,
    i suppose you have installed a plugin that manage photo.
    Give me the plugin name that i install and test it, if no plugin was installed please send me the step to reproduce the error.
    I am newbie wordpress user.

Viewing 15 replies - 61 through 75 (of 101 total)
  • The topic ‘Godaddy free hosting – Dashboard / Admin broken’ is closed to new replies.