Forums › Forums › All other PixoPoint plugins › Theme Integrator not generating cache files, tryed all fixes
- This topic has 21 replies, 4 voices, and was last updated 13 years, 10 months ago by imported_Ryan.
-
AuthorPosts
-
June 11, 2010 at 9:08 am #1495AnonymousMember
I’m trying to get the Theme Integrator working on both my local server and remote, but it’s not generating the Chunk*.html files on either server.
I’ve read all the posts here and attempted the fixes suggested but it’s still not working.
Heres all the details I can think of that play a part in the problem, any help is much appreciated.
Plugin settings:
Frequency: 10 (seconds)
Post ID: 79 (blog post page, has been reloaded to fire plugin)
All Chunks of text to remove are empty.
Location of html is returning: ([i:297mo0dp]R:DEVWEBwordpress/wp-content/uploads/pixopoint-theme-integrator[/i:297mo0dp])Code used in multiple places in header.php and footer.php wordpress theme files:
[code:297mo0dp]<?php pixopoint_theme_integrator( ‘start’, ‘1’ ); ?>
<?php pixopoint_theme_integrator( ‘end’, ‘2’ ); ?>[/code:297mo0dp]The code snippet function is executing successfuly, as it is returning the comment replacements in the HTML. ([i:297mo0dp]<!– PixoPoint theme integrator start chunk #1 and heres the end of the integrator text –>[/i:297mo0dp])
Permissions have been checked and double checked on both servers, I suspect it’s a path problem but all my efforts at manually changing the path variables in core.php have not fixed the problem.
If anyone has sovled this issue please share your fix.
Thanks!
June 11, 2010 at 11:59 am #8709imported_RyanMemberDamn. I have no idea what could be causing this ” title=”Sad” />
Is it creating the folder at DEVWEBwordpress/wp-content/uploads/pixopoint-theme-integrator?
June 11, 2010 at 12:03 pm #8710imported_RyanMemberDoes your theme include the wp_footer() function?
http://codex.wordpress.org/Function_Reference/wp_footer
The plugin utilises that hook to trigger the start of the chunk processing. So if you were missing it, then none of the files would be created.
I did read an article a while back about how to do callbacks on output buffering to save relying on a hook. So if that is your problem, I can probably find a work-around for it.
June 11, 2010 at 5:57 pm #8711AnonymousMemberThanks for your help Ryan.
That does seem to fix the problem, it’s creating the directory and files correctly now.
My custom theme did not call wp_footer() at all, i’ve added the call to my footer.php file and it’s working… but I’m not sure what the hook is for? The codex function page doesn’t explain much.. all it seems to be doing is echoing the string ‘/DEV/WEB/wordpress/wp-content/uploads/pixopoint-theme-integrator’ into my footer.
June 12, 2010 at 3:13 am #8712imported_RyanMemberThe wp_footer() hook is required in pretty much all themes as it is utilized by many different plugins to inject code into the page footer, usually javascript.
If you don’t have the wp_footer() function in your theme, many plugins simply won’t work.
It shouldn’t be injecting the uploads folder URL into there though, that sounds very odd. At least the plugin is behaving as expected now though.
August 28, 2010 at 6:57 pm #8713AnonymousMemberHi There,
Im having troupl and it seems the folder is not being generated:
"Is it creating the folder at DEVWEBwordpress/wp-content/uploads/pixopoint-theme-integrator?"
No ” title=”Smiley” />
If you have any ideas, that would be great.
The permissions on /uploads are 777
Many thanks for your help.
September 2, 2010 at 4:08 pm #8714imported_RyanMemberInteresting, this is the second report I’ve had on this. Perhaps try creating the folder manually. I’ll look at fixing this during the next update.
September 10, 2010 at 8:30 pm #8715OPShotsMemberSame here. Created folder. No dice.
September 14, 2010 at 12:11 am #8716OPShotsMemberAnyone home?
September 15, 2010 at 3:58 am #8717imported_RyanMemberSorry, I’m run of my feet busy.
September 21, 2010 at 11:17 am #8718OPShotsMemberI tried it again following all steps exactly. No folder generates. I created it manually and tried 777 and 755 permissions. No files are created still. Any ideas of what I should do next? I know you are busy and would be appreciate of at least pointing me in the right direction.
October 8, 2010 at 12:47 pm #8719AnonymousMemberHey,
same or nearly same problem here. i just Dropped
[b:1czp75ay]<?php pixopoint_theme_integrator( ‘start’, ‘1’ ); ?>[/b:1czp75ay] and ‘end’ into my WordPress page.php
after that i dropped the
[b:1czp75ay]<?php require( ‘ /homepages/10/d291147526/htdocs/pure/wp-content/uploads/pixopoint-theme-integrator/chunk1.html’ ); ?> [/b:1czp75ay] into the first line of my SMF index.template.php
finally i activate the plugin @ the admin page in wordpress. For now the folder
[b:1czp75ay] /homepages/10/d291147526/htdocs/pure/wp-content/uploads/pixopoint-theme-integrator/[/b:1czp75ay]
was created successfully, but it was nothing in it . when i try to open up my smf forum i got this error message[b:1czp75ay]Fatal error: (null)() [function.require]: Failed opening required ‘ /homepages/10/d291147526/htdocs/pure/wp-content/uploads/pixopoint-theme-integrator/chunk1.html’ (include_path=’.:/usr/lib/php’) in /homepages/10/d291147526/htdocs/pure/smf/Sources/Load.php(1733) : eval()’d code on line 1[/b:1czp75ay]
any ideas???November 7, 2010 at 5:18 pm #8720OPShotsMemberI have come to the realization that this is still a work in progress without any support at this time. I understand the author has to do paid work first. For now I am moving on and shelving this until a less buggy version is released.
November 14, 2010 at 8:20 am #8721imported_RyanMember"OPShots" wrote:I have come to the realization that this is still a work in progress without any support at this time. I understand the author has to do paid work first. For now I am moving on and shelving this until a less buggy version is released.Sorry you feel that way. I can’t find any problems with the plugin though. It seems to be working perfectly on every WordPress install I’ve tried it on, including on multi-site setups.
February 16, 2011 at 2:27 pm #8722cloferbaMemberwhat i have done is, in header.php at the top add
[code:3qbqxdc4]<?php pixopoint_theme_integrator( ‘start’, ‘1’ ); ?>[/code:3qbqxdc4]
and
[code:3qbqxdc4]<?php pixopoint_theme_integrator( ‘end’, ‘1’ ); ?>[/code:3qbqxdc4]
at the end of header.phpnow what? i have configure the plugin but i also not seen any html file on the directory it says (i have created the directory but no way)
pd: can you make a php file to try to generate the html file? with this..we can see what is not working or why the html file isnt created
-
AuthorPosts
- You must be logged in to reply to this topic.