Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP






SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





PHP Website Management


I have just bought a small website written with php & html. The
vendors advised me that once I uploaded it to my website I could
customise all the templates to give it whatever look I wanted.

As a novice, I had no idea how difficult this would be - due to the
fact that a php website is very disjointed.

Can anyone tell me of any software I can download that will enable me
to manage my website so that I can see the structure in it easily and
make changes simply.

(I thought I was buying 60 sets of templates but what I bought was a
site with 60 pages).




View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Decent PHP Content Management System That Will Integrate With Any Website?
does anyone know of a decent PHP Content Management System that will integrate with any website? I need people to be able to edit a website that have no idea about coding therefore need a wysiwyg editor.

View Replies !   View Related
Change Website To Php,mysql Data-driven Website
At the moment this site is not completely php. How can I make the content of the pages be from a mysql database? and how do I make the nav buttons work correctly connecting to the mysql database and displaying the correct content, ?

View Replies !   View Related
How To Upload File From Website To My Website?
I want to make upload page. I could upload file from computer to my website. But I don't know how to upload file from website to my website? How can I make it?

View Replies !   View Related
DB Management
i've got a mysql table (or set of tables) which are used for logging, when it get's full the request starts to lag while it's searched. Therefore periodically I want to back it up. However, say I set a routine which back's it all up to file and then truncates (as so to reset the id) the table, ok.

But say whilst this is being done more entries are added and are not backed up. One point is, a certain period of time worth of log's need to be retained for frequency checking.

Considerations:
- If an entry is added whilst the table is being truncated, what happens.
- If only use delete entry, then at what point does the id run into trouble.
- Is it crazy to think about using two tables and just rotate them.

View Replies !   View Related
Ad Management
I am looking for something that I can place banner ads, rotate them and keep statistics with. Anyone have any ideas of a good system.

I would pefer something free because our site does not generate any money yet. I was looking into phpadsnew 2.0.4, but I cannot seem to find install instructions.

View Replies !   View Related
Memory Management
I've ran into a problem with my MySQL Class. Otherwise a very useful and easy tool, but when you get to handle large amounts of data with it, it will slow your site down significantly. It contains three functions, from which the SelectAll() is the troublesome 'cause it returns all results of a query. What it basicly does is it piles all data inside array. Each result is an array, inside the main array. This makes it easy to go through with loops.

But imagine what happens if I get 10000 results. I've tried to optimize it and basicly the SelectAll() is only a few lines long. Still it slows down. I've tried to search for articles about the issue but nothing, for this kind of thing, has come up.

View Replies !   View Related
Content Management
I've been looking a bit at PHP-based Content Management Solutions (CMS), including Midgard, PHPNuke, etc.

Has anyone dealt with these, and what do you find better in re. functionality, implementation, ect.?

We have a situation where we would have only about 4-5 content editors, with tasks like updating job postings, occasionally editing product info, adding new press releases, etc. Nothing terribly advanced.

View Replies !   View Related
AD Management Scripts
I've been looking for a while for an open source banner rotation script. I want the rotation ads to be included on different areas of my side via php includes. I also want the users to be able to manage their ads and place ads for a fee (through paypal), and an admin panel would also be handy.

Does anyone know of a script like this or maybe something similar?

View Replies !   View Related
Document Management In PHP?
Does anybody know about a good open source form manager (document
management) in PHP/MySQL? I have to build online admin pages for couple
of custom form types which are currently on the paper.

Basicaly, it's about seminar event management with teachers, students
and sponsors. I have lots of (paper) documents with details about each
of them and I'm looking for a quick way to build online admin pages that
would have these features:

1) administer forms (documents)
2) building relationships between documents
3) advanced search engine for reports

View Replies !   View Related
Management Scripts
I'm writting some scripts to management users on server
throuh www. I need to call some functions like "adduser",
"rmuser" etc. in my scripts. I'd like to know the best way
I could do this. I want secure sripts. Could anyone help me
to find solution to do this?

View Replies !   View Related
PHP Memory Management
I'm new to PHP programming (coming from C++); and all is well, except when
it comes to memory management. Particularly, with passing objects/arrays in
and out of functions. I've had so many unexpected results because of this
feature, that I'm almost pissed off, almost.

Things like, I have a class, with some callbacks (which default to functions
inside the class). But when the default functions were called, $this
couldn't see the values of the member variables. I found that my calling
array($this, "fun") (for use in a call to call_user_func) was creating a
copy of $this and thus it was a copy of the variables. Fixed with a $cb =
array(); $cb[0] = &$this; etc...

Later, with more problems, I found that $x = new y; made two copies (I've
assumed from the testing I'd done). One where it calls the constructor, and
then one when it copies it into $x. Fixed with a $x = &new y; (I consider
myself lucky to have discovered this as it could very easily have gone
unnoticed, had I not been setting up a reference to this in the constructor)
Which makes me worry that there are other places I don't know about!

....and lots more of course...

I guess with a little more care, it will be obvious where a problem exists,
but as I am a newbie, I know it will continue to destroy me.

Are there any tools or memory management functions that will allow me to see
exactly how many copies of various objects/classes/strings I have. Or a way
to dump a memory allocation when it happens or anything. I'm fearful that
there may be millions of copies of my classes and such that I won't know
about until it gets released - and two users go to the web site at the same
time and cause the server to run out of memory.

C++ is so much easier, I know exactly what memory is allocated, when and
where, and when it will be destroyed. Whoever invented garbage collection
and all that; a can of comeuppance upon them (not the good kind).

View Replies !   View Related
DNS Management Software
I'm looking for a web based software to manage my BIND 9.2 DNS server.
The software should have an interface to add/remove/edit records and
also a user login so that different users can manage different
domains. I have found some various systems related to DNS on the web,
such as phpdomain, but it seems mainly targeted to registering
domainnames and then pointing them to a dns server, not actually
setting the dns server up once that is done.

View Replies !   View Related
Using PHP For Session Management
I've just started using PHP for session management (done alot of it in
ISAPI/Delphi for many years).

My question is this:

I want to have a number of variables, for example $customer_id which
are session variables.

The PHP book I have been reading talks about
session_register('customer_id'), but I have seen people comment that
this is bad practice.

How should I approach this ?

I've tried putting $customer_id = $_SESSION['customer_id'], but have
found it difficult to rewrite the changed value back into the _SESSION
array at the end of the request.

Is there any way to get around this ?

I'm running PHP in a CGI mode under IIS ....

View Replies !   View Related
Date Management
I'm trying to create 2 pages for a website where you can input dates in 4 seperate boxes on one page which then gets written to a xml file and then those dates get retrieved from the xml file and placed in the appropriate place on the second page.
The section of the page where the dates are to be placed looks a little like this: Code:

View Replies !   View Related
Content Management With PHP
I have almost 1000 entries on a table in a MySQL DB. What I want to do is to display items from a row, depending on the URL.

For Example, I want this url:
http://localhost/players.php?lookup=23

to display certain attributes set into the table (ID,Firstname,Lastname), etc.

I'm using the following code for http://localhost/players.php?lookup=23 and it's not working: Code:

View Replies !   View Related
$_content Management
i am I'm trying to create a simple content management system for a online store I am building w/ Y! store tags.

I want to use the $_GET array and setup a script such as http://store.com/script.php?item=A , where A = item number. The script would get the value and then display the simple HTML layout but change all instances of "itemnumber" in the store tag HTML to the value of ITEM in the script (A).

store tags are inserted into the html layout such as <|-- ytag_picture=itemnumer --|> ..This would allow me to not have to make one seperate HTML page for each item.

View Replies !   View Related
Page Management
i want to use the same page for login and messege that user is loged in for my site. how can i access the sumbitted data on on the same page.

View Replies !   View Related
Picture Management
What I need to do is when I upload a new record to mysql database i need it to upload 7 pictures to a folder in /images/"ref no"/ .and then rename from a to g. I also need thumbnails to be created called as to gs (a small to g small). It would be great if i could get a program to upload them, resise them, rename them and create the thumbnails automatically, but the essential parts are uploading them to the folder and creating the thumbnails. What is the best way of doing this?

View Replies !   View Related
Best Document Management
I'm looking for a document management system that is open source created with PHP & MySQL. The system minimally will support unlimited user accounts and user groups with the ability to securely associate groups of files together. The system should allow for easy sorting, organizing and categorizing of files. HIPPA compliancy is required.

A simple list of known packages would help. If you have first-hand experience with one of them, even better. I know of OWL, but haven't actually used it.

View Replies !   View Related
User Management
I am trying to create a website with phpauction and several other php scripts like a calendar and a business directory. Is there a script out there that I could use to auto register and login users in all these services with only one step? What i mean by that is that a user would sign up once and have accounts created automatically in all the
services.

View Replies !   View Related
Management Of Session
I am working on an application which is developed in ASP. This application internally uses some modules of php. This php is alltogether different application but running in same IIS server on advanced windows 2003 OS,with MSSql2k as a backaned support.

I need to create a session bridge between both of this applications. I mean when i switch to ASP application from php there should be some funcitonality which can pass the asp session id to ASP application. By this i want to achieve one session between two applications.

How to create this session bridge through which i can pass the session of php to asp application and as session id to php application?


View Replies !   View Related
Member Management
I would like to have login and registration for new members on my site. Where do I start? What program should I use?

View Replies !   View Related
File Management
I run a small website which is for a small group of poeple aorund 100, and they take minutes of meetings, results from competitions things like that, mostly PDF documents and word files. I need to be able to display these for download easily, Ive brocken all the documents into a round 10 different sections, is there any way (script) out there that will automatically update a webpage based on the contents of a directory?

View Replies !   View Related
User Management Help
I've been hosting a forum game that has been extremely successful, so I'm converting it into an online PHP based game. To give some background, the game is an industry type game with elements from Monopoly from it, where people build buildings, get products, sell and buy from a market that fluxes with the amount of product bought and sold, and just keep expanding.

Unforunately, I'm a little new to PHP and MySQL, but am learning quickly. But I'm not sure how to do my users. I just installed some registration/login scripts that allow my users to make a username and password, and store their email and whatnot, but I'm not sure if I should make a new table for their buildings they have or anything. And for whether I should make a table for hte prices of the buildings, etc..,etc.

View Replies !   View Related
Serious Memory Management
I have a PHP page that reads emails from an email account, parses them, processes the resulting information, and then sends out a response. I am in the process of testing it right now, and I am using a small sample (11 emails). I expect, when the site is fully functional, that I could be processing hundreds of emails at a time. I am running the site on a managed server that is dedicated, so I have a fair amount of memory. Unfortunately, I get a fatal error:

Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 6 bytes) in funcs_parse_emails.php on line 48

after only six emails. Clearly, if I am using up 42 megabytes, I have a serious problem. Is there someone out there who can point me to a book or website that discusses PHP memory management issues or provides tools I can use?

View Replies !   View Related
Asset Management
I'm planning on building an asset management tool for our local network. I have a question I would like to ask: Is it possible to use PHP/MYSQL/JS etc. as a "metadata" structure and when trying to retreive a file (mostly files over a 100MB) not sending
it over http, but use some other (faster) way for that, like calling a batch script or something (I understand there are security issues to be dealt with), but using the local network infrastructure. Or would FTP be an option... trying to explore all possibilities, but haven't got very far at this stage.

View Replies !   View Related
Banner Ad Management
I was set to Openads (phpAdsNew), but I seen in the bugs tracking system that a couple people complained of having code inclusion. I'm not sure as to how but I'd imagine it was done via SQL-injection. I'm going to d/l the script and go over it and try and hunt down those types of holes. in the meantime, what do you suggest thats out there.

View Replies !   View Related
Session Management
I've written a session-based back-end requiring user login. It works as expected when I use Firefox (windows) or Safari (mac) but not in IE 6. There should be no need to explain my code because php is browser independent. What's happening is that when I enter the user/pw on the login page, (assuming correct usr/pw pair) I get re-directed to the main admin page (index.php). that part works. However, clicking on a nav link sends me back to the login (as if the $_SESSION['user'] variable was never set).

View Replies !   View Related
Image Management
I use the following form to upload and change the filename of 1 picture on my website: Code:

<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>Pic 1</p>
<input name="file1" type="file" id="file" size="50" />
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
<input type="submit" value="Upload" />
</form>

and upload.php: Code:

<?
$file_name = $HTTP_POST_FILES['file1']['name'];

$random=rand();
...

View Replies !   View Related
Content Management System.
I’m looking for a content management systems, PHP based and MySQL driven. I already checked for Mambo and Typo3. But which systems are good and which are bad? I heard a lot of bad things of Mambo concerning security problems. On the other hand Typo3 is not that easy to learn and is very complex. All suggestions are welcome.

View Replies !   View Related
News Management Log In Script
It seems that even sessions are somehow insecure. Anyway, I just want to know how to make a secure log in system using MySQL. I know how to check passwords, but how do I tell the browser that I am still logged in when I go to another page?

Added: Maybe I'm wrong. Are sessions secure? I'm so confused. What's the best way of making a secure login script with just PHP and/or MySQL. I don't want a script that only works if people allow cookies and doesn't work if they deny cookies.

View Replies !   View Related
PHP Session Management Using MySQL?
I recently wrote a set of PHP session management functions that writes session data to a MySQL table instead of the default text files. The main reasons for doing this was scalability and to make easier access to session data. However the second reason hasn’t been achieved as yet because PHP needs session data to be stored in a formatted string like the following: PHP Code:

View Replies !   View Related
Error Management : Php-pgsql.
My goal : obtain the error message if the connection fail.

## my code :

<?php

$cnxString = "host=localhost port=5432 dbname=toto user=atlante
password=aiThoo3g";

$pgsql_conn = pg_connect($cnxString, PGSQL_CONNECT_FORCE_NEW);

if ($pgsql_conn) {
print "Connexion réussie à : " . pg_host($pgsql_conn) . "<br/>
";
} else {
echo pg_last_notice($pgsql_conn);
exit;
}
?>

## if «php_value display_errors 1» the screen result is this one :

Warning: pg_connect() [function.pg-connect]: Unable to connect to
PostgreSQL server: FATAL: la base de données «toto» n'existe pas in
/home/willou/public_html/atlanpolis/wwws/tools/checkdb.php on line 5

Warning: pg_last_notice() expects parameter 1 to be resource, boolean
given in /home/willou/public_html/atlanpolis/wwws/tools/checkdb.php on
line 10

## If not, i haven't got any result. The message just appears in my
logs

The return of pg_connect not seems to be an connection resource when
the connection fails.

View Replies !   View Related
File Management System.
I am creating an intranet-type file management system where two or three users can upload and download Word files. I know how to allow for file upload using HTML forms, but is there a way to allow download??

View Replies !   View Related
Content Management System For PHP
I would like you advise on the best freeware Content Management
System for PHP scripting. Something that is suited to a larger site and can look after navigation well including breadcrumbs navigation ...

View Replies !   View Related
Help Me With Email Bounce Management
I am using C Panel
I have PHP 4.3.9
I use php List 2.8.12

All my bounced emails are going directly to my server.

I need all my bounced emails to be routed to a specific email address
of my choosing.

View Replies !   View Related
Which Content Management System
I am already using PHP Nuke as CMS.
I think to change it.I heard about good things about Xoops ,
What do you suggest ?

View Replies !   View Related
Process Management In Windows
All I need to do is run a windows batch file from a small php program, and
return the windows process id of the batch file. I have played around with
proc_open() but that returns a resource id. Does anyone have a suggestion
on what call I could use to get the windows process id returned within my
program. I am using windows xp pro, and php 5/apache

View Replies !   View Related
Date And Time Management
how I could post the correct time for where the user was located. Like pacific time if they were in california and so on. My server is located in california, and it is posting pacific time for me.. Is there anyway to detect where the user is coming from and adjusting the time accordingly?

View Replies !   View Related
Who's On Line And Session Management
I saw somewhere a very good article on using mysql and php session to keep track of the user. I have a forum and want to display the users currently on the site, and also when you go to a particualr forum, it displays who is in that forum too. Anyone got a good starting point? I know a far bit about sessions and mysql just need to join the two.

View Replies !   View Related
Subscription Management Software?
Does anyone have any recommendations for good subscription management
software you've used on your PHP/MySQL site? I already have my users
set up witih their username/passwords, but I need something to
auto-bill them and keep track of subscription lengths. I would prefer
to get something tried and true than write my own.

View Replies !   View Related
What Is A Content Management System?
I know what it is, and yet the knowledge of what a CMS is, is so vague
that I find myself asking this question every now and then. I've
googled and read the resources too. However, the knowledge is still not
clear. It is so vague.

Me: Just what is a content management system?

Myself: A place where content can be stored.

Me: OK. So, then what's a file system?

Myself: That's not web-based. File-Systems are desktop-based.

Me: You can have a file-system on a common network server. I can even
have a network server and give remote access to people over a VPN. I
can host content on a terminal server, I can give them VNC clients, or
an RDP client, and let them browse what they want to.

Myself: How will they know "where" to find what?

Me: Come again?

Myself: With all those avenues you mentioned, you won't publish
content. There will not be a taxonomy. You will just be dumping files
on another remote server. How will the users "find" what they want?

So, is a CMS all about:

1. Taxonomy
2. Publishing content in a Web based format

Me: What about binary objects that cannot be published in HTML?

Myself: Yeah! What about them, dude? Use your head. What about them?
Heard of a hyperlink? Heard of HTTP? FTP? No?

Me: OK. I get it. But...I *still* don't get it, man. Why did we need
this? More importantly, where are the boundaries? I believe CMS also
lets users edit and publish content on-the-fly.


So, again, where are the boundaries? What about non-public content?
What about access rights? Do you have seperate users on CMS's having
their seperate folders as well, where they could put their own private
content? Or, is the idea behind CMS about "sharing" and so they put
only that which they need to share and not the private stuff.

Do CMS's also allow access rights or authorization levels *per*
resource/file/unit of content that is uploaded on to them? Or, are they
role-based - e.g all users of this group will be able to access all
files, and users of that group will have read-only access to this
website.

View Replies !   View Related
User Management Models
does anyone know where to find information about different user management models.
What sort of model to use for what kind of complexity. how to realise the different models and so on...

View Replies !   View Related
Banner Management Scripts
Could anyone recommend a script/program that rotates banners on each page impression?
If it has extra stuff like special clients/client of the week etc. so much the better!

View Replies !   View Related
Looking For A Php Content Management System
I'm sorry for the long post, but I think it's better if I'm as detailed as I
can be so that I don't make a mistake in my choice and so that there's a
clear understanding of to what I'm looking for.

I'm looking for a content management system to use on a site
(http://www.nigeriavillagesquare.com) that I help to moderate. Unfortunately
(as I have discovered), there are literally hundreds of CMS's to choose
from, so I am understandably confused. However, I would appreciate it if
anyone will be able to recommend a good one based on the criteria I'm going
to give.

In order of priority, the criteria are:

1. Ease of use involving minimal manual intervention. What I would like is a
system where once someone has posted an article and editors have approved
it, it gets published not only to a main 'articles' page but parts of it
(e.g. a link to it with the subject in the title) *automatically* get
published wherever we would like these parts to be published.

For example, currently, we get people to publish articles using Blogger.
Unfortunately, it means that once the article is approved, we still have to
manually insert the link to our front-page and sidebars to our messageboard
using PHP include statements.

See the sidebar on the following page for examples:
http://www.nigeriavillagesquare.com/board.

What we would like is an article management system that would publish
articles to an articles page and also populate the front page and sidebars
automatically.

2. Integration with existing message board and site. I would like a
situation where the content management system would sit side by side with an
existing vBulletin messageboard we already have so that we can show
part of the content on the same page as the messageboard (as I have
described above). It would be nice if we could also cause parts of the
article to appear on other parts of the site as well.

3. Ease of import of previously published articles: I have already mentioned
above that we already have some articles published using Blogger. We would
not want to lose these, so it would be great if there was a
mechanism for importing these articles into the content management system
with minimal manual intervention.

4. Ease of composition: We would like people writing articles not to need to
be masters of html to compose articles for submission to our site. Ideally,
we would like them to be able to paste their articles directly into the
composition window provided by the content manager from a rich text format
application like Microsoft Word without losing their formatting. Failing
that, it would be nice if the content manager provided a simple markup
language that allowed for basic formatting, with the option of html
formatting if the article writer wanted to do something really complex.

5. Article rating. We would like people reading the articles to be able to
rate them. It would be nice if we could configure the rating system so that
we could choose the range of points to be awarded.

6. Good portal system: We would like to have a front 'portal' page with an
index to the latest articles (with a "more articles" link that will direct
readers to more articles the main articles page). We would also like to have
links to other sections of the website where we would post news,
entertainment and other stories.

7. Comments and Login Integration with Vbulletin. Again, we want to have the
ability to integrate with our vbulletin board in such a way that members who
are already registered do not need to register again before posting comments
to articles.

I am assuming that because our existing site is based on PHP, the CMS should
be PHP-based as well.

I would be extremely grateful if you could point me in the direction of a
CMS that would meet most if not all of these requirements.

View Replies !   View Related
Content Management And Caching
I use PEAR Cache to cache the frontend pages of a content managed web site.
Now I update the contents of a page, and of course the updated contents will
only be displayed after the expiring period of the cached file.

After thinking and googling a lot I see several possible approaches to for
handling this, each of which has it's downsides:

- Use a very short expiring period. (Downside: Makes caching only relevant
at very high visitor frequencies.)

- Change database, add modification date to every record - and compare
creation date of cache files with modification dates of contents. (Huge
overhead; must first detect which tables and records the page uses at all.)

- Flush cache everytime an admin page is called, or within the insert,
update, publish etc functions. (Empties whole cache also if only a comma is
changed.)

- Provide an "flush cache" button for the administrator to use after
finishing changes. (Administrator will forget it.)

View Replies !   View Related
What Is The Best Content Management System?
There are a few in Perl and PHP, with MySQL or without and either in
Mod_Perl or not in.

I have heard mason, but it does not have any demo site, but claims, AMAZON
is using it.

I also like PostNuke, but then there is a sister product caled PHPNuke

I am looking for something simple but with a lot of plug-ins. I will not use
many features, but like to have BBS/Forum and Classified Ads. I want it
simple, because I need to rewrite a lot of codes to include my current Perl
program.

What is my best choice?

View Replies !   View Related
News Management Script
I have bought new CMS, implemented all but I am not happy with news module.

I need script:
1. SEO Friendly URL (url should contain news headline)
2. Easy Adding News
3. News approving, option of many journalists with different permission level

etc. Something like CuteNews, but better.

Price is not the issue.

View Replies !   View Related
Serious PHP Memory Management Problem
I have a PHP page that reads emails from an email account, parses them, processes the resulting information, and then sends out a response. I am in the process of testing it right now, and I am using a small sample (11 emails). I expect, when the site is fully functional, that I could be processing hundreds of emails at a time. I am running the site on a managed server that is dedicated, so I have a fair amount of memory.

Unfortunately, I get a fatal error:

Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 6 bytes) in funcs_parse_emails.php on line 48

after only six emails. Clearly, if I am using up 42 megabytes, I have a serious problem.

Is there someone out there who can point me to a book or website that discusses PHP memory management issues or provides tools I can use? Alternatively, is there someone who has expertise in this area who would be willing to help me?

View Replies !   View Related
Session-Management With PHP3
how the session-management works in php3. i have tested the session-management in php4 but i will also use it in php3! Can I do so?

View Replies !   View Related
User Management Sessions
how to store the $_SESSION['*****'] variables. I have seen come code, but it isn't clear. . . what is the easiest way to use the $_SESSION for my custom variables: something like $_SESSION['username'] = 'John Henry'; $_SESSION['userlevel'] = 'orange'; I understand I can send them from my login form using $_POST, but how do I set them??

View Replies !   View Related
Clustering And Session Management
We're running a fairly busy and complex e-commerce website. It's an
online retailer. We utilize MySQL for most of our site-based dynamic
data, and then we use Oracle to access inventory and place orders. We
have two seperate machines for database and web application
(reasonably powerful dual xeon 3ghz machines, 6gb ram each).

We're running Apache 1.3.28 with PHP 4.3.3, mod_ssl 2.8.15 and OpenSSL
0.9.6b. We are running MySQL 4.0.16 as our db and Oracle 8.0.5 as the
inventory.

We front the webserver with a Nortel Alteon AD3 load balancer and it's
currently configured for one webserver. The webserver talks to the
database on the back-end (via second network).

We have a second webserver in place but are unable to bring it into
load-balancing because of sessions. We use flat-file sessions and
regularly build 20,000+ each day (cleaned up after 24 hours). We ran
into performance issues using NFS to store the flat files between the
two machines, so we dropped down to one server.

The question is, what is out there to support distributed session
management? I have taken a look at msession but I can't seem to get it
to compile correctly on RedHat Enterprise ES v3. It also seems to want
to use PostgreSQL.

Does anyone have an opinion on which way we should go? I've thought
about using the database to store the sessions, but that would be a
write and read for every pageview.

We store session numbers via cookies, and I thought about using Cookie
persistance with our AD3's, but it seems like that might introduce
other problems in the event of a server going down, etc. I have also
thought about using client-based persistance (IP Address) but that
could possibly throw the load-balancing out of whack with
super-proxies (AOL, etc).

Anyone have any ideas? Are there any super-fast database products that
would be more suited to many small writes and reads?



View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved