blogcms
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: images are showing only after a click on the titel ..Usually this issue is caused when you are displaying the post excerpt in the template instead of the content. I think the function the_excerpt() omits <img.. tags, whereas the_content() will display the <img.. tags. So, you will need to locate the point in (probably) index.php where the the_excerpt() is being called, and call the_content() instead w/ correct params. Keep in mind that if you change this, the entire post will be displayed instead of the shortened excerpt form (unless you’re using the ‘more’ tag to divide excerpt from rest of content) The more tag can be inserted at any point in a post w/ a button on tinymce editor toolbar.
Forum: Fixing WordPress
In reply to: creating spaces between widgets in side barShould be done in your stylesheet (usually style.css) using padding:8px 0; or similar on the div class containing the widgets.
Forum: Fixing WordPress
In reply to: Need help with wordpress installation..Perhaps the top error is related to a PHP4/PHP5 issue (old host defaulted to PHP5, and new host to PHP4). I don’t recognize the error, but this is the first thing that comes to mind. If so, there is a directive that can be placed in .htaccess that will instruct apache to use PHP5. First, try to determine if the default PHP version changed w/ new hosting company.
The permalinks not working is also prob a .htaccess issue. For a quick fix, change your permalink settings in your admin panel to the default (not fancy), and investigate your .htaccess settings.
Forum: Fixing WordPress
In reply to: Import 44mb xml filePerhaps an app that can split XML files into smaller chunks, while maintaining certain required structural tags for all segments? Then import the smaller size XML files individually.
Forum: Everything else WordPress
In reply to: Newsletter Publisher Looking for GuidanceI would suggest that wordpress is a lightweight solution as compared to the type of application that you are seeking. Much of what you are describing could be added to wordpress in the form of custom functionality, and that is definitely possible, but in it’s native form wordpress is much more of a simple blogging tool for individuals. WordPress mu is a multi user wordpress implementation, supporting small to large user communities, and thus it could provide the multi-user aspect of what you describe, but the specific workflow and publishing features that you detail are not natively supported. Again, the software is extensible w/ its native plugin system, and could be enhanced.
I’ve had success, but since WP does quite a bit of auto formatting (both w/ a function named wpautop, and also the tinymce editor — if you’re using the visual editor — does its own mangling of code, even if it’s specified in the tinymce code window). I found it problematic to attempt to insert raw html, javascript, or other code into pages/posts without it ending up trashed (mangled by WP!)
What I ended up doing was using a plugin named templatedia to store code that I didn’t want altered by WP (javascript, raw html, etc), and then used templatedia template tags within posts/pages to insert the code stored in template items into the content. But, if I recall, I even ended up needing to modify the templatedia plugin somewhat to leave the specified code exactly as I specified it.
I do know where you’re coming from however. It can be done. But, getting WP to leave your code alone is the most difficult part.
Forum: Everything else WordPress
In reply to: my blog disapearedThe good news is that your data may still be existent, though the WordPress software is having a problem connecting to it. Unless that is, your hosting company was really irresponsible and deleted your database. It’s hard to tell without being able to look. Did you set up the software yourself? There is a wp-config.php file in your blog’s root folder that contains database parameters (host, userid, pass for database connection). Either those values are incorrect, or the values are correct and the database server is down/changed/etc. Either the support staff at your hosting company will need to look at the issue, or you will need to have someone familiar with WordPress look into it. If you cannot figure it out, and you need further help, let me know how I can contact you via email and I can prob help. Good luck.