Author Topic: Emaiddress in Controlcenter  (Read 7285 times)

0 Members and 1 Guest are viewing this topic.

skiemor

  • Guest
Emaiddress in Controlcenter
« on: December 23, 2007, 01:22:16 PM »
is shown outside the field  (in field is: "<a href=") outside: email@adresse.de" class="input" />
I have made so much changes in last time, I'm confused and don't know, which file I have to check/change.
Perhaps anybody can helps me?

Best Chris.

Offline Acidgod

  • Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: Emaiddress in Controlcenter
« Reply #1 on: December 23, 2007, 01:28:45 PM »
Mach mal bitte ein Screenshot... (o:

skiemor

  • Guest
Re: Emailaddress in Controlcenter
« Reply #2 on: December 23, 2007, 01:34:14 PM »
Ok, ist im Anhang. ;-)

Offline thunderstrike

  • 4images Guru
  • *******
  • Posts: 2.327
    • View Profile
Re: Emaiddress in Controlcenter
« Reply #3 on: December 23, 2007, 01:35:39 PM »
In admin/users.php file. ;)

This line:

Code: [Select]
show_input_row($lang['field_email'], "user_email", $user_row['user_email'], $textinput_size);

and / or:

Code: [Select]
show_input_row($lang['field_email_contains'], "user_email", "", $textinput_size);
8 steps need when ask question -

- PHP version (ACP - > phpinfo())
- mySQL version (ACP - > phpinfo())
- 4images version
- Post screenshot / URL
- Post code in BB Code (no need full file for code) or post attach file
- It doesn't work. What is say - what is do for no work
- Install MOD ? If so - please say (troubleshooting)
- Read FAQ ? Install Bug fixes ?

Offline Acidgod

  • Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: Emaiddress in Controlcenter
« Reply #4 on: December 23, 2007, 01:47:23 PM »
Hast Du nur Templeates bearbeitet oder auch php Files?

Offline thunderstrike

  • 4images Guru
  • *******
  • Posts: 2.327
    • View Profile
Re: Emaiddress in Controlcenter
« Reply #5 on: December 23, 2007, 01:50:41 PM »
If is in templates - templates/your_template/member_editprofile.html file.

Code: [Select]
<tr>
            <td class="row1"><b>{lang_email}</b></td>
            <td class="row1"><input type="text" name="user_email"  size="30" value="{user_email}" class="input" /></td>
          </tr>
          <tr>
            <td class="row2"><b>{lang_email_confirm}</b></td>
            <td class="row2"><input type="text" name="user_email2"  size="30" value="{user_email2}" class="input" /></td>
          </tr>

For user email and confirm user email.
8 steps need when ask question -

- PHP version (ACP - > phpinfo())
- mySQL version (ACP - > phpinfo())
- 4images version
- Post screenshot / URL
- Post code in BB Code (no need full file for code) or post attach file
- It doesn't work. What is say - what is do for no work
- Install MOD ? If so - please say (troubleshooting)
- Read FAQ ? Install Bug fixes ?

skiemor

  • Guest
Re: Emaiddress in Controlcenter
« Reply #6 on: December 23, 2007, 01:52:50 PM »
Ich habe den PM-Mod installiert, inzwischen haben ich die includes/page_header.php und die functions.php
zurückgesichert. Die Adressen stehen nun wieder richtig drin. Ich hatte auch diverse Fehlermeldung von der Datenbank:

Notice: Undefined variable: pm_popup_header in /homepages/26/d83193504/htdocs/birdgallery/includes/page_header.php on line 203

Notice: Use of undefined constant BBCODE - assumed 'BBCODE' in /homepages/26/d83193504/htdocs/birdgallery/includes/page_header.php on line 204

Notice: Undefined index: wrote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1873

Notice: Undefined index: quote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1874

Notice: Undefined index: wrote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1873

Notice: Undefined index: quote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1874

Notice: Undefined index: wrote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1873

Ich hoffe, ich hab' mir nicht alles zerschossen. Die PM hatten schon funktioniert. Nun muss ich sehen, wie's weitergeht mit den o.g. beiden Dateien

skiemor

  • Guest
Re: Emaiddress in Controlcenter
« Reply #7 on: December 23, 2007, 02:10:01 PM »
Step 6 in PMv2 is
in functions.php
just comment entire function by doing this:
Add before that line:
Code:

/*

and at the end of the function find (in default 4images it would be):
Code:
...
  return replace_badwords($text);
}

add after that closing bracket } add this:
Code:

*/

But my end is:

  $text = replace_badwords($text);
  } xxxx

  $text = str_replace("\\'", "'", $text);

  return $text;
}xxxxxxxx


I get mistakes, when I set */ after xxxx and after xxxxxxx

Offline thunderstrike

  • 4images Guru
  • *******
  • Posts: 2.327
    • View Profile
Re: Emaiddress in Controlcenter
« Reply #8 on: December 23, 2007, 02:11:32 PM »
If have problem with PM MOD, please post in right topic.

http://www.4homepages.de/forum/index.php?topic=6692.0
8 steps need when ask question -

- PHP version (ACP - > phpinfo())
- mySQL version (ACP - > phpinfo())
- 4images version
- Post screenshot / URL
- Post code in BB Code (no need full file for code) or post attach file
- It doesn't work. What is say - what is do for no work
- Install MOD ? If so - please say (troubleshooting)
- Read FAQ ? Install Bug fixes ?

Offline Acidgod

  • Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: Emaiddress in Controlcenter
« Reply #9 on: December 23, 2007, 02:14:40 PM »
Ich hatte auch diverse Fehlermeldung von der Datenbank:

Notice: Undefined variable: pm_popup_header in /homepages/26/d83193504/htdocs/birdgallery/includes/page_header.php on line 203
Notice: Use of undefined constant BBCODE - assumed 'BBCODE' in /homepages/26/d83193504/htdocs/birdgallery/includes/page_header.php on line 204
Notice: Undefined index: wrote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1873
Notice: Undefined index: quote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1874
Notice: Undefined index: wrote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1873
Notice: Undefined index: quote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1874
Notice: Undefined index: wrote in /homepages/26/d83193504/htdocs/birdgallery/includes/functions.php on line 1873

Das sind keine Datenbank Fehler...
V@no hat es etwas unsauber programmiert und daher kommen die Fehler...
Und diese hätte man relativ einfach weg bekommen...

Und Thunderstrike hat recht, keine neuen Themen für Probleme beim Mod einbau öffnen...

skiemor

  • Guest
Re: Emaiddress in Controlcenter
« Reply #10 on: December 23, 2007, 02:19:56 PM »
ok, kann dann gelöscht werden, aber eine Frage bitte noch:

Fatal error: Call to undefined function: get_smiles_text() in /homepages/26/d83193504/htdocs/birdgallery/pm.php on line 427


Line 427 is:  "smiles_text" => get_smiles_text(),

hängt mit der Änderung in functions.php Step 6 zusammen, oder?