Pixelated a phpBB Template by SkaidonDesigns
 
Cheapest Web Software Support Area Forum Index www.cheapestwebsoftware.com
Play with the Best, be the Best!
Cheapest Web Software
FAQ
Search
Memberlist
Usergroups
Profile
Log in to check your private messages
Log in

The Mightiest Webmaster Solutions Ever
Blogs Automater
Blogs Automater
Blogs Organizer
Blogs Organizer
Porn Blog Space
Porn Blog Space
Links Organizer
Links Organizer

Haven't registered yet? Do it here now!
The devil is in the links showing up... Or so it seems.

 
Post new topic   Reply to topic    Cheapest Web Software Support Area Forum Index -> Links Organizer
View previous topic :: View next topic  
Author Message
HeadPimp



Joined: 04 Feb 2008
Posts: 10

PostPosted: Mon Feb 04, 2008 7:54 am    Post subject: The devil is in the links showing up... Or so it seems. Reply with quote
Seems I have the standard issue problem of no links showing up.

Here is the situation.

Target blog page is
pornblogobsessed (dot) com/?page_id=443 ( a testing page )

I have two trades set up that are pointing at it. The code for the template looks like this:
Code:
{tradelinkformat,<a href='{url}' title='{title}'>{anchor}</a><br>}
{trades,1-10}


With the codes dished out by the admin script included ( all three in fact, just in case) Just the raw code shows up. Obviously I am doing something wrong.

After reading this forum, I am wondering if it is the htaccess causing the issues. The code for that is


Code:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress


What obvious piece of the puzzle am I missing.
Back to top
View user's profile Send private message

Author Message
Atanasis
Owner


Joined: 22 May 2004
Posts: 4284
Location: The Net

PostPosted: Mon Feb 04, 2008 12:34 pm    Post subject: Reply with quote
yes, could be the htaccess, coz it might cause any .php pages to be redirected to elsewhere.

To see if your template opens up fine, go to its linking codes page, and in the 2nd include code the REMOTE one, copy the url of the template and paste it in your browser and see if it will open up fine and displaying your trades..

keep me posted..
_________________
Thanks,
Kaktusan

Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger ICQ Number

Author Message
HeadPimp



Joined: 04 Feb 2008
Posts: 10

PostPosted: Mon Feb 04, 2008 2:29 pm    Post subject: Reply with quote
ok.... So If I put it straight into an address bar it comes up fine.

http://headpimp.com/lo/site_templates/site_1_1.php

But in pages (on any of my sites) where I add
Code:

<?php
@ini_set('expose_php', 'Off');
@include "http://headpimp.com/lo/site_templates/site_1_1.php";
?>


It doesn't do anything. There something more I need to be adding?
I have tried pulling the .htaccess files, using it on domains without any .htaccess statement, pretty much confused as to what I am missing at this point.
Back to top
View user's profile Send private message

Author Message
Atanasis
Owner


Joined: 22 May 2004
Posts: 4284
Location: The Net

PostPosted: Mon Feb 04, 2008 5:37 pm    Post subject: Reply with quote
yes, template is fine and loads fine. Probably your host has remote php includes disabled. So try with the 3rd linking code - the CURL one.

Let me know if that doesn't help either..
_________________
Thanks,
Kaktusan

Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger ICQ Number

Author Message
HeadPimp



Joined: 04 Feb 2008
Posts: 10

PostPosted: Mon Feb 04, 2008 6:06 pm    Post subject: Reply with quote
Negatory, nothing there that way either.

Tried it on this page:
http://www.headpimp.com/Grand%20Test.shtml
Back to top
View user's profile Send private message

Author Message
Atanasis
Owner


Joined: 22 May 2004
Posts: 4284
Location: The Net

PostPosted: Mon Feb 04, 2008 6:26 pm    Post subject: Reply with quote
oh, you should have started with that you are trying it on .shtml page.
The codes that LO provides work only on .php pages.

They can work and on .html or .shtml pages, but you need to make your server treat them as php ones. You can make this for .html pages like adding this line to a .htaccess file:
AddType application/x-httpd-php .html

See here why you can't include LO to .shtml pages directly:
http://support.cheapestwebsoftware.com/viewtopic.php?t=835

generally it is because SSI doesn't allow remote includes, but only local to the domain.
_________________
Thanks,
Kaktusan

Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger ICQ Number

Author Message
HeadPimp



Joined: 04 Feb 2008
Posts: 10

PostPosted: Mon Feb 04, 2008 7:14 pm    Post subject: Reply with quote
Ach-ha! We are getting closer then.

I had actually tried it on a couple types of pages
http://headpimp.com/Grand%20Test.php works....

As does
http://pornblogobsessed.com/Grand%20Test.php

But then what is the hang up that keeps
http://www.pornblogobsessed.com/?page_id=443
from doing its thing?

I have all three codes in the body
I have the stripped down code in a Widgetize anything box on the left
I added it to the footer code all the way down at the bottom where it says "Right Here" Which doesn't seem to show up when the page is run.

Oh! And this is with all the htaccess files that I could find pulled
Neutral

AMMENDED:
Tried it on http://bbwhotty.thumblogger.com/
via posting it to a box in thumblogger.com with the code
Code:

<?php
@ini_set('expose_php', 'Off');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://headpimp.com/lo/site_templates/site_4_2.php");
curl_setopt($ch, CURLOPT_HEADER,0);
curl_exec($ch);
curl_close($ch);
?>


And...... Nada....
Back to top
View user's profile Send private message

Author Message
Atanasis
Owner


Joined: 22 May 2004
Posts: 4284
Location: The Net

PostPosted: Tue Feb 05, 2008 12:33 pm    Post subject: Reply with quote
ok, cool, so you see it all works fine Smile

well, on thumblogger you can't make it run since they don't allow php code.
on your wordpress blog you will need either to edit directly the sidebar template file, or use a plugin, because from WP admin php can't be inserted directly..
_________________
Thanks,
Kaktusan

Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger ICQ Number

Author Message
HeadPimp



Joined: 04 Feb 2008
Posts: 10

PostPosted: Tue Feb 05, 2008 2:36 pm    Post subject: Reply with quote
Oh yeah! Your script works fine. It is just my curse at implementing scripts that is apparently giving me fits. The easier it should be, the more pain in my rear end it always seems to be.

As for inserting the code into Wordpress, what about the WidgetizeAnything plugin?

http://support.cheapestwebsoftware.com/viewtopic.php?t=710&highlight=widgetize

Additionally I just ran it on a different site, and it worked fine... Sigh....

OK, now that I know it is just that site, I will bash on it a while. In the mean time, what issues will I run into if I run the script on a separate PHP page then Iframe it into a Thumblogger site?
Back to top
View user's profile Send private message

Author Message
Atanasis
Owner


Joined: 22 May 2004
Posts: 4284
Location: The Net

PostPosted: Tue Feb 05, 2008 3:55 pm    Post subject: Reply with quote
i am not working with WP, so i can't help much on there..

as about iframing the trades to your thumblogger blogs, its not advicable, since linkcheckers of your traders will not find the recips and it has no SEO results..
_________________
Thanks,
Kaktusan

Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger ICQ Number

Display posts from previous:   
Post new topic   Reply to topic    Cheapest Web Software Support Area Forum Index -> Links Organizer All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2002 phpBB Group