Dadaimc Config

liunx

Guest
I am exploring the functionality of a few different CMS's right now.<br />trying to get dadaIMC to work.<br /><br />I believe that i have everything almost set, but i keep getting<br />Internal Server Error, <br />due to misconfiguration, I assume.<br /><br />I believe this to be the problem.<br />a line in a .htacces file used in the conf.<br /><br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->php_value include_path .:/usr/share/php<!--c2--></div><!--ec2--><br /><br /><br />I assume the problem is that the value there is incorrect. <br />...any ideas?<br /><br /><br />thanks so much.<br />TCH-rules!<!--content-->
Even if that value is incorrect, the server should not complain, so I'm guessing it's something else. But try removing that line from .htaccess and see if it still complains about it.<br /><br />By the way, I'm not sure if that's the correct path you should be using. But if you just want to use the default PHP includes, then you don't need to put them in .htaccess at all, since they are already configured server-wide.<!--content-->
Hmmmm...<br />what about this?<br /><br />readme says php must b compiled w/<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->./configure <br />--with-config-file-path=/usr/local <br />--with-mysql (*)<br />--with-gettext (*)<br />--with-gd (*)<br />--with-jpeg-dir (*)<br />--with-png-dir (*)<br />--with-curl (*)<br />--enable-ftp (*)<br />--enable-trans-sid (*)<br />--with-tiff-dir <br />--with-ttf <br />--enable-bcmath <br />--enable-inline-optimization <br />--enable-sysvsem <br />--enable-sysvshm <br />--enable-shared-pdflib <br />--with-zlib <br />--with-regex=system <br />--enable-sockets <br />--with-apxs=/usr/sbin/apxs<!--c2--></div><!--ec2--><br /><br /><br /><br />and echo(phpinfo()) says<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->'./configure' <br />'--with-apxs=/usr/local/apache/bin/apxs'<br /> '--with-xml' <br />'--enable-bcmath' <br />'--enable-calendar' <br />'--with-curl' <br />'--with-dom'<br /> '--with-dom-xslt' <br />'--with-dom-exslt'<br /> '--enable-exif'<br /> '--enable-ftp' <br />'--with-gd' <br />'--with-jpeg-dir=/usr/local' <br />'--with-png-dir=/usr' <br />'--with-xpm-dir=/usr/X11R6' <br />'--with-gettext' <br />'--with-imap' <br />'--with-imap-ssl'<br /> '--with-kerberos' <br />'--with-mcrypt'<br /> '--with-mhash'<br /> '--enable-magic-quotes'<br /> '--with-mysql=/usr'<br /> '--with-openssl'<br /> '--enable-discard-path'<br /> '--with-pear' <br />'--enable-xslt' <br />'--with-xslt-sablot'<br /> '--enable-sockets'<br /> '--enable-track-vars'<br /> '--with-ttf'<br /> '--with-freetype-dir=/usr' <br />'--enable-gd-native-ttf' <br />'--enable-versioning' <br />'--enable-wddx' <br />'--with-zlib'<!--c2--></div><!--ec2--><br /><br /><br />I think theres a few short?<br />--enable-trans-sid (*)<br />?<br /><br />is this my problem?<!--content-->
<img src="http://www.totalchoicehosting.com/forums/style_emoticons/default/oops.gif" style="vertical-align:middle" emoid=":oops:" border="0" alt="oops.gif" /> Seems I missed your post... sorry <img src="http://www.totalchoicehosting.com/forums/style_emoticons/default/sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /><br /><br />I suppose you don't need help with this anymore, since it's been such a long time but here's my answer, anyway:<br /><br />no, the fact that --enable-trans-sid is not enabled on the configuration is not a reason for the server to spit out an "Internal Server Error" message.<br />If you need the trans_sid configuration directive turned on, you can put this in .htaccess:<br />php_flag session.use_trans_sid on<br /><br />or call ini_set in your PHP script:<br />ini_set("session.use_trans_sid", "1");<!--content-->
 
Back
Top