iamalik
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank Content Pages (index.php and admin are fine)This is just a theory. I noticed it’s calling index.php, which isn’t normal. WP usually adds a mod rewrite function that customizes that out. you can see all your pages if you just add index.php to it.
For example,
https://noreen.sunday51.org/?page_id=2
does not show but
https://noreen.sunday51.org/index.php?page_id=2
does.I think the problem is that the posts and page links are calling to the links without index.php. So try this.
In your wordpress folder create a file called .htaccess
(if it doesn’t exist already)put this in it:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /home/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /home/index.php
</IfModule># END WordPress
and save.
hope that helps.Imran
Forum: Plugins
In reply to: [Update] AIM Status Indicatorgreat plugin
can this be easily styled with css?
Forum: Your WordPress
In reply to: My first Very Own Theme!!I think you should decrease the size of your headers, they took a while to load (slow internet connection) but still, if you use photoshop, you should always Save For Web instead of Save As, it improves the compression.
Forum: Plugins
In reply to: Google Video Pluginthanks! it’s working perfectly now ??
Forum: Plugins
In reply to: Google Video Pluginnevermind about the more tag, now it’s working great, it was a CSS error on my part.
But it’s still cutting it off in IE. I tried resizing it to what you have in your demo (400×326) since yours is working in IE. any clue how to fix that?
Forum: Plugins
In reply to: Google Video PluginYeah, it doesn’t hide for me when I put it under the more tag. Also, it seems it’s not working in IE. My latest post has an example using your plugin.
Forum: Plugins
In reply to: Google Video Pluginhey it works really great, is there any way to make it work under the ‘<!–more–>’ function?
Forum: Plugins
In reply to: Google Video Pluginoh wait, I see, it breaks up the page, sorry I never tried it before, I’m going to go ahead and try out this plugin.
Forum: Plugins
In reply to: Google Video Plugini don’t understand, why use this instead of the code google gives you when you click on “put on site”
(not being rude, just wondering)
Forum: Fixing WordPress
In reply to: Permalinks not working without index.php in the urlchange the permalink structure to default, then change it back
Forum: Fixing WordPress
In reply to: Permalinks not working without index.php in the urlIf you go to options in the control panel, and change the permalink structure, it should work.