I cant see the icon of Joomla Watch [solved] - 2007/11/02 06:12happydest wrote: I have installed everything , but I see only link to your site in the front. Its written Joomla Watch and nothing else. Can you help me. I dont know where is my mistake
Re:I cant see the icon of Joomla Watch - 2007/11/28 14:30I have the latest update installed, but the icon still doesn't show. Any ideas on how to fix this?
Re:I cant see the icon of Joomla Watch - 2007/11/28 15:19Please report your Browser type and version, PHP version, Operating system it's running on, and any other possible details.
Re:I cant see the icon of Joomla Watch - 2007/11/28 15:46Typing the path directly (as mentioned early in the thread) reveals the same problem. Here are our stats:
IE7 Windows Vista Joomla 1.0.13 PHP built On: Linux 2.4.9-e.70 #1 Fri May 5 21:12:54 EDT 2006 i686 Database Version: 3.23.58-log PHP Version: 5.0.5 Web Server: Apache/1.3.27 (Unix) (Red-Hat/Linux) PHP/5.0.5 WebServer to PHP interface: apache Joomla! Version: Joomla! 1.0.13 Stable [ Sunglow ] 21 July 2007 16:00 UTC User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2)
Relevant PHP Settings: Joomla! Register Globals Emulation: OFF Register Globals: ON Magic Quotes: ON Safe Mode: OFF File Uploads: ON Session auto start: OFF Session save path: /tmp Short Open Tags: ON Output Buffering: OFF Open basedir: none Display Errors: OFF XML enabled: Yes Zlib enabled: Yes Disabled Functions: cmd,passthru,proc_open,shell_exec,system
Re:I cant see the icon of Joomla Watch - 2007/11/28 17:43Hello Matto, i have the same problem that i can´t see the joomla icon! It´s only the Link... I checked the thing with the img.php, but its only a white screen...
I´m running a server with Linux 9.3, PHP 5.2.5, MySQL 5.0.45 and Joomla 1.0.13 and your newest joomlawatch. Browser Mozilla 2.0.0.10, Win XP
Re: - 2007/12/02 15:15Edit the img.php as mentioned in 2 posts back. Comment the lines that insert header and include image. Then when you want to display img.php in your browser you should probably see some notices. I want to know these notices because they do the image icon corruption.
Re: - 2007/12/03 11:26Hi Matto, Hi have the same problems as fellows above, alos I have a probleme when I select the component it give me an unexpected format in the component admin page:
Parse error: syntax error, unexpected $end in /home/username/www/administrator/components/com_joomlawatch/admin.joomlawatch.html.php on line 120
I comment the 2 lines you mentioned also I remove them, and here are the results:
setQuery( $query); $database->query(); $redirURI = @$_SERVER['REDIRECT_URL']; $uri = @$_SERVER['REQUEST_URI']; if ($redirURI) $uri = $redirURI; $ip = $_SERVER['REMOTE_ADDR']; $time = date("H:i",@$_SERVER['REQUEST_TIME']); $time = time(); $title = @$mainframe->getPageTitle(); $query = "select max(id) as maxid from #__joomlawatch"; $database->setQuery( $query); $rows = $database->loadObjectList(); $row = $rows[0]; $maxid = $row->maxid - 50; //$time2 = time() - 600; //delete old entries $query = "delete from #__joomlawatch where id < $maxid "; $database->setQuery( $query); $database->query(); die(); ?>
I have many website running joomla, I Have Unis on Apache webser, running joomla 1.013, and PHP V4.4.4 Thank You
Re: - 2007/12/03 16:31newblue wrote: I did as you said and commented those lines, but again there is no output. The resulting page is blank. So, there are no data that would corrupt the image. So, when you revert the change, the icon MUST be there !
Re: - 2007/12/03 16:37wonderweb wrote: Hi Matto, Hi have the same problems as fellows above, alos I have a probleme when I select the component it give me an unexpected format in the component admin page:
Parse error: syntax error, unexpected $end in /home/username/www/administrator/components/com_joomlawatch/admin.joomlawatch.html.php on line 120
I comment the 2 lines you mentioned also I remove them, and here are the results:
setQuery( $query); $database->query(); $redirURI = @$_SERVER['REDIRECT_URL']; $uri = @$_SERVER['REQUEST_URI']; if ($redirURI) $uri = $redirURI; $ip = $_SERVER['REMOTE_ADDR']; $time = date("H:i",@$_SERVER['REQUEST_TIME']); $time = time(); $title = @$mainframe->getPageTitle(); $query = "select max(id) as maxid from #__joomlawatch"; $database->setQuery( $query); $rows = $database->loadObjectList(); $row = $rows[0]; $maxid = $row->maxid - 50; //$time2 = time() - 600; //delete old entries $query = "delete from #__joomlawatch where id < $maxid "; $database->setQuery( $query); $database->query(); die(); ?>
I have many website running joomla, I Have Unis on Apache webser, running joomla 1.013, and PHP V4.4.4 Thank You
Your PHP doesn't recognize the <? .. so I should have used the <?php instead. Damn PHP.. I would rather go back to java programming. It's unbelievable how many f***g issues it has.
Re: - 2007/12/03 17:40Fixed. I changed all <? to <?php so it should work for you. Just re-download 1.0.3 and re-install. Hope there are no other undiscovered "secrets" of PHP like this one.
Re: - 2007/12/04 08:25Thank you, now it works, with no parse error, but I am only getting same as who is online, Number of guests and number of registred members, without IP addresses and without flags, just 1 line Num of gues and Num of members.
Re: - 2007/12/04 16:18Make sure your JoomlaWatch module is published and it shows the icon on the joomla sub-pages.
Check, whether there are no javascript errors - in firefox Tools->Error Console. Click "Clear", then "All", and choose the JoomlaWatch interface in the admin menu. I have no idea what might be wrong in your specific case. Every useful information about your system configuration will be appreciated.
You can also check, whether the data of JoomlaWatch are being stored in the database - connect to your database through the PHPMyAdmin or just a commandline and type:
select count(*) from jos_joomlawatch;
(jos is the default prefix you selected upon the database installation, might be different).
If the result is not empty, the problem is in the user interface. If it is empty, then there is a problem in storing the data during the visit of every user.
Thank you so much for the answer. I found the Problem on my own! There was something wrong in my administrator file of joomla! I changed the whole administrator file and now your programm works fantastic.
Re: - 2008/01/11 08:43Hello, with joomla 1.5, I get this :
Warning: require(globals.php) [function.require]: failed to open stream: No such file or directory in /home/conforta/www/15/components/com_joomlawatch/retrieve.php on line 14
Fatal error: require() [function.require]: Failed opening required 'globals.php' (include_path='.:/usr/share/php5') in /home/conforta/www/15/components/com_joomlawatch/retrieve.php on line 14
and I can t see the icon.
with "/components/com_joomlawatch/img.php", I get a blank page.
~~~~
also, when I do a "locate com_joomlawatch", I don't find the folder !
config : PHP Built on: Linux gentoo x86_64 Database Version: 5.0.21-log Database Collation: latin1_swedish_ci PHP Version: 5.1.4 Web Server: Apache/2.0.58 (Unix) mod_ssl/2.0.58 OpenSSL/0.9.7i Web Server to PHP interface: cgi
Answering Service - The service that manages your phone calls so you can concentrate on coding.
24 hour live person availability, appointments, customer requests management, help desk, order processing and more.
Registration required
I know that people don't like registering on websites, but I had to
do it. From this moment you have to register first, before you
download any file. This is better, because this way I can give you
quick info about new version of downloadable files (eg. MathGuard)
or some necessary security fixes. Thanks for understanding.
(26.08.2007)
Books about investing and finance
I'd like to recommend you to read a book by Robert T. Kiyosaki -
"Rich Dad, Poor Dad". However many people say it's quite a
controversial book, it gave me a good motivation to improve my
financial intelligence. (23.08.2007)
Fighting with the spam
All of the forms were protected with my own PHP antispam class -
MathGuard, including the forms in the joomla modules I use.
(02.05.2007)
Forum
Converted posts from the old punbb forum to the new joomlaboard
(25.02.2007)
Improvement
Fixed some issues with the freelance registration, added a
possibility to add a new programming resource, reorganized the
structure of the programming resources. (24.02.2007)
New content management system
Codegravity.com is now running on joomla cms :) Added features like
comments, forum etc. I hope you'll like it. Today I fixed the
problem with the comment module which was not showing the correct
images. There is also a new URL structure. For the old urls there
is a 301 (Moved permanently) http redirect. (10.02.2007)
Moved to another hosting
Codegravity.com has been moved to another web hosting -
CustomHosting.sk, from the previous pipni.cz, mainly because of the
mod_rewrite problems and slow loading of the website. Sorry for
some problems that lasted for about an hour. (19.01.2007)
Bookmark feed
The new feed from the del.icio.us has been added to the homepage
codegravity.com. You 'll always have the latest information about
the sites I like and you should visit as well! (21.11.2006)
News improved
Today I improved the news feeds. They are sorted into categories
and I also added some other feeds that may be interested for you.
(31.03.2006)
The Antispam verification
My email form was hijacked by the spam bots and I was recieving a
lots of junk into my mailbox everyday. So, I decided to put a
simple verification in the end of the form. You have to answer the
result of addition of two numbers. Thank you for your
understanding. (07.03.2006)
Java SE 6 Beta Mustang is out !
This beta release is a major milestone in the development of
Mustang. It provides a complete stable snapshot of the final
release functionality. http://mustang.dev.java.net
(20.02.2006)
Google analytics, apply online
Apply online to google-analytics.com. They offer the new way of
analysis of your website visitors. It is very promising, and when
you will recieve the invitation code, you can send me one :) Thank
you :) (13.02.2006)
Money Manager 2 - software for mobile
accounting
FaceRSS - simple JavaServer Facer (JSF)
component
I registered my new project - FaceRSS on freshmeat.net, here is the
description: FaceRSS is a simple JavaServer Faces (JSF) component
that allows you to display news from a specified URL source in one
configurable JSP tag. This allows you to place news feeds on a Web
site in a very simple way. It uses rsslib4j and therefore supports
RSS version 0.9x, 1.0, and 2.0 with Dublin Core and Syndication
namespaces. (06.01.2006)
My new blog :)
Check out my new [jroller.com/page/matto3c] blog on jroller.com
website. Here is the RSS feed [http://jroller.com/rss/matto3c] if
you'd like to add it into your news reader. (14.12.2005)
ERM-II and Slovakia
SLOVAKIA, my home country, is now one step closer to adopting the
common European currency - EURO. At midnight between
November 25 and November 26, the country joined the Exchange Rate
Mechanism 2 (ERM-II) (30.11.2005)
www.jground.com
I established a new website - http://www.jground.com, it's all
based on JSF and it should be all about Java and all other related
things. Enjoy! (25.11.2005)
Swing text antialiasing
Java webhosting
I'm trying a new http://www.move.cz java webhosting on www.move.cz,
but it seems they don't respond to my questions about JSF ;(
(16.11.2005)
Migration from Weblogic to JBoss
Currently I am working on a task: Migration of one J2EE application
from Weblogic to JBoss application server. So, if you have any
suggestions or resources, I would be glad if you'll send me some.
Thanks (15.11.2005)
Increased Java performance
Java increased its performance on desktop by 58% :
[http://www.javalobby.org/java/forums/t54006.html] Java
Performance
Improvement (15.11.2005)
Exadel Studio Pro
At this time I'm playing with JSF (Java Server Faces). I want to
recommend you a great IDE - Exadel JSF Studio Pro. It costs about
$99, and there is 15 days trial available. You can also try
MyEclipse which has also like Exadel - WYSIWYG editor for editing
JSP, JSF pages. It can save you a lot of time. For more info, visit
www.exadel.com (27.09.2005)
Programming directory
added a new programming resources directory, where you can submit
your own programming website (14.09.2005)
Programming forum
Now the Programming forum is included in website design. I put
there some topics from previous version of this forum.
(19.08.2005)
Ubytovanie, podnajom Poprad
Ponuka na podnajom, ubytovanie: Zrekonštruované podkrovie
- rodinny dom Poprad-Matejovce - 2 izby + pracovna + kúpelna s
kuchynou, strešné a plastové okná,
samostatné plynové kúrenie, drevené
plávajúce podlahy, garáž, velká
záhrada a samostatný vchod. . . Cena: dohodou
Kontakt: 0908 190 372 (18.02.2008)