HighHo,by Handyman` on Fri Jun 06, 2008 5:47 am
Just a bit longer… it's probably less than a week away if all goes well
are there any problems

Handyman may U can give us a status-quo-message?

thnx 4 ur work
sEErs Ming

HighHo,by Handyman` on Fri Jun 06, 2008 5:47 am
Just a bit longer… it's probably less than a week away if all goes well
I was a bit premature in saying less than a week away… I thought less than a week was this weeked for some reason._Ming_ wrote:HighHo,by Handyman` on Fri Jun 06, 2008 5:47 am
Just a bit longer… it's probably less than a week away if all goes well
are there any problems![]()
Handyman may U can give us a status-quo-message?
hoping and praying 4 the new version
thnx 4 ur work
sEErs Ming
Does this mean something?Phantom784 wrote:I'm thinking you might have made a mistake editing a language file. Upload and run the "language file checker" and let us know what it says. http://phpbbmodders.net/board/viewtopic.php?f=62&t=2729
Parse error: syntax error, unexpected '&' in /home/a2156242/public_html/phpBB3/include_lang.php on line 25
That looks like an error in the tester itsself that's preventing it from working. Be sure you copied and pasted it correctly before you ran it. (it's hitting that error before it even tries to test the lang files).Hero_of_Darkness wrote:Does this mean something?Phantom784 wrote:I'm thinking you might have made a mistake editing a language file. Upload and run the "language file checker" and let us know what it says. http://phpbbmodders.net/board/viewtopic.php?f=62&t=2729
Parse error: syntax error, unexpected '&' in /home/a2156242/public_html/phpBB3/include_lang.php on line 25
Code: Select all
<?php
/**
*
* @package phpbbmodders
* @version $Id$
* @copyright (c) 2008 phpbbmodders.net
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
/**
* this script will include all your language files
* this makes it easier to discover parse errors
*/
if ($files = scandir($phpbb_root_path . 'language/'))
{
foreach ($files as $file)
{
if (in_array($file, array('.', '..', '.svn'), true) || is_file($phpbb_root_path . 'language/' . $file))
{
continue;
}
include_lang($phpbb_root_path . 'language/' . $file . '/');
}
}
trigger_error('All language files seem to be intact.');
/**
* recursive function to include language files
*/
function include_lang($folder)
{
global $phpEx;
if ($files = scandir($folder))
{
foreach ($files as $file)
{
if (in_array($file, array('.', '..', '.svn'), true))
{
continue;
}
if (is_file($folder . $file) && substr(strrchr($file, '.'), 1) === $phpEx)
{
include($folder . $file);
}
else if (is_dir($folder . $file))
{
include_lang($folder . $file);
}
}
}
}
?>
Here's what I get:Phantom784 wrote:That looks like an error in the tester itsself that's preventing it from working. Be sure you copied and pasted it correctly before you ran it. (it's hitting that error before it even tries to test the lang files).Hero_of_Darkness wrote:Does this mean something?Phantom784 wrote:I'm thinking you might have made a mistake editing a language file. Upload and run the "language file checker" and let us know what it says. http://phpbbmodders.net/board/viewtopic.php?f=62&t=2729
Parse error: syntax error, unexpected '&' in /home/a2156242/public_html/phpBB3/include_lang.php on line 25
Edit: as the phpbbmodders.net site is down, here's the code.Code: Select all
<?php /** * * @package phpbbmodders * @version $Id$ * @copyright (c) 2008 phpbbmodders.net * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ /** * @ignore */ define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); /** * this script will include all your language files * this makes it easier to discover parse errors */ if ($files = scandir($phpbb_root_path . 'language/')) { foreach ($files as $file) { if (in_array($file, array('.', '..', '.svn'), true) || is_file($phpbb_root_path . 'language/' . $file)) { continue; } include_lang($phpbb_root_path . 'language/' . $file . '/'); } } trigger_error('All language files seem to be intact.'); /** * recursive function to include language files */ function include_lang($folder) { global $phpEx; if ($files = scandir($folder)) { foreach ($files as $file) { if (in_array($file, array('.', '..', '.svn'), true)) { continue; } if (is_file($folder . $file) && substr(strrchr($file, '.'), 1) === $phpEx) { include($folder . $file); } else if (is_dir($folder . $file)) { include_lang($folder . $file); } } } } ?>
Warning: Cannot modify header information - headers already sent by (output started at /home/a2156242/public_html/phpBB3/include_lang.php:1) in /home/a2156242/public_html/phpBB3/includes/functions.php on line 3526
Warning: Cannot modify header information - headers already sent by (output started at /home/a2156242/public_html/phpBB3/include_lang.php:1) in /home/a2156242/public_html/phpBB3/includes/functions.php on line 3527
Warning: Cannot modify header information - headers already sent by (output started at /home/a2156242/public_html/phpBB3/include_lang.php:1) in /home/a2156242/public_html/phpBB3/includes/functions.php on line 3528
Warning: Cannot modify header information - headers already sent by (output started at /home/a2156242/public_html/phpBB3/include_lang.php:1) in /home/a2156242/public_html/phpBB3/includes/functions.php on line 3529
All language files seem to be intact.
Did you make the style edits?vigge_swe wrote:The Cash isn't showing up in viewtopic and there is no UCP thingy for it.
I made all edits, uploaded all files and purged the cache.
Hero_of_Darkness wrote:Did you make the style edits?vigge_swe wrote:The Cash isn't showing up in viewtopic and there is no UCP thingy for it.
I made all edits, uploaded all files and purged the cache.
Did you refresh the templates? And, if so, are you using one of the stlyes you edited?vigge_swe wrote:Hero_of_Darkness wrote:Did you make the style edits?vigge_swe wrote:The Cash isn't showing up in viewtopic and there is no UCP thingy for it.
I made all edits, uploaded all files and purged the cache.
Yes
hmm, I hadn't thought of that, but I think I'll add it.NYM_Boston wrote:Handyman`, is there guna be a log in the admin panel showing who donated to who and all that stuff?