Showing posts with label Joomla. Show all posts
Showing posts with label Joomla. Show all posts

Wednesday, February 23, 2011

php crash when 2 clients at same time ?

Having an issue that is specific to PHP compiled with PGSQL support
with versions noted in subject line. I understand that there are many
variables to consider here but believe I have narrowed down the Apache
Client Cert failures to my PHP/PGSQL build.

1. Apache PHP without PGSQL works as expected using client certificates

2. Apache PHP with PGSQL works fine with standard SSL connections

3 Apache PHP with PGSQL fails with client certificates - no output

other than Segmentation faults in the apache error logs as follows:

[Wed Nov 30 23:26:57 2005] [notice] suEXEC mechanism enabled (wrapper:
/usr/sbin/suexec2)....

I also performed same tests on another instance of Apache/PHP/PGSQL
which was version 2.0.54 of apache and PHP/PGSQL versions same as
subject line with same exact results.

Any ideas as to the source of this problem and suggestions for
tests/fixes are greatly appreciated. There are no errors in any of the
logs other than what I have included so it's very difficult to see what
is wrong. All I know for sure is that I am able to reproduce the
results on more than one machine.

Tuesday, February 22, 2011

How to Replacing the Joomla! logo

  • Create your own logo and upload it to the rhuk_milkyway/images folder. You want it to be 298x75 pixels in size. Depending on the background of your site, consider making the logo with transparent background, and saving it in a file format (say, png) that supports it.
You do not have to place your image in the rhuk_milkyway/images folder; it just makes it easier when you tell joomla where to look for your logo.
  • In administration, go to Extensions > Template Manager
  • Click on rhuk_milkyway, you will access the Template edit page
  • Click on Edit CSS
  • Select template.css and click edit
  • look for the div#logo style. It should look something like this:
div#logo {
        position: absolute;
        left: 0;
        top: 0;
        float: left;
        width: 298px;
        height: 75px;
        background: url(../images/mv_joomla_logo.png) 0 0 no-repeat;
        margin-left: 30px;
        margin-top: 25px;
}
The line you are interested is the one beginning with background. Change the path of the image to the image you have uploaded. If you put your image in the rhuk_milkyway/images folder, all you would have to do is replace mv_joomla_logo.png with you logo filename.
  • Click on Save