BLOG:CMS :: Support Forum
Support Forum for BLOG:CMS
You are not logged in.
#11 13.08.2004 21:57
#12 13.08.2004 21:58
- Radek Hulán
- Site Admin

- From: Prague, Czech Republic
- Registered: 17.03.2004
- Posts: 2508
- Website
Re: Fancy URLs and icons in Comments
Sushubh wrote:
Any quick guides to upgrade without screwing the old installation?
Offline
#13 13.08.2004 23:08
Re: Fancy URLs and icons in Comments
![]()
http://sushubh.net/member/1
this page is again with <? instead of <?php
where do i fix it!
Offline
#14 13.08.2004 23:54
- Radek Hulán
- Site Admin

- From: Prague, Czech Republic
- Registered: 17.03.2004
- Posts: 2508
- Website
Re: Fancy URLs and icons in Comments
just replace <? with <?php at "member" file... seems like you the first one to run PHP short open tags off
the mod takes about 1 second..
http://www.google.com/search?q=powered+by+BLOG:CMS
Offline
#15 14.08.2004 00:15
Re: Fancy URLs and icons in Comments
<?
include('./fancyurls.config.php');
include('./config.php');
include($DIR_PLUGINS."related/nusoap.php");
$data = explode("/",serverVar('PATH_INFO'));
$memberid = intval($data[1]);
selector();
?>
It's not about skins. I managed to get the skin elements working with the update. The issue is that the member page is not coming processed because of my server's lack of processing of php code inside <? ?>! I just want to know where do I fix this code to <?php ?>
Last edited by Sushubh (14.08.2004 00:16)
Offline
#16 14.08.2004 00:18
- Radek Hulán
- Site Admin

- From: Prague, Czech Republic
- Registered: 17.03.2004
- Posts: 2508
- Website
Re: Fancy URLs and icons in Comments
it is, in fact, very simple:
Code:
<?php
include('./fancyurls.config.php');
include('./config.php');
include($DIR_PLUGINS."related/nusoap.php");
$data = explode("/",serverVar('PATH_INFO'));
$memberid = intval($data[1]);
selector();
?>I am now running with short_open_tags OFF, to find any more problems, so far I have found 2 more, at /plugins/print/print.php and /plugins/mailtoafriend/mailfriend.php.
Just change this:
Code:
<?
to this:
Code:
<?php
Sorry for the trouble, plugins are written by multiple authors, and nobody else was running with short_open_tags OFF.
Offline
