Home arrow Forum Autocreate Error
  Welcome, Guest. Please login or register.
Did you miss your activation email?
December 02, 2008, 11:43:14 PM
Home New Posts Search Calendar


Login with username, password and session length
+  Joomla Forum
|-+  Joomla Hacks
| |-+  Joomla-SMF Forum Support
| | |-+  Joomla-SMF 1.1.x (Moderators: -Wolverine, kai920)
| | | |-+  Autocreate Error
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] Go Down Print
Author Topic: Autocreate Error  (Read 1822 times)
Joshua
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 3


View Profile WWW
Autocreate Error
« on: June 05, 2006, 06:17:41 PM »

Sorry, if this has been asked before.  If so, just point me in the write direction.  When I select the autocreate in the bot, I get the following error when I refresh my browser.


Warning: make_smfforumlink(): open_basedir restriction in effect. File(/Subs-Post.php) is not within the allowed path(s): (/home/httpd/vhosts/totallyreformed.com/httpdocs:/tmp) in /home/httpd/vhosts/totallyreformed.com/httpdocs/mambots/content/smf.discussbot.php on line 359

Warning: make_smfforumlink(/Subs-Post.php): failed to open stream: Operation not permitted in /home/httpd/vhosts/totallyreformed.com/httpdocs/mambots/content/smf.discussbot.php on line 359

Warning: make_smfforumlink(): Failed opening '/Subs-Post.php' for inclusion (include_path='/home/httpd/vhosts/totallyreformed.com/httpdocs/administrator/components/com_sef:/home/httpd/vhosts/totallyreformed.com/httpdocs/administrator/components/com_sef/includes:.:/usr/share/pear') in /home/httpd/vhosts/totallyreformed.com/httpdocs/mambots/content/smf.discussbot.php on line 359

Fatal error: Call to undefined function: createpost() in /home/httpd/vhosts/totallyreformed.com/httpdocs/mambots/content/smf.discussbot.php on line 418

It seems as if the $sourcedir is not showing up or could not be found.  Does anyone know a work-around?  Thanks.



Josh P.
Logged

Kevin8020
QA / Testers
Joomla Master
*****

Karma: +33/-18
Offline Offline

Posts: 105



View Profile WWW
Re: Autocreate Error
« Reply #1 on: June 05, 2006, 09:12:51 PM »

What bridge, and version of that bridge are you using? Also, what version of SMF are you using?

-Kevin
Logged
Joshua
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 3


View Profile WWW
Re: Autocreate Error
« Reply #2 on: June 06, 2006, 11:21:22 AM »

What bridge, and version of that bridge are you using? Also, what version of SMF are you using?

-Kevin

I was actually using the wrong bridge.  However, when I try to patch the Joomla index.php, I get the following error: Failed: Code to be patched not found in file: /home/httpd/vhosts/totallyreformed.com/httpdocs/index.php
Logged

-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: Autocreate Error
« Reply #3 on: June 06, 2006, 12:58:35 PM »

which version of J!?  Post your index.php file
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
Joshua
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 3


View Profile WWW
Re: Autocreate Error
« Reply #4 on: June 06, 2006, 01:56:36 PM »

which version of J!?  Post your index.php file


I am using version 1.08 and below is my index.php file.  I will be updating to the latest version soon.

Code:

/**
* @version $Id: index.php 2578 2006-02-23 19:10:07Z stingrey $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// Set flag that this is a parent file
define( '_VALID_MOS', 1 );

// checks for configuration file, if none found loads installation page
if (!file_exists( 'configuration.php' ) || filesize( 'configuration.php' ) < 10) {
$self = str_replace( '/index.php','', $_SERVER['PHP_SELF'] ). '/';
header("Location: http://" . $_SERVER['HTTP_HOST'] . $self . "installation/index.php" );
exit();
}

include_once( 'globals.php' );
require_once( 'configuration.php' );
require_once( 'includes/joomla.php' );

//Installation sub folder check, removed for work with SVN
if (file_exists( 'installation/index.php' )) {
define( '_INSTALL_CHECK', 1 );
include ('offline.php');
exit();
}

// displays offline/maintanance page or bar
if ($mosConfig_offline == 1) {
require( 'offline.php' );
}

// load system bot group
$_MAMBOTS->loadBotGroup( 'system' );

// trigger the onStart events
$_MAMBOTS->trigger( 'onStart' );

if (file_exists( 'components/com_sef/sef.php' )) {
require_once( 'components/com_sef/sef.php' );
} else {
require_once( 'includes/sef.php' );
}
require_once( 'includes/frontend.php' );

// retrieve some expected url (or form) arguments
$option = trim( strtolower( mosGetParam( $_REQUEST, 'option' ) ) );
$Itemid = intval( mosGetParam( $_REQUEST, 'Itemid', null ) );

if ($option == '') {
if ($Itemid) {
$query = "SELECT id, link"
. "\n FROM #__menu"
. "\n WHERE menutype = 'mainmenu'"
. "\n AND id = '$Itemid'"
. "\n AND published = '1'"
;
$database->setQuery( $query );
} else {
$query = "SELECT id, link"
. "\n FROM #__menu"
. "\n WHERE menutype = 'mainmenu'"
. "\n AND published = 1"
. "\n ORDER BY parent, ordering LIMIT 1"
;
$database->setQuery( $query );
}
$menu = new mosMenu( $database );
if ($database->loadObject( $menu )) {
$Itemid = $menu->id;
}
$link = $menu->link;
if (($pos = strpos( $link, '?' )) !== false) {
$link = substr( $link, $pos+1 ). '&Itemid='.$Itemid;
}
parse_str( $link, $temp );
/** this is a patch, need to rework when globals are handled better */
foreach ($temp as $k=>$v) {
$GLOBALS[$k] = $v;
$_REQUEST[$k] = $v;
if ($k == 'option') {
$option = $v;
}
}
}
if ( !$Itemid ) {
// when no Itemid give a default value
$Itemid = 99999999;
}

// mainframe is an API workhorse, lots of 'core' interaction routines
$mainframe = new mosMainFrame( $database, $option, '.' );
$mainframe->initSession();

// trigger the onAfterStart events
$_MAMBOTS->trigger( 'onAfterStart' );

// checking if we can find the Itemid thru the content
if ( $option == 'com_content' && $Itemid === 0 ) {
$id = intval( mosGetParam( $_REQUEST, 'id', 0 ) );
$Itemid = $mainframe->getItemid( $id );
}

/** do we have a valid Itemid yet?? */
if ( $Itemid === 0 ) {
/** Nope, just use the homepage then. */
$query = "SELECT id"
. "\n FROM #__menu"
. "\n WHERE menutype = 'mainmenu'"
. "\n AND published = 1"
. "\n ORDER BY parent, ordering"
. "\n LIMIT 1"
;
$database->setQuery( $query );
$Itemid = $database->loadResult();
}

// patch to lessen the impact on templates
if ($option == 'search') {
$option = 'com_search';
}

// loads english language file by default
if ($mosConfig_lang=='') {
$mosConfig_lang = 'english';
}
include_once( 'language/' . $mosConfig_lang . '.php' );

// frontend login & logout controls
$return = mosGetParam( $_REQUEST, 'return', NULL );
$message = mosGetParam( $_POST, 'message', 0 );
if ($option == 'login') {
$mainframe->login();

// JS Popup message
if ( $message ) {
?>
<script language="javascript" type="text/javascript">
<!--//
alert( "<?php echo _LOGIN_SUCCESS?>" );
//-->
</script>
<?php
}

if ( $return && !( strpos$return'com_registration' ) || strpos$return'com_login' ) ) ) {
// checks for the presence of a return url
// and ensures that this url is not the registration or login pages
mosRedirect$return );
} else {
mosRedirect$mosConfig_live_site .'/index.php' );
}

} else if (
$option == 'logout') {
$mainframe->logout();

// JS Popup message
if ( $message ) {
?>

<script language="javascript" type="text/javascript">
<!--//
alert( "<?php echo _LOGOUT_SUCCESS?>" );
//-->
</script>
<?php
}

if ( $return && !( strpos$return'com_registration' ) || strpos$return'com_login' ) ) ) {
// checks for the presence of a return url
// and ensures that this url is not the registration or logout pages
mosRedirect$return );
} else {
mosRedirect$mosConfig_live_site.'/index.php' );
}
}

/** get the information about the current user from the sessions table */
$my $mainframe->getUser();

// detect first visit
$mainframe->detect();

// set for overlib check
$mainframe->set'loadOverlib'false );

$gid intval$my->gid );

// gets template for page
$cur_template $mainframe->getTemplate();
/** temp fix - this feature is currently disabled */

/** @global A places to store information from processing of the component */
$_MOS_OPTION = array();

// precapture the output of the component
require_once( $mosConfig_absolute_path '/editor/editor.php' );

ob_start();
if (
$path $mainframe->getPath'front' )) {
$task  mosGetParam$_REQUEST'task''' );
$ret  mosMenuCheck$Itemid$option$task$gid );
if ($ret) {
require_once( $path );
} else {
mosNotAuth();
}
} else {
header("HTTP/1.0 404 Not Found");
echo _NOT_EXIST;
}
$_MOS_OPTION['buffer'] = ob_get_contents();
ob_end_clean();

initGzip();

header'Expires: Mon, 26 Jul 1997 05:00:00 GMT' );
header'Last-Modified: ' gmdate'D, d M Y H:i:s' ) . ' GMT' );
header'Cache-Control: no-store, no-cache, must-revalidate' );
header'Cache-Control: post-check=0, pre-check=0'false );
header'Pragma: no-cache' );

// display the offline alert if an admin is logged in
if (defined'_ADMIN_OFFLINE' )) {
include( 'offlinebar.php' );
}

// loads template file
if ( !file_exists'templates/'$cur_template .'/index.php' ) ) {
echo _TEMPLATE_WARN $cur_template;
} else {
require_once( 'templates/'$cur_template .'/index.php' );
echo "<!-- ".time()." -->";
}

// displays queries performed for page
if ($mosConfig_debug) {
echo $database->_ticker ' queries executed';
echo '<pre>';
 
foreach ($database->_log as $k=>$sql) {
 
echo $k+"\n" $sql '<hr />';
}
}

define("_BBC_PAGE_NAME"$mainframe->_head['title']);
 
define("_BBCLONE_DIR""/home/httpd/vhosts/totallyreformed.com/httpdocs/bbclone/");
 
define("COUNTER"_BBCLONE_DIR."mark_page.php");
 if (
is_readable(COUNTER)) include_once(COUNTER);

doGzip();

Logged

Pages: [1] Go Up Print 
« previous next »
Jump to:  



Login with username, password and session length

Powered by MySQL Powered by PHP Joomla Forum | Powered by SMF 1.1 RC1.
© 2001-2005, Lewis Media. All Rights Reserved.
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!

Joomla Hacks is a Joomla Components, Joomla Modules, Joomla Templates, & Joomla Mambots resource portal. None of the text or images in this public website may be copied without the expressed written consent of the authors. Copyright 2005 by JoomlaHacks.com. Powered by Joomla. All rights reserved.
Terms of Use
Joomla Hacks



Joomla Hacks
German Lang French Lang Italian Lang Spanish Lang Japanese Lang Chinese Lang
Search Contact About Advertise Blogs Topsites Submit News Register Login