chaaban
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Internet Explorerwhat do you mean by : unable to create or edit a blog entry
problem related to installation ? or login ? wordpress work perfectly on all browsers
Forum: Plugins
In reply to: iG:Syntax Hiliter Plugin(Y) moshu 🙂 sorry i dont read comments usually …
it was just today that i was testing if i’m still in peace with w3c 🙂 that i saw this error .
anyway ,Thank’s again.
chaaban.
Forum: Plugins
In reply to: iG:Syntax Hiliter Plugini think using iG:Syntax Hiliter make the xhtml code invalid , there is a little “error” , a type must be added :
Error Line 29 column 116: required attribute “type” not specified.
…ig_syntax_hilite/syntax_hilite_js.js”></script>because the type is missing
correct one : <script type=”text/javascript” xxx.js ..
to fix it :
change the $hHead in the function called :
// function for outputting styles (syntax_hilite.php)
from :
$hHead .= ” <script language=\”javascript\” src=\””.$igsyntax_hiliter_path.”syntax_hilite_js.js\”></script>\n”;
to :
$hHead .= ” <script type=\”text/javascript\” src=\””.$igsyntax_hiliter_path.”syntax_hilite_js.js\”></script>\n”;
Forum: Fixing WordPress
In reply to: page template optionThank’s moshu ;)(correct answer) also macmanx for trying 2 help .
Forum: Fixing WordPress
In reply to: Titles in URL, instead of www.x.com/?page_id=21search for permalink help
Forum: Plugins
In reply to: Link to Us Pluginwhy do u need a plugin for this ?
just make a static page , and past your code in it .
Forum: Fixing WordPress
In reply to: wp_footerwp_footer
Goes in the “footer” of a theme; footer.php template. This hook has no second parameter. Example plugin use: insert PHP code that needs to run after everything else.
Usage: <?php do_action(‘wp_footer’); ?> -or- <?php wp_footer(); ?>Forum: Fixing WordPress
In reply to: WYSIWYG editor..just a little off topic message , i think WYSIWYG dont work on safari browser .
Forum: Your WordPress
In reply to: My wordpress…critique?are you using frames ???
Forum: Installing WordPress
In reply to: How To Ban A Commenterblock his ip .
Forum: Themes and Templates
In reply to: (Update) WP Ajax based TemplateThe sidebad is messed up …
even if ajax is powerfull but it has alot of problems
– Break the back button
– Sending sensitive information in the clear
– makes the browser slow
– 10 % of users dont have javascript enabled …
– bookmarks and links killed (same prob of the frames usage)And The most Important : Blocking Spidering
Ajax applications that load large amounts of text without a reload can cause a big problem for search engines. This goes back to the URL problem. If users can come in through search engines, the text of the application needs to be somewhat static so that the spiders can read it.
Forum: Plugins
In reply to: Google Reader ButtonThank’s theillustratedlife , i dident know about this 🙂
Forum: Everything else WordPress
In reply to: google page ranki allready have google toolbar 🙂 but i just want to be sure this plugin is not available be4 i go in this issue , i have some idea 2 integrate this into wordpress .
but i think api-key will cause a problem . because using the google api-key you are allowed 2 make 1000 query/day .
except if in the installation procedure of the plugin you ask the user to enter there api-key .
or … get 5-6 api-key and make a random select of the api key ..
Thank’s anyway i ll check this after my exams 🙂
Forum: Everything else WordPress
In reply to: google page rankIs There a plugin to show the page rank of a page ?
Forum: Fixing WordPress
In reply to: localhost home web servermaybe you can put the ip of your machine .
when u run apache you can access (sometime you have to do some modifications) http//your-ip
if u put this in your wordpress control panel (what moshu told you ) it might work .