thefluffyshrimp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with Headers – Simple fix?Yay! It’s working just fine now. Thank you so much! ??
Forum: Fixing WordPress
In reply to: Problem with Headers – Simple fix?I’ve done what you told me to, but so far I keep getting the same error. Any ideas?
Thank you again for your assistance. ??
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageFixed it! I wound up resorting to an old-school iframe. Thank you again iridiax.
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageWell, I’m thinking of resorting to just using a frame for this particular script.
To do this, I’ll need to apply the style.css from my selected WordPress theme to this. Is there a way to do this?
And if not, is there a way to change the font style, color, and size of the following?
<?php
include “wp-content/themes/e-storage-plus/ccmail/include.php”;
?>
Thank you for your help.
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageWait, false alarm. The text appears, but now the script is broken. One second, let me try something else.
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageWOOT! I got it to work.
The only thing left I need to do is get the style sheet to affect it (you can see the text is a little wonky looking). Any ideas?
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageHmm, I have the include files in my chosen theme’s folder (e-storage-plus) and am using TEMPLATEPATH, but I’m still getting this error:
Fatal error: Cannot redeclare get_settings() (previously declared in /home/xxxx/wp-includes/deprecated.php:887) in /home/xxxx/wp-content/themes/e-storage-plus/ccmail/functions/shared.php on line 238
It looks like I have two “get_settings” being declared. Is that the problem? If so, how should I change that?
Once again, thanks for all your help. ??
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageHey iridiax,
I think I’m getting close to solving the problem.
I’ve done this:
Created a custom page template and assigned it to that one page.
And I’ve done this:
You may find it more convenient to copy some other Template (perhaps page.php or index.php) to snarfer.php and then add the above five lines of code to the beginning of the file. That way, you will only have to alter the HTML and PHP code, instead of creating it all from scratch.
However, the only thing that I’m having trouble with now seems to be where in the custom page template file to place the include:
<?php include “ccmail/include.php”; ?>
So far I’ve placed the include here:
<div class=”entry”>
<?php include “ccmail/include.php”; ?>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<div class=”spacer”></div>
But I get the following error (this time, only one):
Fatal error: Cannot redeclare get_settings() (previously declared in /home/xxxxx/wp-includes/deprecated.php:887) in /home/xxxxx/wp-content/themes/e-storage-plus/ccmail/functions/shared.php on line 238
Any idea on how to fix it?
Thank you so much for your help! ??
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageAs of now, I’m getting the following error message:
Warning: include(ccmail/include.php) [function.include]: failed to open stream: No such file or directory in /home/xxxx/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()’d code on line 1
Warning: include() [function.include]: Failed opening ‘ccmail/include.php’ for inclusion (include_path=’.:/usr/local/php5/lib/php’) in /home/xxxx/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()’d code on line 1
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageThanks iridiax, but will that result in the include on all my WordPress pages? I’m only looking to put the include on just one of my pages. Is that possible with this? Thank you!
Forum: Fixing WordPress
In reply to: Incorporating a PHP Script Into a WordPress PageSo far an improvement, except I’m getting the following error:
`Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/xxxx/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()’d code on line 1
Warning: include(https://thefluffyshrimp.com/ccmail/include.php) [function.include]: failed to open stream: no suitable wrapper could be found in /home/xxxx/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()’d code on line 1
Warning: include() [function.include]: Failed opening ‘https://thefluffyshrimp.com/ccmail/include.php’ for inclusion (include_path=’.:/usr/local/php5/lib/php’) in /home/xxxx/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()’d code on line 1
`Thank you so much for the help! ??
Forum: Themes and Templates
In reply to: WordPress Layout Got SkewedOoops, I just figured out what the problem is. The layout is fine, it’s just that when I reduce the size of the browser page, sections of the layout move around. Is there anyway to stop this from happening and make the site sections static?
Thank you for your help!
Forum: Themes and Templates
In reply to: WordPress Layout Got SkewedHuh, that’s weird. I viewed the page source and all the tags it said are missing are there.
In which file does the layout come together? As in, which file should I edit in which all the site sections are joined?
Thank you for your help! ??