vietknight
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add audio file thats plays in the background?Any type of audio file should work.
Forum: Fixing WordPress
In reply to: Theme not centeredRead my previous post please.
Forum: Fixing WordPress
In reply to: post are smallThis is a theme issue. The theme you are using posts your posts like such. You would have to take a closer-look at the coding in your theme. This has nothing to do with font size. Your post aren’t small. They are just hidden, hence when you press that button at the side they appear.
You have to identify what is hiding your posts, probably start looking here: jquery.js
Since your template is designed so the posts are hidden like that, you’d have to do quite a bit of tweaking in order to get those posts to show up.
Forum: Fixing WordPress
In reply to: Theme not centeredYou need to change your css values for the following:
#page {
text-align: left;<——- center
position: relative;
}Edited:
You have duplicate #page css declarations. Might want to remove one of those
Forum: Fixing WordPress
In reply to: Font ideas for the main body text ?There is no way for you to allow other users to view “uncommon” font styles on your blog unless they have those fonts installed on their system. This means, in order for your users to see this font, they would have to download the font and install it into their computer. Simply uploading font files will not allow the user to read your styles.
Check this out for more info/suggestions:
Forum: Fixing WordPress
In reply to: post are smallGot a link for us to look at?
What is the font-size you are using when you’re posting your posts?
Also you may check your text-size setting if you are using Internet Explorer as a browser.
Forum: Fixing WordPress
In reply to: Write new post not loadingCheck your server error-logs for any memory restrictions errors. You’re host may have restricted the amount of memory you can use to load this page.
If present, you have to contact your host to increase these memory values.
Forum: Fixing WordPress
In reply to: How to add audio file thats plays in the background?<embed src="beethoven.mid" autostart="true" loop="false" volume="60" hidden="true"/>
You can play around with the parameters to fit your GUI needs. The key thing to edit if you want your audio file to play in the bg-onload, is edit the autostart=”true”.
Place this code in your index.php and you should be good to go.
Forum: Installing WordPress
In reply to: Reinstalling wordpress to existing databaseMaking a new WP with an existing database is similar to moving wordpress to a “new server”, in that you need to install WP and then import your exisiting DB.
Simply, read the following but apply it to the server you want to reinstall at:
https://codex.www.ads-software.com/Moving_WordPress#Moving_WordPress_to_a_New_Server
Forum: Installing WordPress
In reply to: Error establishing a database connection — I’M LOST.Have you created a database yet?
Are your database credentials correct, aka dbname/username/password?
Do the following credentials appear exactly the same in your wp-config.php? Is your host’s database up and running?Looks like you also need to fill in your Secret key values.
Visit this link:
https://api.www.ads-software.com/secret-key/1.1/
and copy/paste the randomly generated values into wp-config, as stated in your wp-config file.
Are you logged in as admin/editor when you’re trying to edit the comment?
If the user you are using does no have Administrator Role or Editor Role, then you will lack the ability to edit your comments.
https://codex.www.ads-software.com/Roles_and_CapabilitiesYou can edit your User Roles here:
https://codex.www.ads-software.com/Users_Authors_and_Users_SubPanel
Forum: Installing WordPress
In reply to: Data loss after upgradeIf you are using Cpanel, I recommend that you go to your database and click ‘repair’ to fix any possible problems there. Check to see if you’re comments are still in your DB or not. Check to see if there are updates for plugins that you are using, out-dated plugins may cause your comments to not appear. Check your wordpress directory for error_log file to see any errors recently.
Also, did you disable all your plugins before upgrading?
This isn’t a big upgrade so you must have done something wrong.
The following files were the only ones to change, and there were no DB upgrades, so you didn’t really have to run upgrade.php
Check here for the following Upgrade Changes from 2.6.1 to 2.6.2:
Forum: Fixing WordPress
In reply to: Login Hacked – Security Issue 2.6You work in customer service, that is part of “support”.
Definition of “customer”: someone who pays for goods or services
wordnet.princeton.edu/perl/webwnOtto is voluntarily offering his support to this forum. The support you are making reference to is to someone who’s actually PAID for their product. There’s a big difference between “work” and volunteer”. You should be grateful that Otto’s even replying to these issues.
Someone who DEMANDS support when they has done nothing to earn it, is just plain incoherent.
Read the GPL please:
BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
Forum: Fixing WordPress
In reply to: Login Hacked – Security Issue 2.6yeah, after 3 days of ZERO support… not even a message… then yeah, I’m gonna have a bit of attitude.
Did you NOT read what Otto just posted? This is a FREE PRODUCT, no one here HAS TO HELP YOU. You’re not the only one with unanswered posts. Don’t go justifying your attitude by saying you’ve received zero support.
Forum: Themes and Templates
In reply to: Header positionWow, this is alot more tedious than I thought it would be…
Check your CSS file for this:
img { float:right; padding:5px; background:#fff; margin:0 0 20px 20px; border:1px solid #eee; }
Change to this:
img { float:center; padding:5px; background:#fff; margin:0 0 20px 20px; border:1px solid #eee; }
It seems you have so many things that are declaring styles for that one image, as you can see, you have img and .image both at once. Hopefully this will fix it now!
I wouldn’t recommend you use img though because it is universal, which means that every image you put on that page will be subjected to those css styles. Perhaps, it would be better if you just copied that and put it into the “image” css declaration if you get what I mean. (This is unless you are only planning to have that one image showing on that page, in which case you can leave everything as is.)