Quote:
Originally Posted by Lotos
Next problems make this mod not suitable for large site libraries:
1) Can anyone solve at last (years are past) the problem of 27 symbol limitation in the file names in this mod?
|
I solved this problem with length of a line (made it 200):
Code:
$db->query_write("CREATE TABLE IF NOT EXISTS ". TABLE_PREFIX ."dl2_files (
id int(10) unsigned NOT NULL auto_increment,
title varchar(200) NOT NULL default '',
but I couldn't find a place to change the length of categories name.
Tried here
Code:
$db->query_write("CREATE TABLE IF NOT EXISTS ". TABLE_PREFIX ."dl2_categories (
id int(10) unsigned NOT NULL auto_increment,
name varchar(200) NOT NULL default '',
but didn't work