Hello all I am running Roundcube 1.0.2RC and I am having issues with plugins. I edited the config.inc.php file with the following:
$rcmail_config['plugins'] = array(
'cpanellogin',
'cpanellogout',
'markasjunk',
'userinfo',
'vcard_attachments',
'jqueryui',
'database_attachments',
'autologon',
'rccalendar',
'serverinfo');
and it causes round cube to no longer load. I have tried one at a time, I have tried using only one of each by commenting out. Nothing works. If I use one the whole thing stops working. The ones that are most important are the cPanel ones. When a user logs in though webmail on cPanel they have to login again to round cube. Any ideas?
So the issue was simple. It was character encoding on TextEdit for my Mac that caused the issue. The above posted code was edited and is now correct and working.
Related
Ok, so this worked earlier today...
My Eclipse has turned on me. Earlier today, everything was fine. We had some networking issues, so I shut Eclipse down, waited for the all clear, and restarted.
Suddenly, Eclipse decided that almost ALL my source files had errors in them. Looks like it is suddenly working within namespaces. I get dozens and dozens of " cannot be resolved to a type" error in the source code.
So, I prepended the "\" character onto class names in one of the offending files, and things got better, but still things like Exception and PDO give the error. Even though I have modified the line like so:
throw new \Exception("Error - $acnt is not an account in the $source database");
We have a very big system, and because of these errors, I have dozens of checked out files that are giving me a commit error when I try to check them in, which is going to slow things down a tad. Any ideas:
1) why this suddenly started happening?
2) how I can "fix" this behavior?
thanks...
And as quietly and quickly as it appeared, it disappeared. I opened a new file, and suddenly, all the little red Xes disappear. Grrr... Eclipse.
When I create a new project I see the same warning. If I touch .buildpath in the root directory of the project and restart eclipse, then the warning goes away.
Rightclick project (or use Project/Properties), then go PHP/Source Paths/Build Path
Included probably says (All), Excluded probably says (None). Edit Included, and add the wildcard * for the project.
Solved all errors and warnings for me.
Have been using MAMP Pro for a fair while - version 3 primarily, upgraded to 4 a while ago.
I haven't had any unusual issues at all, but today the Apache service failed to start, telling me to check the error logs. The logs were blank unfortunately... I've made no system configuration changes, no changes to MAMP/MAMP Pro. Shut down my system yesterday, started today, it no longer works...
I've tried numerous suggestions found via Stack Overflow and Google without any success.
Even after completely uninstalling and re-installing MAMP Pro I am unable to get the service to start.
Nothing appears in the logs...
When starting it manually on the command line it comes up with a PHP related error:
$ Applications/MAMP/bin/apache2/bin/apachectl start
httpd: Syntax error on line 135 of /Applications/MAMP/conf/apache/httpd.conf: Cannot load /Applications/MAMP/bin/php/php5.2.17/modules/libphp5.so into server: dlopen(/Applications/MAMP/bin/php/php5.2.17/modules/libphp5.so, 10): image not found
The confusing thing is that I don't have PHP 5.2.17 specified anywhere, at all - according to MAMP Pro it should be using PHP 7.0.12.
If I add PHP 5.2.17 to MAMP using the appropriate MAMP Pro dialogs, Apache still fails to start via the MAMP Pro interface. I can now start it manually from the command line however, but none of my virtual hosts/etc seem to be loaded.
apachectl -V tells me it's using /Applications/MAMP/conf/apache/httpd.conf, but there is nothing in that file that has any reference to any of the configs generated in /Library/Application Support/appsolute/MAMP PRO/conf
It also looks like hosts entries aren't added to /etc/hosts.
Even if I tell /Applications/MAMP/conf/apache/httpd.conf to do nothing but include /Library/Application Support/appsolute/MAMP PRO/conf/httpd.conf (and manually add entries to /etc/hosts) it still doesn't seem to work at all...
I and my colleagues are at a complete loss, especially given it was working yesterday...
Has anyone had any issues like this?
I managed to fix the similar issue you had.
My Apache server was working fine and then following updating to 4.0.6 I experienced similar issues.
There were 2 things I did to fix the issue. I was getting the same error where it couldn't find a php file in 5.2.17. After fixing that by adding 5.2.17 to MAMP I experienced an apache error regarding user permissions.
(22)Invalid argument: getpwuid: couldn't determine user name from uid 4294967295, you probably need to modify the User directive
File > Edit Template > Revert ALL Templates to Default Settings.
Save & restarted the servers and all worked finally and all my hosts had retained as well.
I had previously entered a custom line in my httpd.conf file that for countless versions had copied across fine however it looks like the folder structure had changed and so couldn't locate it causing the unusual error about User permissions. I have since re-entered the custom line with the correct structure and all working fine again.
Hope this helps.
Oracle 7
Nginx
PHP5.5
I am currently getting only a blank page when trying to access phpMyAdmin instance. I've already took look at the page source and there is HTML content but for whatever reason, the page remains blank. Is this a bug? Has anyone experienced this particular issue like this before?
http://pastebin.com/bDQ2p52b
I was finally able to resolve this issue by:
a) Enabling $cfg['AllowThirdPartyFraming'] = true;
b) Remove the hide class from libraries/plugins/auth/AuthenticationCookie.class.php on line 171
Although I recieved a login form, however it didn't resolve the underlying issue, as certian objects on the page were inoperable. Digging into the source page; I discoververed that js/get_scripts.js.php output was being trancuated. I did some researched online and landed on https://serverfault.com/questions/269173/why-is-the-response-truncated-at-16k-with-php-fastcgi, checked my fastcgi_temp_path and noticed that the ownership was set improperly on /var/lib/nginx/tmp. This resolved all the issues I was having earlier.
99% of the time when I try to load the Manage section of Extension manager, Joomla dies, giving me this error:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\vanillajoomla\libraries\joomla\string\string.php on line 399
Here's the line that's causing it (it's in a routine that compares string with locale considered):
if (!$locale = setlocale(LC_COLLATE, $locale))
I've tried reinstalling several times, no dice. This is locally installed under Windows 7 with XAMPP for testing a module I'm developing. Googling the error reveals nothing, same for "php locale timeout."
Does anyone know what causes this, and how I can repair it?
I have the same problem, for now I've just commented the line out and it seems to be about 20 times faster with no problems found ;)
//if (!$locale = setlocale(LC_COLLATE, $locale))
{
$locale = $locale0;
}
Another problem with my joomla is it takes a long time to load just anything - front or backend and it's from fresh installation (!joomla 2.5). It's some wrong setting with either Apache or PHP or MySQL, just can't figure out what's wrong exactly. Every other site on my localhost works sweet except for joomla.
Here's my hack around it. The problem seems to be with my module, but I can't figure out how or why. Joomla seems to die when attempting to find the locale for my module. Since the function helps sort strings by locale, I just added return strcmp($str1, $str2); at the beginning of the function. It loses the locale functionality, but works now.
okey it is probably caused by some plugin or module.. but what is the worst, it is not enough to turn them off.. I installed 3 plugin for voting (to test which is the best of them), one of them caused this type of crash the manager.. I turned off them but it didnt help.. I use an advice above, and commented line 399, than suddenly it worked.. I uninstalled all of them, then uncommented line 399 and everything was allright..hope this can help somebody..
I'm trying to install SugarCRM version 5.5.1. on a webhost.
Everything goes nice until the step when the installation begins.
The output is this one:
Creating Sugar configuration file
(config.php)
Creating Sugar application tables,
audit tables and relationship metadata
.............
And never moves on!
I check the database and can see that there are tables missing. The install.log file doesnt have any errors, and the last line in the file is:
2010-04-27 22:17:03...creating
Relationship Meta for Bug
It seems the installation stopped here, but i cant get why! Iv searched in the foruns, etc, but cant get it...
Anyone had this issue? Any clues about whats happening?
Thanks a lot
maybe this is caused by php timeout, please change your php.ini
max_execution_time = 600 ; Maximum execution time of each script, in seconds
You could try and open source installer from: http://bitnami.org/