amitdutt24
Forum Replies Created
-
Forum: Installing WordPress
In reply to: problem with databaseVirginie,
There are three cases can be there-
1. Create database and a user under this database.
2. If you already created the database then create a user with marking on all privileges.
3. If you have created the database and user both then just add your user to the database with all privileges.Hope this could help.
Stay WordPressing!Forum: Installing WordPress
In reply to: Uploaded WP files to GoDaddy – but now I'm stuckCan you share some screenshots regarding the location where you have kept the WP files and also the wp-config file ?
Forum: Fixing WordPress
In reply to: How to retrieve post by category is 'play'Hi,
Marius is correct. But sometimes we don’t care about vulnerability but anyhow our work must be done. If you think of better code then definitely you should follow the the way as Marius says but if it is not so required you could use above codes to complete your purpose.
Thanks!
Forum: Fixing WordPress
In reply to: How to retrieve post by category is 'play'Hello Friend,
Might below code can help. Please check.
<?php query_posts('category_name=play&showposts=-1'); $flag=0; while(have_posts()) : the_post(); $flag=1; echo the_title(); endwhile; if($flag == 0) echo "No Posts."; ?>
Its done.
I removed “su_” from settings and it’s working now. Sorry to bother you Vladimir.
Forum: Fixing WordPress
In reply to: slider size problemCan you provide the link to check the exact problem ? Revolution slider is used in this theme. You can define the size and full width option in slider settings. Hope this could help you.
Forum: Installing WordPress
In reply to: Installed WP through hostgator but nothing displayedHi AmandaZiller,
As I see your site is opening and wp-admin panel also. I hope your problem has been resolved?
Forum: Fixing WordPress
In reply to: Can't install websiteHi ktisdale12,
Hosting companies often add an “index.html” file to your site when you create a new account with them. Just login to your FTP or File Manage from cPanel and delete these files. The possible name of this file could be “index.html” or “home.html”.
Hope this could resolve your issue.Forum: Fixing WordPress
In reply to: I can not change the permalinkYou need to change the code of your .htaccess file.
Change it as-
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # BEGIN WordPress # END WordPress
Put #Begin WordPress section at end . This could resolve your problem.
Forum: Installing WordPress
In reply to: Installing WordPress onto an html siteHi dosuntai,
As I understand you should find the
index.html
file and rename it as
index2.html
or anything of your choice. Hope this works for you.
Forum: Fixing WordPress
In reply to: Menu Permalinks issueThese all are working fine as I have checked.
Forum: Plugins
In reply to: [W3 Total Cache] CSS and JS is not workingIn my case WP – Super Cache fits at my need. Thanks for help.
Forum: Fixing WordPress
In reply to: URL rewriting helpHi wiresplus, Yes you are right, I am discussing about URL masking, but still could not get to know that how can it be done? please let me know if you could guide me.Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] CSS and JS is not workingDisabled and using WP – Super Cache now. Much better!