Having problems installing Drupal? See the Installation Guide for more information.

Temp and Files... what is appropriate?

I am trying to determine the best values for temp and files settings for multi-site systems.

TEMP:

Is this a temporary, writable folder? Shouldn't it therefore typically '/tmp' on *nix servers and
($_ENV['TMP']) ? $_ENV['TMP'] : $_ENV['TEMP'];
on Windows servers?

FILES:

On a multi-site system shouldn't this be a separate folder for each site to avoid conflicts like the custom logo for default templates?

Currently I am using the following code in config.php and I want to know if my understanding of these variables is correct.

The actual code I am using is:

<?php
// Calculate the part of the table or database name
// if you want to ignore or include different tld or host parts
// add or remove them in the section below
$db_dompart = preg_replace('/(_org$|_com$|_ca$|_net$|^dev_|^www_|^new_|-)/i',
'',
strtr(trim(strtolower($_SERVER['HTTP_HOST']),'/'),'./','__'));

/*
* Set the temp folder based on current environment
* assumes that if on Windows, TMP or TEMP will be set, if
* on *nix, session.save_path will be set to any non-standard tmp
* otherwise it defaults to /tmp
*/
if ($SETTINGS_AUTO_TEMP) {
$tmp='/tmp';
if(isset($_ENV["TMP"])) { $tmp=$_ENV["TMP"]); }
elseif(isset($_ENV["TEMP"])) { $tmp=$_ENV["TEMP"]); }
elseif(ini_get('session.save_path')) {
$tmp=ini_get('session.save_path');

TinyMCE installation errors.

I tried to install the tinyMCE WYSIWYG editor. I am using Tamarian's vbulletin integration.

I uploaded the folder to the modules area of the site. Then I went to phpMyAdmin and under my forum's database test_forums, I went to SQL > browse > and ran the tinymce.mysql file. It said the query was executed fine, so I activated the TinyMCE wysiwyg editor and I went to create content, but when I click to make a story or page I get this error.

Completly Blank Pages

I installed Drupel 4.6.3 and have followed the step by step instructions provided. My problem is, when I hit the URL to create the admin account all I get is a blank page with absolutly nothing on it. No error messages or anything. I am stumped.

I have checked the Drupel config file (settings.php) and it seems OK. I have rechecked the MySQL settings and permissions and everything seems correct.

Here is a quick look at the Drupel settings.php file for the items I have modified.

<$db_url = 'mysql://admin:stealth@localhost/bosco';>
<$db_prefix = '';>

What is cross site posting?

What is cross site posting? This is a setting in the webForm module, and I don't know what the implications are of enabling it. How can people post to a webForm from an external domain? What does that mean? Are there security issues here?

Thanks.

Trouble Trouble

This is The Error that i am getting Can Anyone Help me Feel Free to email me at Gmail Amckinn0724@gmail.com with suggesstions

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 42.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 43.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 44.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 45.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 46.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 47.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 48.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 49.

strict warning: var: Deprecated. Please use the public/private/protected modifiers in g:\wamp\www\Jshop\themes\engines\xtemplate\xtemplate.inc on line 50.

Wanting to install CVS, but choosing modules confusing...

Hi folks,

I'm wanting to install the latest CVS, but I think I've botched things up.

I thought that downloading the drupal-cvs and all the cvs versions of the modules would give me the latest versions of most things.

However, I'm finding that some modules in the CVS page may have been CVS at one time, but are not really applicable for a 4.7 sort of installation.

Can anybody give me some guidance here? I'm starting to think I should have:

1) Installed drupal-cvs.
2) Installed modules from 4.6.3
3) Got specific 4.7 modules from CVS page.

Pages

Subscribe with RSS Subscribe to RSS - Installing Drupal