Ondersteuning Drupal site (4.6/Postgres) gevraagd non-profit/fondswerving

We hebben in het verleden in Drupal een site laten ontwikkelen (zie www.fondswervingonline.nl).
Fondswervingonline.nl is een not for profit initiatief om non-profit instellingen te helpen bij het werven van subsidies, fondsen en sponsors.

Momenteel draait deze op Drupal 4.6 en Postgress op een eigen server met redelijk veel maatwerk en modules.

De programmeur die dit ruim een jaar geleden heeft gemaakt heeft een andere baan gekregen en is niet meer beschikbaar, terwijl we wel tegen veel fouten aanlopen en redelijk veel willen laten aanpassen.

Onze vragen zijn:
-Heeft u tijd en interesse om ons te helpen met aanpassen en installeren van modules van Drupal (4.6 /Postgress) en het oplossen van fouten.
-Heetf u tiid en interesse om te helpen bij het maken van maatwerkmodules en uitbreidingen voor de site.
-Wanneer zou u indien u intreresse heeft af en toe tijd hebben.
-Welke vergoeding vraagt u.

Fondswervingonline.nl is grotendeels not for profit. We hebben wel wat budget maar niet veel. Wellicht kunnen we iets wederzijds acceptabels bedenken.

Helaas komen we er achter dat er toch wel het een en ander niet werkt zoals we het willen en we toch het een en ander aangepast en uitgebreid willen, kortom: een hele kluif. Graag werken we dan ook met iemand met ervaring met Drupal.

Graag hoor ik van u op korte termijn.

Met vriendelijke groeten,

Fondswervingonline.nl

Ondersteuning gevraagd bij Drupal site en modules (drupal 4.6. en Postgres)

We hebben in het verleden in Drupal een site laten ontwikkelen (zie www.fondswervingonline.nl).
Fondswervingonline.nl is een not for profit initiatief om non-profit instellingen te helpen bij het werven van subsidies, fondsen en sponsors.

Momenteel draait deze op Drupal 4.6 en Postgress op een eigen server met redelijk veel maatwerk en modules.

De programmeur die dit ruim een jaar geleden heeft gemaakt heeft een andere baan gekregen en is niet meer beschikbaar, terwijl we wel tegen een paar fouten aanlopen en redelijk veel willen laten aanpassen.

Onze vragen zijn:
-Heeft u tijd en interesse om ons te helpen met aanpassen en installeren van modules van Drupal (4.6 /Postgress) en het oplossen van fouten.
-Heetf u tiid en interesse om te helpen bij het maken van maatwerkmodules en uitbreidingen voor de site.
-Wanneer zou u indien u intreresse heeft af en toe tijd hebben.
-Welke vergoeding vraagt u.

Fondswervingonline.nl is grotendeels not for profit. We hebben wel wat budget maar niet veel. Wellicht kunnen we iets wederzijds acceptabels bedenken.

Helaas komen we er achter dat er toch wel het een en ander niet werkt zoals we het willen en we toch het een en ander aangepast en uitgebreid willen, kortom: een hele kluif. Graag werken we dan ook met iemand met ervaring met Drupal.

Graag hoor ik van u op korte termijn.

Met vriendelijke groeten,

Fondswervingonline.nl

Solution to the MySQL upgrade of the utf8 content from a latin1 store to a UTF8 store aka Upgrade from Mysql 3.xx...4.0x to 4.1+

Hello, everyone!

Here is my route to upgrading the UTF-8 data stored in MySQL as latin1 to a utf8-based charset and collation.

First, a conversion shell script:

1  DBFROM=dp
2  DBTO=dp
3  LOGIN=dp
4  PASS=XXX
5  mysqldump  --extended-insert=FALSE --default-character-set=latin1  -u $LOGIN -p$PASS $DBFROM >dp.sql
6  cat dp.sql |sed  -e 's/DEFAULT CHARSET=latin1;/DEFAULT CHARSET=utf8 COLLATE utf8_bin;/'>dp2.sql
7  cat dp2.sql |sed  -e 's/SET NAMES latin1/SET NAMES utf8/'>dp3.sql
8  echo " drop database $DBTO; create database $DBTO character set utf8 collate utf8_bin;"|mysql -u $LOGIN -p$PASS
9  mysql -u $LOGIN -p$PASS $DBTO <dp3.sql

Let us go over the lines.

Lines 1-4 configure the connection options.

Line 5 dumps the contents of the database. The --default-character-set=latin1 option disables the recoding of the date to the current locale of the system. Since the MySQL considers your UTF-8 data to be in latin1, this may result in data corruption. We also set --extended-insert=FALSE to easily detect the errors.

Line 6 passes over the dump of the data and changes the declaration of the default charset to UTF-8. It also specifies the collation scheme to be utf8_bin. This is the trickiest point and it took me a couple of hours to figure it out. Your fake latin1 data uses the latin1_swedish_ci collation by default where ci stands for case-insensitive. If you dump your data with the latin1 charset and latin1_swedish_ci collation and try to insert with the UTF-8 charset and its default utf8_general_ci collation, you will likely get unique key contraint errors as MySQL will start to consider the cyrillic А to be equal to а, and the greek Ρ to be equal to ρ just and it earlier considered the latin A to be equal to a.

University at Buffalo needs a Web Developer who loves drupal!

Position Description

The Web Application Developer is part of the application development team within Development and Alumni Systems at the University at Buffalo. The primary focus of this position is to support web-related services for the Office of Development, Office of Alumni Relations, and the UB Foundation.   

The Web Application Developer will work closely with other application developers and analysts within Development and Alumni Systems to provide programming support for various web-related services and applications.  Occasionally, the Web Application Developer will work with the staff supported by Development and Alumni Systems to gather requirements and feedback related to new and existing web-related services and applications.

Reporting Relationship

The Web Application Developer will report directly to the Director of Application and Web Development.

Responsibilities

Responsibilities for this position include: 

  • Support web sites on the University at Buffalo’s central UNIX web host (wings) for the Office of Development, Alumni Relations, and the UB Foundation
  • Support existing e-commerce services for the Office of Development and the UB Foundation
  • Support, upgrade, and customize existing web based applications developed in-house as well as open source and proprietary applications currently implemented
  • Participate in the development of new applications based on business needs
  • Support the Department of Development Communications, the Office of Alumni Relations and the UB Foundation in their web and e-communication efforts
  • Assist staff in working with outside IT vendors
  • Assist with any other tasks assigned by the Director of Application and Web Development

Qualifications

Education

A bachelor's degree is required. 

Forgetful login

I bug developed awhile ago on a Drupal site I administer. I log in, and the site loads my personal profile page just fine. However, if I refresh the page, or navigate to a different page, the webpage 'forgets' that I am logged in, and refuses me access. I know the problem is not on my end, I tried multiple browsers and computers, and other Drupal sites work fine. This is very frustrating, especially since I planned to use the break to catch up on a bunch of site maintenence. My apologies if this is a known bug.

Upgraded PHP and everything broke

I recently upgraded my server to php 5.2 which I understand isn't supported right now, however, the errors I am getting do not appear to be related to the session problem.

I have attempted to upgrade my drupal version to 4.7 and 5.0-rc1 however, I am getting a huge number of errors on the site. The biggest problem is that the site appears to be displaying a bunch of binary (the best way I can describe it). I have left it in its current state if anyone can take a look for me: http://www.geeksv.com/

The current version I have tried is 4.7-dev but this problem is happening with every version, I am fairly certain it isn't a database corruption, I have done some checks.

If you don't wish to take a look there here is what I am getting on the front page:

Warning: ini_set() [function.ini-set]: A session is active. You cannot change the session module's ini settings at this time. in /usr/home/geeksv.com/public_html/sites/default/settings.php on line 109

Warning: ini_set() [function.ini-set]: A session is active. You cannot change the session module's ini settings at this time. in /usr/home/geeksv.com/public_html/sites/default/settings.php on line 111

Warning: Cannot modify header information - headers already sent by (output started at /usr/home/geeksv.com/public_html/sites/default/settings.php:109) in /usr/home/geeksv.com/public_html/includes/bootstrap.inc on line 534

Pages

Subscribe with RSS Subscribe to RSS - Drupal 4.6.x