Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - senloel

Pages: 1 ... 4 5 6 7 [8] 9 10 11 12 ... 14
106
das was du da gepostet hast ist in action = uploadimage  nicht uploadform.

Stimmt, hast recht, ist = upoladimage . Aber bei = uploadform klappts auch nicht.

Quote
Abgesehen davon betrifft deine gewünschte Änderung wieder einmal die halbe Galerie.  so wie der Mod Archiv :)

Ich habe mir da schon eine Lösung überlegt, damit man nicht alles in der Galerie ändern muss.
Das neue User-Field wird beim Hochladen in einem input-Feld mittels value="" übergeben, also als additional image field in die DB gespeichert. Dieses hat folglich den selben Inhalt wie das additional user field.
Dann kann ich nämlich überall das eigentliche additional user field einfacher ausgeben lassen, ohne alles ändern zu müssen.

Letztendlich klappt also alles, wenn in der uploadform nun das additional user field angezeigt wird.
Deshalb wäre es super, wenn das funktioniert ;)

Was meinst du mit "Mod Archiv"?

107
Das Problem ist, dass z.B. beim Random Image kein
$additional_sql "";
if (!empty(
$additional_image_fields)) {
  foreach (
$additional_image_fields as $key => $val) {
    
$additional_sql .= ", i.".$key;
  }
}


steht, sondern nur eine SQL-Abfrage.
Wie fügt man da dann die additional image fields ein?

In der member.php im Bereich
if ($action == "uploadform") {

steht:

  
if (!empty($additional_image_fields)) {
    foreach (
$additional_image_fields as $key => $val) {
      if (isset(
$HTTP_POST_VARS[$key]) && intval($val[2]) == && trim($HTTP_POST_VARS[$key]) == "") {
        
$error 1;
        
$field_error preg_replace("/".$site_template->start."field_name".$site_template->end."/siU"str_replace(":"""$val[0]), $lang['field_required']);
        
$msg .= (($msg != "") ? "<br >" "").$field_error;
      }
    }
  }


Füge ich darunter das hier ein
if (isset($additional_user_fields) && is_array($additional_user_fields) && !empty($additional_user_fields)) {
   foreach (
$additional_user_fields as $key => $val) {
      
$additional_sql .= ", u." $key;
   }
}


klappts leider nicht.


Könntest du mir da nochmal helfen?

Danke und Grüße,
Patrick





108
Klappt ;)

Vielen Dank!

EDIT: Komisch, in der Uploadform werden die additional user fields nicht angezeigt, obwohl sie im Profil eines Users angezeigt werden und das alles ja in der gleichen Datei (members.php) liegt.
Muss man da evtl. im Abschnitt
if ($action == "uploadform") {

noch was einfügen, damit die additional user fields angezeigt werden?

EDIT 2: In ganz vielen Teilen werden die additional user fields nicht angezeigt, z.B. beim Random Image. Das sieht nach größerem Aufwand aus, oder?

109
Hey,

I've installed this MOD: http://www.4homepages.de/forum/index.php?topic=19297.0 few hours ago and it works perfect.

But where do I have to edit something to show the additional user fields also in the thumbnail templates (thumbnail_bit.html etc. )?

Thanks for your help and Regards,
Patrick

110
Hat sich erledigt, das Problem lag am unsauberen Einbau eines MODs in der register.php .


111
Könnte evtl. jemand diesen MOD einbauen?

Bei mir klappts grad net, aber vllt. liegts an mir ;)

112
Some more information:

The activation link is correct, after clicking it the message "Your account has been activated successfully. Please log-in" appears.
Der Aktivierungslink funktioniert, wenn man ihn klickt erscheint die Meldung, dass der Account erfolgreich aktiviert wurde und man sich jetzt einloggen kann.

But then - it doesn't work. When trying to log-in the message "Invalid Username / Password" appears.
Aber dann funktioniert es nicht - man kann sich nicht einloggen, denn es kommt immer die Meldung, dass man einen falschen Usernamen bzw. falsches Passwort eingegeben hat.


I really hope that somebody can help me!

Thank you and Regards,
Patrick

113
Hey,

I have a little problem:
Ich habe ein kleines Problem:

When Users register in our website, they have to cklick a link in the registration email to activate their account.
Wenn sich User registrieren in unserer Website, müssen diese einen Link in der Activation-Mail klicken damit der Account aktiv wird.

But after activating they still can't log-in.
Aber nach dem Aktivieren können sie sich immernoch nicht einloggen.

If I edit their password for example, they can log-in.
Wenn ich jedoch deren Passwort ändere z.B., können sie sich plötzlich einloggen.

Can somebody help me please?
Kann mir vielleicht jemand helfen?

Thank you and Regards,
Patrick

114
Tutorials / [TUT] Add a url-variable like {url_yourlink}
« on: September 16, 2013, 06:52:38 PM »
Hey,

as you maybe know, you can add different types of variables in your template files.
One type are the url-Variables.

If you want to add a link to different sites, it's useful to write a variable instead of the whole link.
It's much easier to edit this link, if something has changed. You only have to change the link in one file instead in every template file where you added the link.

This MOD will show you how to add this Variable.

Step 1  :arrow: Open the template files where you want to add a link.

Step 2  :arrow: Add the following anywhere to show the link:

<a href="{url_yourlink}">Yourlink-text</a>

Step 3.1  :arrow: Open includes/page_header.php and search:

  "url_new_images" => $site_sess->url(ROOT_PATH."search.php?search_new_images=1"),

add below:

  "url_yourlink" => $site_sess->url(ROOT_PATH."yourlink-url"),

  Step 3.2  :arrow: How to add the link url:
If you want to link to a file which is in your 4images directory:

Use   "url_yourlink" => $site_sess->url(ROOT_PATH."yourlink-url"),
 
for example:

  "url_yourlink" => $site_sess->url(ROOT_PATH."search.php"),

or with subfolders:

  "url_yourlink" => $site_sess->url(ROOT_PATH."admin/index.php"),


That was it already ;)

Regards,
Patrick

115
Discussion & Troubleshooting / Re: Remove Category Menu
« on: September 13, 2013, 05:05:58 PM »
I cannot get the menu I made and placed where the old category list was to center it goes to the left.

I really don't get your question...

You want any menu to be in the center of your page?
If so, use align="center" in a <table>- or <td>-Tag

116
Discussion & Troubleshooting / Re: Remove Category Menu
« on: September 13, 2013, 02:44:22 PM »
So, you don't need help with removing the category menu but with...?

And for all others:

Step 1  :arrow: Find everything between {if categories} and {endif categories} in your home.html (template folder)
                  
{if categories}
---
everything which stands here---
{endif 
categories}


Step 2 :arrow: delete it.

117
Hey,

this is just a little Tutorial (MOD) which explains how to add a new table in your frontpage.
It will look like the who's online-table and you can fill it with your content.


Let's start.
Please make a backup first!

Step 1 :arrow: open home.html in your template folder (your-website/templates/your-template/home.html)

Step 2 :arrow: add this whereever you want:


                 
<table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <
tr>
                      <
td class="head1">
                        <
table width="100%" border="0" cellspacing="0" cellpadding="4">
                          <
tr>
                            <
td class="head1" valign="top">{lang_your_headline}</td>
                          </
tr>
                        </
table>
                      </
td>
                    </
tr>
                    <
tr>
                      <
td class="head1">
                       
yourcontent
                      
</td>
                    </
tr>
                  </
table><br>


Step 3 :arrow: replace yourcontent with a text, image or whatever ;)

Step 4 :arrow: open main.php in your language folder (your-website/lang/your-language/main.php)

Step 5 :arrow: find
?>

and add this above:

$lang['your_headline'] = "Name of your headline";

To change the name of the headline, replace Name of your headline with your text.


Examples:
If you want to add the new table below the categories section:

Example Step 6 :arrow: find

                            
<td class="row2" valign="top">{categories}</td>
                          </
tr>
                         </
table>
                        </
td>
                      </
tr>
                    </
table>


and add the same as explained in Step 2 below.

That's it!


Regards,
Patrick


118
Puhhh, ist gar net so einfach wie ich dachte.

Hab nicht alles durchgedacht --> man muss die neue Variable doch bestimmt noch iwo in den SQL-Abfragen usw. einfügen...

Das wird schwierig.

119
Discussion & Troubleshooting / Re: Adding A Link
« on: September 06, 2013, 07:33:19 PM »
Yes it did and TY!

No problem ;)

@ Admins
Can somebody move my MOD into "MOD - Releases and Support"?

120
Klasse MOD, erleichert das Suchen nach Bildern eheblich!

Danke Andi!

Kann man auch weitere Image Fields nehmen, aus denen die keywords gezogen werden sollen?

Schritte 1 und 2 kann man ja einfach um ein weiteres Feld erweitern, Schritt 3 muss man nichts machen denke ich aber in Schritt 4 dann:
Einfach unter

  if($config['image_use_image_name'] && empty($image_keywords)){
      
$keywords_name $image_name;
  }


nochmal das gleiche setzen (nur mit anderem Feld)?

  if($config['image_use_image_name'] && empty($image_keywords)){
      
$keywords_name $image_anotherfield;
  }


Bin mir nicht sicher ob das klappt.

Danke für deine Hilfe!

Grüße,
Patrick

Pages: 1 ... 4 5 6 7 [8] 9 10 11 12 ... 14