woodymood
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My html code is being overwrittenyes, this is something else, I don’t know why it happends but you may try another way to install your plugins, not from the dashboard, but by downloading the archive, unzip it, and then transfert it to wp-content/plugins/, an finally activate it from the dashboard
Forum: Fixing WordPress
In reply to: Restauration d'une base de donnéesce truc INSERT INTO wp_bp_cp_galleries () VALUES ;
est bizarre, ?a devrait être
INSERT INTO wp_bp_cp_galleries () VALUES ();
cf https://dev.mysql.com/doc/refman/5.5/en/insert.html
peut etre effectivement d? à différentes version de mysql ou phpmyadmin
faut que vous corrigiez le sql…
Forum: Fixing WordPress
In reply to: splash screen help (already started by someone else)you may try this plugin: https://www.ads-software.com/extend/plugins/simplesplash/
it’s very easy to use, you activate it and then add a splash.php file to your theme with whatever you want inside
Forum: Fixing WordPress
In reply to: Can anyone help pleasethere might be a blank space or empty line in /home/rolexman/public_html/sixpackquest/index.php
did you change that file?
if not, reput the one given by wordpress
Forum: Fixing WordPress
In reply to: Pictures Right/ Left Instead of Up/Downtry instead style=”float:left; margin:0 10px 0 0″
you might also try to use a table for this kind of layout,
you can add table buttons to your editor with the tinymce advanced plugin
Forum: Fixing WordPress
In reply to: Restauration d'une base de donnéesen fait je disais de recopier dans ce forum quelques lignes d’insert pour qu’on voit où est le problème
il vous faut ouvrir le fichier sql dans un éditeur de texte genre notepadd++ et faire copier coller ici de quelques lignes qui commencent par insert into… en dessous de la création de la table
Forum: Fixing WordPress
In reply to: Restauration d'une base de donnéesl’import s’est arrêté à cause de cette erreur.
c’est bizarre ce insert vide…
pouvez vous copier des exemples d’insert pour cette table vers la ligne 5 ?
Forum: Fixing WordPress
In reply to: "|" appearing in my page title…There should be the name of the blog before the |
Did you set one in Setup > General ?
Forum: Fixing WordPress
In reply to: Embedding a Flash Banner into WordPresstry to edit a template file like header.php and put a code like this
<object width=”400″ height=”350″ codebase=”https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0″ classid=”clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″><param value=”https://www.woodymood-dev.net/cms/wordpress/wp-content/uploads/2009/02/flash.swf” name=”data”><param value=”high” name=”quality”><param value=”https://www.woodymood-dev.net/cms/wordpress/wp-content/uploads/2009/02/flash.swf” name=”src”> <embed width=”400″ height=”350″ data=”https://www.woodymood-dev.net/cms/wordpress/wp-content/uploads/2009/02/flash.swf” quality=”high” src=”https://www.woodymood-dev.net/cms/wordpress/wp-content/uploads/2009/02/flash.swf” type=”application/x-shockwave-flash”> </object>
Forum: Fixing WordPress
In reply to: My html code is being overwrittenis it that plugin that you tried?
Forum: Fixing WordPress
In reply to: New comments when I edit pagesmaybe you have inserted a full link in some page or post to another page or post of your blog,
try to edit those links and remove the http part:
bad: https://website.com/blog/about
good: /blog/about
Forum: Fixing WordPress
In reply to: Restauration d'une base de donnéesSI vous avez un backup complet de toutes les tables de votre base de données (structure et données), alors il n’y a pas besoin de réinstaller wordpress, vous pouvez partir d’une base vide, et importer votre backup sql
Forum: Fixing WordPress
In reply to: Images Not Showing Up At Alldo you see an error message in the popup right after you have uploaded an image?
Forum: Fixing WordPress
In reply to: I cannot post picturesit might be a problem of owner in your folders,
if your ‘uploads’ folder has not been created yet, try to put 777 as rights for your ‘wp-content’ folder with your ftp client, then upload a new picture to a post, then come back to your ftp client and put 755 as rights to your wp-content folder
Forum: Fixing WordPress
In reply to: Using $wpdb with AJAX call?Hi,
try to include that file :
require_once(‘../../../wp-load.php’);
but correct the path depending where is your php file