boundforhome
Forum Replies Created
-
Thanks @optimizingmatters – are you able to remove the “The page I need help with: ” from the original post? Already getting spam emails about ‘solutions’ that I don’t need.
Amazing @optimizingmatters – that made all the difference. I simply removed that whole base64-encode sourcemap and it just works as expected. It was that simple, and that complicated. Weird.
Amazing @optimizingmatters – thank you Frank, that sort of investigation is going way beyond what I expect, and I appreciate it so much. I wish I had considered doing this myself. Thank you. Will figure out exactly what that means and why it’s there!
- This reply was modified 4 years, 4 months ago by boundforhome.
… nothing untoward in the PHP error log. There’s an Aq_Resize.process() error and something for some Flothemes PHP that fails. That’s it. ??
Thanks @optimizingmatters – I will check out the PHP errorlog right now, hadn’t considered that.
Also, worth noting it’s not quite “one single file”, it’s actually 3 files, all of which are in the /theme-files/public/ folder, so there’s something weird about how they’re loaded, perhaps.
Investigating. Thanks.
Just FYI, I got around this by creating an Associated Attendee as “XXX’s Partner”, and ensuring XXX had a Custom Question to provide their partner’s name.
Therefore, when XXX RSVPs, it not only prompts them to RSVP their partner but also asks who that Partner is. Boom.
I don’t know if it’s correct etiquette to hijack this thread, but I have the *exact* same problem occurring on my multisite install.
Couple of differences: I’m running WP 3.2.1, and I’m using the subdomain multisites rather than subdirectory.
However, exact same problem occurring – a 404 on the /wp-includes/ms-files.php parsing. Has this become a known issue, or is there any understood fix/workaround for this?
Jason
OK thanks, I will try this. Found some other plugin uninstall problem that I need to overcome first, then I’ll give this a go. Appreciate the help.
And just a note – no, gallery/pricing/kat are *not* subsites. This isn’t really a subsite problem, that I can tell, it just seemed to manifest when I installed Multisite (and presumably made the .htaccess changes). But I could be wrong.
Forum: Themes and Templates
In reply to: NextGen Gallery: won’t uploadHow big exactly is the image file you’re uploading?
your Blog page will use the index.php file as its template.
Blog will *always* use index.php? i.e. I should define my default Blog template within this file, then include my Pages template with {otherfile}.php as another template a reference that (With Home existing in yet another template).
So the above works:
- custom template for /home/
- every other page using the normal template
But now – possibly down the wrong route? – I’m using is_page() logic to get the PHP template correct for the Pages / Posts.
I have a
<?php if (is_page()) { ?>
statement with some PHP for all Pages, and then the<?php } else { ?>
statement with different PHP which appears to kick in for /blog/ and any Blog Posts.This does seem to work. If I specify a template for the /blog/ it just doesn’t seem to work, possibly because the /blog/ page isn’t a normal page in this situation, but not entirely sure.
Is this the correct way to go about getting the /blog/ listing and blog Posts looking slightly different to normal Pages?
OK, this does work well but I can’t get the page at /blog/ and the subsequent Posts linked from this page to display in similar fashion to my Pages.
Commands like list_pages don’t appear to work so well on the /blog/ and Post pages, and don’t list my CMS pages.
You are quite right. A custom page template for /home/ can be applied as such, and works quite well. Nice.
Thanks.
Still don’t have the blog working quite right but I have seen it so I must have tweaked my PHP a little too much. Will work on that.
Forum: Themes and Templates
In reply to: Category Subdomains & Themes! HELP NEEDED QUICKI’m no expert at this stuff, but I don’t believe you can have a different theme, but have you considered using the conditional tags for Categories in your PHP template to slightly tweak the theme?
i.e. one of these two:
in_category(‘5’)
is_category(‘5’)How’s your PHP?
<?php if in_category('5') { ?> <div id="cat5">{stuff}</div> <?php } else { ?> <div id="cat_6">{stuff}</div> <?php } ?>
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] NextGEN gallery on NFSN – permission problems?Alex Rabe, perhaps you can reply and let me know exactly what permissions I need to ensure are in place?
I’ve ensured the /gallery/ and all subfolders are 777 and group web, but this clearly isn’t enough. Any other requirements for particular files within the plugin that need to have the correct owner???
– Jason