41
pipwax
This PAge cannot be displayed due to an internal error
  • 2007/4/29 14:46

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


This page cannot be displayed due to an internal error.

You can provide the following information to the administrators of this site to help them solve the problem:

Error: Unable to connect to database

Can anubody tell me what could cause this problem?
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



42
pipwax
Usage method
  • 2007/4/4 12:14

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


I would like to create a site for a client using XOOPS. This will be for a appraisal company. The question is can I have the downloads available by member. This will ensure that one member can't see another members appraisal.
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



43
pipwax
Re: Thanks To Everyone
  • 2007/3/22 0:13

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


www.sk8photos.com
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



44
pipwax
Thanks To Everyone
  • 2007/3/21 0:06

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


Thanks to anyone here that has ever helped me with my site. My XOOPS site had 85,000 hits for 1 DAY, AND 10,000 PAGE VIEWS. Thanks!
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



45
pipwax
Re: Web Stats Module
  • 2006/11/11 19:27

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


I am sorry that I left that out, but I am using version 2.1
Where would I find the theme.php file?
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



46
pipwax
Web Stats Module
  • 2006/11/11 1:36

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


I have installed the Istats Module (web stats) It shows but is not counting. I have added the javascript code in the footer, but it is not counting.
===========================read me doc.=================
i-Stats v1.02
===============

Records anonymous data as supplied by the users browser (via javascript).

Based on::
PHP i-Stats Version 1.5
developed By Sam Tang (sam@hkscript.com)


Installation
===============

Upload all files to a directory called exoops/modules/istats on your server.

Run E-Xoops admin, and install 'Web Stats' module.

Give access to groups as required.

Add the following code to the footer of your pages by using::
(Admin, Meta Generator, Footer Settings)
[ still effective even if theme changed ]

<!-- Add to footer -->
<script type="text/Javascript">
<!--
istat = new Image(1,1);
istat.src = "http://yourdomain.com/exoops/modules/istats/include/counter.php?sw="+screen.width+"&sc="+screen.colorDepth+"&refer="+document.referrer+"&page="+location.href;
//-->
</script>
<!-- end -->

Do not put a line break in the istat.src line!!

And don't forget to change 'yourdomain.com' to your sites domain.

Job done!!


Counter
==============
To use i-Stats as a counter, add the following two lines to your themes.php file(s):

include_once(XOOPS_ROOT_PATH . '/modules/istats/include/function.php');
$result = CountDays();

This gives access to the following figures:
$result['days'] The number of days that stats are available for
$result['total'] The total number of visitors
$result['ava_day'] The average number of visitors per day
$result['ava_hour'] The average number of visitors per hour
$result['ava_week'] The average number of visitors per week
$result['ava_mth'] The average number of visitors per month
$result['max_date'] The busiest day
$result['max_daycount'] The number of visits on the busiest day
$result['today'] The number of visitors so far today
$result['this_week'] The number of visitors so far this week
$result['this_mth'] The number of visitors so far this month
$result['max_week'] The busiest week, as year # week number "2003 # 47"
$result['max_weekcount'] The number of visitors in the busiest week
$result['max_mth'] The busiest month
$result['max_mthcount'] The number of visitors in the busiest month
$result['totalpages'] The total number of pages served

For example:

There have been <?php echo $result['total']; ?> visitors in the last <?php echo $result['days']; ?> days.


Display numbers as images
=========================
To display the above numbers as graphics add these two lines in addition to the two above:

$graphics = num_to_graphics($result['total'], 8, XOOPS_URL . '/modules/istats/images/default','jpg');
echo $graphics;

The first parameter is the number to convert.
The second parameter is the number of digits (includes leading zeros).
The third parameter is the path to the image files.
The fourth parameter is the file extension of the images, e.g. jpg, gif etc.

Example graphical counter
===========================
Inserted into theme.php function themefooter:

include_once(XOOPS_ROOT_PATH . '/modules/istats/include/function.php');
include_once(XOOPS_ROOT_PATH . '/modules/istats/include/display.php');
$result = CountDays();
$graphics = num_to_graphics($result['total'], 8, XOOPS_URL . '/modules/istats/images/default','jpg');
echo $graphics;

or

include_once(XOOPS_ROOT_PATH . '/modules/istats/include/function.php');
include_once(XOOPS_ROOT_PATH . '/modules/istats/include/display.php');
$result = CountDays();
$graphics = num_to_graphics($result['totalpages'], 8, XOOPS_URL . '/modules/istats/images/default','jpg');
echo "<div align=\"center\"> $graphics </div>";


Change Log
=============
xx/12/03 v1.02 Added manual in HTML, this readme.txt is now deprecated.
Added total pages served to counter.
Added extra browsers.
Reordered list of browsers for better identification
Corrected errors in readme.txt

26/11/03 v1.01 Added $myts functions to clean up referer url?querystring
Updated readme.txt to include instructions for use as counter
Added display.php to display numbers as graphics

24/11/03 v1.00 Initial release


Upgrade from v1.01 to v1.02
============================
Unpack and upload files.


Scripter
http://paul-cooke.com
==============================end read me================
This is the setp that I don't understand I can't find the file theme.php any help woud be greatly appreciated.

=======================confusing step======================

Counter
==============
To use i-Stats as a counter, add the following two lines to your themes.php file(s):

include_once(XOOPS_ROOT_PATH . '/modules/istats/include/function.php');
$result = CountDays();

This gives access to the following figures:
$result['days'] The number of days that stats are available for
$result['total'] The total number of visitors
$result['ava_day'] The average number of visitors per day
$result['ava_hour'] The average number of visitors per hour
$result['ava_week'] The average number of visitors per week
$result['ava_mth'] The average number of visitors per month
$result['max_date'] The busiest day
$result['max_daycount'] The number of visits on the busiest day
$result['today'] The number of visitors so far today
$result['this_week'] The number of visitors so far this week
$result['this_mth'] The number of visitors so far this month
$result['max_week'] The busiest week, as year # week number "2003 # 47"
$result['max_weekcount'] The number of visitors in the busiest week
$result['max_mth'] The busiest month
$result['max_mthcount'] The number of visitors in the busiest month
$result['totalpages'] The total number of pages served

For example:

There have been <?php echo $result['total']; ?> visitors in the last <?php echo $result['days']; ?> days.


Display numbers as images
=========================
To display the above numbers as graphics add these two lines in addition to the two above:

$graphics = num_to_graphics($result['total'], 8, XOOPS_URL . '/modules/istats/images/default','jpg');
echo $graphics;

The first parameter is the number to convert.
The second parameter is the number of digits (includes leading zeros).
The third parameter is the path to the image files.
The fourth parameter is the file extension of the images, e.g. jpg, gif etc.
===========================end confusing step===============
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



47
pipwax
Re: Control Panel Buttons mising
  • 2006/11/4 11:59

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


That worked. I had to delet the adminmenu.php file Logout and log back in, and my menu came back. However, I am not sure if I understand what just happen.
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



48
pipwax
Control Panel Buttons missing
  • 2006/11/4 1:53

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


When I go to my control panel I hav no buttons. This is a install that has been working for months. And now It will not work. XOOPS Version 2.0.13 any help would be greatly appreciated.
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



49
pipwax
Re: using CSS with smartsections
  • 2006/10/4 0:55

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


I did that at first but It changed everything else to. How would I associate the additinal css style with my document.
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional



50
pipwax
using CSS with smartsections
  • 2006/10/4 0:07

  • pipwax

  • Not too shy to talk

  • Posts: 132

  • Since: 2005/9/12


I am using smartsections V 1.05 I designed a page using dreamweaver. when I used the pagewrap feature I lost my CSS formating. How can I format a page within the Smartsections using CSS?
pipwax1@bellsouth.net
Quote:
To win in life one must be fluid like water, taking the shape needed to prevail


aspring IT Professional




TopTop
« 1 2 3 4 (5) 6 7 8 ... 13 »



Login

Who's Online

250 user(s) are online (170 user(s) are browsing Support Forums)


Members: 0


Guests: 250


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits