zro@redtv Posted November 17, 2004 Posted November 17, 2004 I am exploring the functionality of a few different CMS's right now. trying to get dadaIMC to work. I believe that i have everything almost set, but i keep getting Internal Server Error, due to misconfiguration, I assume. I believe this to be the problem. a line in a .htacces file used in the conf. >php_value include_path .:/usr/share/php I assume the problem is that the value there is incorrect. ...any ideas? thanks so much. TCH-rules! Quote
borfast Posted November 17, 2004 Posted November 17, 2004 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. 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. Quote
zro@redtv Posted November 23, 2004 Author Posted November 23, 2004 Hmmmm... what about this? readme says php must b compiled w/ >./configure --with-config-file-path=/usr/local --with-mysql (*) --with-gettext (*) --with-gd (*) --with-jpeg-dir (*) --with-png-dir (*) --with-curl (*) --enable-ftp (*) --enable-trans-sid (*) --with-tiff-dir --with-ttf --enable-bcmath --enable-inline-optimization --enable-sysvsem --enable-sysvshm --enable-shared-pdflib --with-zlib --with-regex=system --enable-sockets --with-apxs=/usr/sbin/apxs and echo(phpinfo()) says >'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-dom' '--with-dom-xslt' '--with-dom-exslt' '--enable-exif' '--enable-ftp' '--with-gd' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr' '--with-xpm-dir=/usr/X11R6' '--with-gettext' '--with-imap' '--with-imap-ssl' '--with-kerberos' '--with-mcrypt' '--with-mhash' '--enable-magic-quotes' '--with-mysql=/usr' '--with-openssl' '--enable-discard-path' '--with-pear' '--enable-xslt' '--with-xslt-sablot' '--enable-sockets' '--enable-track-vars' '--with-ttf' '--with-freetype-dir=/usr' '--enable-gd-native-ttf' '--enable-versioning' '--enable-wddx' '--with-zlib' I think theres a few short? --enable-trans-sid (*) ? is this my problem? Quote
borfast Posted January 28, 2005 Posted January 28, 2005 Seems I missed your post... sorry I suppose you don't need help with this anymore, since it's been such a long time but here's my answer, anyway: 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. If you need the trans_sid configuration directive turned on, you can put this in .htaccess: php_flag session.use_trans_sid on or call ini_set in your PHP script: ini_set("session.use_trans_sid", "1"); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.