2007/12/8 17:36:26
|
---|
|
Trunk no more workingHi guys, I just updated sandbox of the trunk and nothing is working no more. Just blank page, no debug. I will look into it but if anyone has an idea, please join me in the ImpressCMS IRC Channel, which, by the way, I implore all dev to try and use as much as possible. Will make it easier to help each other.
Thanks ! |
2007/12/8 17:55:30
|
---|
|
Re: Trunk no more workingOk found it.
mainfile.php, line 104, there is this : exit; Was there a reason ? Let me know ! |
2007/12/8 17:57:51
|
---|
|
Re: Trunk no more workingAnd I understand now. Vaughan added the "exit;" in the original mainfile.php :
// XOOPS is not installed yet.
if(! defined('XOOPS_INSTALL')){
header('Location: install/index.php');
exit();
} For some reason, when I SVN update, the "exit;" was added in my mainfile : if (!isset($xoopsOption['nocommon']) && XOOPS_ROOT_PATH != '') {
include XOOPS_ROOT_PATH."/include/common.php";
}
exit();
}
?> so stopping the process... Godamn mainfile ! LOL |
2007/12/8 18:01:05
|
---|
|
Re: Trunk no more workingAre you using SVN from the command line? When it merges changes to a file, I thought it's supposed to warn you, and give you a chance to see the specific changes.
|
2007/12/8 20:54:07
|
---|
|
Re: Trunk no more workingNo, using TortoiseSVN. Did I missed something ?
|
2007/12/9 4:30:30
|
---|
|
Re: Trunk no more workingI don't know much about TortoiseSVN. I tried using it briefly, then decided that I preferred using SVN from the command line. One advantage of the latter is that there's comprehensive documentation (the SVN book).
But TortoiseSVN is widely used, so it probably has equivalent functionality and documentation. |