Jump to content

3.0.3 - the most general-options are gone!


Guest

Recommended Posts

Hi,

Today I installed the newst update to 3.0.3.

And after this the desicriptions of th generall-options-site are gone away.

Only the lines:

SMTP Host:

SMTP Port:

Use Authentication?

SMTP Username:

SMTP Password:

are there. What went wrong ?

This is only in german-language!

Bild2.jpg

Link to comment
Share on other sites

Guest estelle

Check if you have these lines in your german lang file:

//////////////////////////////////////////

// START: Added in 3.0.3

//////////////////



'smtpHost' => "SMTP Host:",



'defaultHost' => "(Default: localhost)",



'smtpPort' => "SMTP Port:",



'defaultPort' => "(Default: 25)",



'smtpAuth' => "Use Authentication?",



'defaultAuth' => "(Default: No)",



'smtpUsername' => "SMTP Username:",



'smtpPassword' => "SMTP Password:",



//////////////////////////////////////////

// END: Added in 3.0.3

//////////////////

If you do not have these lines in your german lang file, you will need to add these lines, along with many other lines which were added in 3.0.3. I would recommend that you closely compare your german lang file with the 3.0.3 german lang file and make sure there aren't any other parts missing.

Link to comment
Share on other sites

Guest estelle

I apologise Marco.... I didn't read your post closely enough, and I misunderstood the problem that you were having.

Yes, there is definitely a problem with the 3.0.3 German lang file.

To fix, open language/de/lang.inc.php. Right near the bottom of the file, remove the sections as shown in red below:

'action' => "Action",

'no_site_cats' => "This category name nas not been translated yet.",

);

$lang['admin']['settings'] = array (

//////////////////////////////////////////

// START: Added in 3.0.3

//////////////////

'smtpHost' => "SMTP Host:",

'defaultHost' => "(Default: localhost)",

'smtpPort' => "SMTP Port:",

'defaultPort' => "(Default: 25)",

'smtpAuth' => "Use Authentication?",

'defaultAuth' => "(Default: No)",

'smtpUsername' => "SMTP Username:",

'smtpPassword' => "SMTP Password:",

//////////////////////////////////////////

// END: Added in 3.0.3

//////////////////

'smtpHost' => "SMTP Host:",

'defaultHost' => "(Default: localhost)",

'smtpPort' => "SMTP Port:",

'defaultPort' => "(Default: 25)",

'smtpAuth' => "Use Authentication?",

'defaultAuth' => "(Default: No)",

'smtpUsername' => "SMTP Username:",

'smtpPassword' => "SMTP Password:",

);

// now we need to include the config file

include("config.inc.php");

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...