Salve!! Sono Okrim, non so se vi ricordate di me! Avrei due problemi:
1) E' possibile bloccare momentaneamente le registrazioni?
2) E' possibile, quando si scrivono gli articoli, inserire un <pagebreak> se sono molto lunghi??
La versione che ho è 7.6
Grazie mille!
Ho poi scaricato un modulo per recensioni. Quando creo una categoria mi dice che mancano dei file nel mysql. Nella cartella che ho scaricato ci sono due file:
MReviews-sql.txt
MReview-sql.php
Nessuno dei due riesco a caricare nel db ma ecco ciò che dice MReview-sql.php:
mysql_query("CREATE TABLE ".$prefix."_MReviews (date date NOT NULL default '0000-00-00', rid int(10) NOT NULL auto_increment, cid int(10) NOT NULL default '1', scid int(10) NOT NULL default '0', author varchar(20) NOT NULL default '', author_email varchar(60) NOT NULL default '', pagename text, content text, cover varchar(100) NOT NULL default '', r_link varchar(100) NOT NULL default '', r_link_title varchar(50) NOT NULL default '', score int(10) NOT NULL default '0', counter int(10) NOT NULL default '1', PRIMARY KEY (rid))");
mysql_query("CREATE TABLE ".$prefix."_MReviews_cats (cid int(10) NOT NULL auto_increment, title varchar(255) NOT NULL default '', description text NOT NULL, image varchar(100) NOT NULL default 'images/admin/MReviews.gif', PRIMARY KEY (cid), KEY cid (cid))");
mysql_query("CREATE TABLE ".$prefix."_MReviews_sub_cats (scid int(10) NOT NULL auto_increment, sub_title varchar(255) NOT NULL default '', sub_description text NOT NULL', PRIMARY KEY (scid), KEY scid (scid))");
mysql_query("INSERT INTO ".$prefix."_MReviews_cats VALUES (1, 'Miscellaneous', 'Reviews Which can not be added in any of the available categories shall go here.', 'images/admin/MReviews.gif')");
mysql_query("CREATE TABLE ".$prefix."_MReviews_comments (com_id int(10) NOT NULL auto_increment, rid int(10) NOT NULL default '0', userid varchar(25) NOT NULL default '', date datetime default NULL, comments text, score int(10) NOT NULL default '0', PRIMARY KEY (com_id))");
mysql_query("CREATE TABLE ".$prefix."_MReviews_pend (date date NOT NULL default '0000-00-00', rid int(10) NOT NULL auto_increment, cid int(10) NOT NULL default '1', author varchar(20) NOT NULL default '', author_email varchar(60) NOT NULL default '', pagename text NOT NULL, cover varchar(100) NOT NULL default '', r_link varchar(100) NOT NULL default '', r_link_title varchar(50) NOT NULL default '', score int(10) NOT NULL default '0', content text NOT NULL, PRIMARY KEY (rid))");
include("header.php");
echo "<center><br><br><br>Hopefully all the MReviews tables were created successfully.<br>: )<br>... SadSalman</center>";
include("footer.php");
?>
Salve!! Sono Okrim, non so se vi ricordate di me! Avrei due problemi:
Ciao Okrim, a dire il vero di problemi io ne leggo 3 sullo stesso topic cmq per questa volta chiudo un occhio
Citazione:
1) E' possibile bloccare momentaneamente le registrazioni?
Apri il file modules/Your_Account/index.php
cerca e commenta nella funzione new_user()
Codice:
echo "<form action=\"modules.php?name=$module_name\" method=\"post\">\n"
."<b>"._REGNEWUSER."</b> ("._ALLREQUIRED.")<br><br>\n"
."<table cellpadding=\"0\" cellspacing=\"10\" border=\"0\">\n"
."<tr><td>"._NICKNAME.":</td><td><input type=\"text\" name=\"username\" size=\"30\" maxlength=\"2\"></td></tr>\n"
."<tr><td>"._EMAIL.":</td><td><input type=\"text\" name=\"user_email\" size=\"30\" maxlength=\"255\"></td></tr>\n"
."<tr><td>"._PASSWORD.":</td><td><input type=\"password\" name=\"user_password\" size=\"11\" maxlength=\"40\"></td></tr>\n"
."<tr><td>"._RETYPEPASSWORD.":</td><td><input type=\"password\" name=\"user_password2\" size=\"11\" maxlength=\"40\"><br><font class=\"tiny\">("._BLANKFORAUTO.")</font></td></tr>\n";
if (extension_loaded("gd") AND ($gfx_chk == 3 OR $gfx_chk == 4 OR $gfx_chk == 6 OR $gfx_chk == 7)) {
echo "<tr><td>"._SECURITYCODE.":</td><td><img src='?gfx=gfx&random_num=$random_num' border='1' alt='"._SECURITYCODE."' title='"._SECURITYCODE."'></td></tr>\n"
."<tr><td>"._TYPESECCODE.":</td><td><input type=\"text\" NAME=\"gfx_check\" SIZE=\"7\" MAXLENGTH=\"6\"></td></tr>\n"
."<input type=\"hidden\" name=\"random_num\" value=\"$random_num\">\n";
}
echo "<tr><td colspan='2'>\n"
."<input type=\"hidden\" name=\"op\" value=\"new user\">\n"
."<input type=\"submit\" value=\""._NEWUSER."\">\n"
."</td></tr></table>\n"
."</form>\n"
."<br>\n"
.""._YOUWILLRECEIVE."<br><br>\n"
.""._COOKIEWARNING."<br>\n"
.""._ASREGUSER."<br>\n"
."<ul>\n"
."<li>"._ASREG1."\n"
."<li>"._ASREG2."\n"
."<li>"._ASREG3."\n"
."<li>"._ASREG4."\n"
."<li>"._ASREG5."\n";
$handle=opendir('themes');
$thmcount = 0;
while ($file = readdir($handle)) {
if ((!ereg("[.]",$file) AND file_exists("themes/$file/theme.php"))) {
$thmcount++;
}
}
closedir($handle);
if ($thmcount > 1) {
echo "<li>"._ASREG6."\n";
}
$sql = "SELECT custom_title FROM ".$prefix."_modules WHERE active='1' AND view='1' AND inmenu='1'";
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result)) {
$custom_title = stripslashes(check_html($row[custom_title], "nohtml"));
if (!empty($custom_title)) {
echo "<li>"._ACCESSTO." $custom_title\n";
}
}
$sql = "SELECT title FROM ".$prefix."_blocks WHERE active='1' AND view='1'";
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result)) {
$b_title = stripslashes(check_html($row['title'], "nohtml"));
if (!empty($b_title)) {
echo "<li>"._ACCESSTO." $b_title\n";
}
}
if (is_active("Journal")) {
echo "<li>"._CREATEJOURNAL."\n";
}
if ($my_headlines == 1) {
echo "<li>"._READHEADLINES."\n";
}
echo "<li>"._ASREG7."\n"
."</ul>\n"
.""._REGISTERNOW."<br>\n"
.""._WEDONTGIVE."<br><br>\n"
."<center><font class=\"content\">[ <a href=\"modules.php?name=$module_name\">"._USERLOGIN."</a> | <a href=\"modules.php?name=$module_name&op=pass_lost\">"._PASSWORDLOST."</a> ]</font></center>\n";
Subito sotto aggiungi
Codice:
echo"<center>Al momento non è possibile registrarsi</center>";
Citazione:
2) E' possibile, quando si scrivono gli articoli, inserire un <pagebreak> se sono molto lunghi??
Con un pò di tempo si può fare tutto, non so come sei messo con il php ma se non vuoi perdere troppo tempo proverei a cercare un modulo già pronto, al momento non saprei cosa consigliarti.
Citazione:
Ho poi scaricato un modulo per recensioni. Quando creo una categoria mi dice che mancano dei file nel mysql. Nella cartella che ho scaricato ci sono due file:
MReviews-sql.txt
MReview-sql.php
Non ho mai provato quel modulo ma così a occhio il file MReviews-sql.txt va caricato in phpmyadmin mentre il secondo va eseguito da browser, entrambi fanno la stessa cosa quindi ne devi usare solo uno.
Se hai bisogno di altro sul primo problema continua pure qui mentre per gli altri due ti pregherei di aprire un'altro topic (uno per argomento) altrimenti si fa confusione.
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login
Inviato:
Ven Lug 20, 2007 11:54 pm
Okrim Senior 1°Level
Registrato: Jun 02, 2006 Messaggi: 148
Oggetto:
Sniff...sei un mito *________*!! Grazie millleeeeeee!! Scusa..la prossima volta posterò un topic per ogni argomento ^___^
Alla prossima!
Non puoi inserire nuovi Topic in questo forum Non puoi rispondere ai Topic in questo forum Non puoi modificare i tuoi messaggi in questo forum Non puoi cancellare i tuoi messaggi in questo forum Non puoi votare nei sondaggi in questo forum