How do I install socialengine on localhost - installation

Please I really need help in installing socialengine on localhost. I've tried but I've been getting 503's. Please any procedures, links to tutorials or videos would be very much appreciated. Thanks in advance

There seems to be a good installation support tutorial from SocialEngine here - http://support.socialengine.com/php/customer/portal/articles/1667583-installing-socialengine
As boring as it is CHECK YOUR MINIMUM SERVER REQUIREMENTS here - http://support.socialengine.com/php/customer/portal/articles/1649350-socialengine-requirements?b_id=4311
You might also want to consider changing the error reporting level on your server. If you can find your php.ini config file you want to look for
error_reporting = E_ALL ^ E_NOTICE ^ E_WARNING
display_errors = On
See here about error reporting - https://stackoverflow.com/a/13402590/276220
By changing the error reporting level you should be able to see the line that's causing you the issue rather than just the 500 page.

Related

HTTP ERROR 500 - after all configurations as said by creator

I'm using codeigniter project (opensourcepos). I have done all configurations as said but there's an error.enter image description here
Please help me out...
I have tried to change the .htaccess file many times but in vain...
It looks like the actual error is not being displayed so you can't properly diagnostic it.
Depending on the CI settings and version (please specify) it hides the error and only shows a standard server 500.
Details:
https://codeigniter.com/user_guide/general/errors.html

Winhost Error after fresh install of BlogEngine.Net

After installing BlogEngine.net through the WinHost control panel I'm getting the following error
Ooops! An unexpected error has occurred.
This one's down to me! Please accept my apologies for this - I'll see
to it that the developer responsible for this happening is given 20
lashes (but only after he or she has fixed this problem).
I am able to add new blog entries on the main site, so I do have write access to App_Data... I only receive the error when going to "users" or "settings", etc.
Can anyone help on this one?
Received response from BlogEngine.Net on CodePlex. Answer is at https://blogengine.codeplex.com/discussions/523930
Their response was to change web.config
> In web.config, change from: <!--<trust level="Medium"/>--> to: <trust level="Full"/>
Hope this helps someone else who installed through WinHost.

SugarCRM portal installation Allow Call Time Pass Reference

I am installing SugarCRM Portal on my local host. In installation wizard it says that I must turn on Allow Call Time Pass Reference and I did at php.ini and stopped my apache server. When I started it back again an error occurred saying there was a fatal error.
Here is the error on my logs
"Fatal error: Directive 'allow_call_time_pass_reference' is no longer
available in PHP"
I cannot continue my installation if all settings are all green. This is the only thing that is blocking me. Help Please.
It says in the PHP documentation that this configuration option has been removed from PHP 5.4.0 onwards.
http://php.net/manual/en/ini.core.php
If your php version is above PHP 5.4.0, try downgrading PHP.
I've got it
air4x's comment is correct but not detailed so I am here to give the detailed one.
All you have to do is go to sugarportal_dir/install/ then open checkSystem.php. There is a if statement that looks like this.
if('0' == ini_get('allow_call_time_pass_reference')) {
}
All you have to do is change 0 to 1:
if('1' == ini_get('allow_call_time_pass_reference')) {
}
That's it. Hope that helps others. And thanks for the reply air4x your logic is correct.

CodeIgniter 2.0.2 syntax error blank page

CodeIgniter 2.0.2 syntax error blank page
i have CodeIgniter 2.0.2 (CI) and its annoing, that when i write lots of code and then just get blank page. Hard to debug without error. i got error reporting E_ALL in php.ini and in config of CI its turned on for every case of enviroment (devel, product) just for sure...
Does anyone knows, where the bug can be? How to turn it on? I think CI is rewriting php.ini error reporting setting somewhere somehow...
Thanks.
The other thing to check in your php.ini are the 'display_errors' and 'display_startup_errors' variables, they should both be set to 1.
In my (little) experience with CI this issue has been the most frustating one. I can understand that no framework is perfect, and any web developer is used to deal with errors (no matter if the framework or the developer is to blame). But that ANY error results in a blank page, with ZERO information in logs, console, whatever, is unacceptable.
If I recall correctly, in my case this was caused by of some combination of CI (ab)using the "silent error" PHP operator (e.g. prepending some db statements with the # operator, a not very clever way of avoiding leaking potentially private information to the end user), together with some bad use of *error_reporting*. See my post here (and see how many answers I got!).
I reported another related CI's idiocyidiosyncrasy related with logging here (again, zero answers)
please check the index.php which locate in the SAME LEVEL of the application folder
inside the index.php the second line
line 2:
ini_set("display_errors", "1"); //ensure it is set to 1
line 23:
define('ENVIRONMENT', 'development'); // development | testing | production
grep your php.ini for the word "error", turn them to On etc...
Do you have output compression turned on in the config? I find that will cause white pages when you have errors.
$config['compress_output'] = FALSE; // Should be set to this when developing.
I had the same problem and eventually fixed it when i noticed I had no 'logs' directory in my application folder

Magento doesn't save my catalog_product_set, what can I do?

I 've installed magento and it seems to work, but if I want to save a new Catalog_product_set with different attributes then I get Internal Error Message with Status Code 500
Does anyone have the same problem?
Thanks in advance
cheers tabaluga
Your screenshot (and from the looks of it Magento's error page) clips the edge of the error off. Seeing the rest of the error message might be important. Regardless, it looks like Magento is trying to load a config file w/ simplexml, and cannot find that file.

Resources