Pages: 1 2 3 :: [one page] |
|
Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Mikk36
Caldari
|
Posted - 2011.04.07 11:59:00 -
[1]
Edited by: Mikk36 on 07/04/2011 12:03:35 Here's my iteration on carebearing statistics. Information is pulled from the Corp Wallet Journal API, so a Full API key is required with sufficient permissions to access corp wallet journal.
Requirements: PHP 5 and MySQL
Download link
Installation Guide: Script is meant to be placed one folder above public web folder, so that htdocs (or some other name, public_html for example, that applies to your configuration) folder contains only index.php and css, images and js folders. Import data from carebear.sql to your database Configure settings in configuration.php Set up cron script to pull data at most every 30 minutes (*/30 * * * *)
Donations are welcome as usual 
|

Baron Holbach
Quam Singulari Session Changes
|
Posted - 2011.04.07 12:42:00 -
[2]
Edited by: Baron Holbach on 07/04/2011 12:42:51 "beta" tester reporting in 
nice script, full-ajax, mikk has learned for my mistakes - his code is improved (vs my orginal ratter) also this actually seems nice for eys not only informative...
i like it :P
|

Squizz Caphinator
Woopatang Primary.
|
Posted - 2011.04.07 13:02:00 -
[3]
Please include some data with your demo.
-- EveChatter |

Mikk36
Caldari
|
Posted - 2011.04.07 13:08:00 -
[4]
Originally by: Squizz Caphinator Please include some data with your demo.
It's on the todo list.
|

Kiree Chancel
Phantom Squad
|
Posted - 2011.04.10 20:11:00 -
[5]
Ran into a bit of a problem with your cron.php
My host doesn't allow file_get_contents()
I ended up doing it with curl.
Something like:
$ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, $url); $contents = curl_exec($ch); curl_close($ch);
Hope that helps someone. --
Originally by: CCP Capslock OH GOD THE TESTING
|

Mikk36
Caldari
|
Posted - 2011.04.11 08:52:00 -
[6]
Originally by: Kiree Chancel Edited by: Kiree Chancel on 10/04/2011 20:27:32 Ran into a bit of a problem with your cron.php
My host doesn't allow file_get_contents()
I've been trying to get it to work with curl instead, but with limited success. I'll post here if i can make some working code :)
Updated cron.php to use cURL.
|

Nathan WAKE
Osiris Entreprises OSE Fondation
|
Posted - 2011.04.12 21:28:00 -
[7]
Hi Mikk36,
Looks very nice on your demo site.
But on my installed version, the little "circle timer" goes on and on and on, and I never get any data... Either that, or a direct "No matching records found" when I modify the "host" part in 'mysql://username:password@host/database'.
I've tried both on a local site (with wamp) and on a live site. Curl is enabled, configuration.php set with all what's needed (I think) and my API key is a full one with sufficient permissions.
Any ideas ? Did I miss something ?
|

Nathan WAKE
Osiris Entreprises OSE Fondation
|
Posted - 2011.04.12 21:44:00 -
[8]
Little precision :
I tested my API Key with the https://api.eve-online.com/corp/WalletJournal.xml.aspx?userID=myuserID&apiKey=myAPiKey&characterID=mycharID URL and got the journal OK.
|

Mikk36
Caldari
|
Posted - 2011.04.12 22:52:00 -
[9]
If you only get the loading animation, then either the connection information provided in the DSN is incorrect or you haven't imported all the SQL data properly. If you have access to Firebug extension or equivalent that shows the data from the AJAX response, you can propably find the answer there. The API key does not matter in that part, since only the cron script uses that to import new entries to the wallet. If you want, I could check out the page myself, send me access details in evemail in that case.
|

MrDrugs IGotMoney
|
Posted - 2011.04.13 01:42:00 -
[10]
'Could not fetch data '
Director api user id and char id are set in the config file . not sure what the problem is
|
|

No07
|
Posted - 2011.04.13 06:53:00 -
[11]
Very nice work, thanks for sharing.
I run it on a low-end server (1.2ghz atom cpu, 1gig ram) and the loading times are a bit slow.
Also, on the timeline there is a second, flat, line. What is that showing? It seems redundant.
7
|

Mikk36
Caldari
|
Posted - 2011.04.13 07:42:00 -
[12]
Originally by: MrDrugs IGotMoney 'Could not fetch data '
Director api user id and char id are set in the config file . not sure what the problem is
"Could not fetch data" means that PHP could not get any data back from the API. Have you tried both cURL and file_get_contents? (UseCURL setting in the config) Originally by: No07 Very nice work, thanks for sharing.
I run it on a low-end server (1.2ghz atom cpu, 1gig ram) and the loading times are a bit slow.
Also, on the timeline there is a second, flat, line. What is that showing? It seems redundant.
7
Screenshot of that second flat line? As for performance, it's mainly limited by the speed that the database queries are executed. I host it myself on a 2.33Ghz C2D E6550.
I have also updated the zip package. It contains some mine adjustments in the cron script, which were made to make the API fetching a bit more reliable and an additional column for a region on the last tab.
|

Nathan WAKE
Osiris Entreprises OSE Fondation
|
Posted - 2011.04.13 19:13:00 -
[13]
Hello Mikk36
One thing I did not notice at first try : there was an error in the SQL syntax for creating the table "journal" (probably due to my version of MySQL : 5.0.32).
Instead of :
UNIQUE KEY `refID` (`refID`) USING BTREE, KEY `date` (`date`) USING BTREE, KEY `refTypeID` (`refTypeID`) USING BTREE
I had to write :
UNIQUE KEY refID USING BTREE (refID), KEY date USING BTREE (date), KEY refTypeID USING BTREE (refTypeID)
That created the table OK. (had to delete the 'rats' table first because of the foreign key constraint and recreate it after the 'journal' table)
Then I used the firebug extension to get the script and got the same result than on your page.
I think I'll accept your proposal and send you the address and details IG, so that you can have a look by yourself. I'm sorry for the fuss and I'm pretty sure it's nothing. But that "nothing", I can not put my hands on 
|

No07
|
Posted - 2011.04.14 06:28:00 -
[14]
See my above post for link to image.
After updating to your latest cron.php version i get an import error. It seems that curl doesn't work as smoothly as the other variant. Disabling curl works fine.
|

Tes La
|
Posted - 2011.04.14 18:03:00 -
[15]
Edited by: Tes La on 14/04/2011 18:03:22 i have a while cron.php running: Call to a member function RecordCount() on a non-object in help pls
|

Kyle Cook
|
Posted - 2011.04.14 18:43:00 -
[16]
Hi,
Imported the data - successful Configured configuration.php file - successful manually ran the cron.php file - failed
Quote: <br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'host' (1) in <b>/home/vtec/domains/vt-ec.co/public_html/cbear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
Also, I might be being stupid but what are the default logins and where do you administer users (if thats a feature) I cant find anything about these details anywhere.
Thanks
|

Nathan WAKE
Osiris Entreprises OSE Fondation
|
Posted - 2011.04.14 19:03:00 -
[17]
Hmmm, now that's embarrassing.
Sorry Mikk36, your app works perfectly, I was just assuming that logging in was enough for updating the data.
I ran the "cron.php" and it works now.
My mistake.
Great app, and ISK donation on the way, you deserve it.
Cheers.
Nathan
|

Mikk36
Caldari
|
Posted - 2011.04.14 19:27:00 -
[18]
Originally by: Tes La Edited by: Tes La on 14/04/2011 18:03:22 i have a while cron.php running: Call to a member function RecordCount() on a non-object in help pls
What's the rest of the error? Originally by: Kyle Cook Hi,
Imported the data - successful Configured configuration.php file - successful manually ran the cron.php file - failed
Quote: <br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'host' (1) in <b>/home/vtec/domains/vt-ec.co/public_html/cbear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
Also, I might be being stupid but what are the default logins and where do you administer users (if thats a feature) I cant find anything about these details anywhere.
Thanks
Fixed the config file in the zip The auth setting is the one that specifies username and password combos. The SQL setting is the DSN one in the config where you specify all four parts of the SQL setting: username, password, host and database name.
|

Tes La
|
Posted - 2011.04.15 02:10:00 -
[19]
with new-cron file:
Notice: Undefined property: Configuration::$DebugCron in /www/htdocs/carebears/cron.phpon line 160
Fatal error: Call to a member function RecordCount() on a non-object in /www/htdocs/carebears/cron.php on line 140
|

Mikk36
Caldari
|
Posted - 2011.04.15 05:59:00 -
[20]
Edited by: Mikk36 on 15/04/2011 06:03:04
Originally by: Tes La with new-cron file:
Notice: Undefined property: Configuration::$DebugCron in /www/htdocs/carebears/cron.phpon line 160
Fatal error: Call to a member function RecordCount() on a non-object in /www/htdocs/carebears/cron.php on line 140
The configuration file was also updated at that point. It also seems that you don't have the croncheck table in your SQL server, look up the code from one of my previous posts in this thread. It's also included in the static_1 sql file.
|
|

Kari Trace
Caldari Nox Imperium
|
Posted - 2011.04.19 05:40:00 -
[21]
I may be over looking this as its pretty late atm but...
I've successfully gotten everything installed on a WAMP stack and even cron.php executing via task scheduler...
Enter my problem, whats the default log in data?
|

Mikk36
Caldari
|
Posted - 2011.04.19 08:45:00 -
[22]
Originally by: Kari Trace I may be over looking this as its pretty late atm but...
I've successfully gotten everything installed on a WAMP stack and even cron.php executing via task scheduler...
Enter my problem, whats the default log in data?
/** * Valid logins for auth * @var array */ public $Auth = array( 'username' => 'password' );
|

Kari Trace
Caldari Nox Imperium
|
Posted - 2011.04.19 11:38:00 -
[23]
Edited by: Kari Trace on 19/04/2011 11:44:31 Doh! Functioned as expected. So I am able to log in, everything looks nice, Characters shows data, Daily Graph looks awesome, everything after that is loading...possibly bad db? Reloaded it. Ideas?
Side note: the server is a pretty beefy machine so that is probably not an issue, plus I let it sit for 5mins with no change...
|

Mikk36
Caldari
|
Posted - 2011.04.19 13:34:00 -
[24]
Edited by: Mikk36 on 19/04/2011 13:34:48
Originally by: Kari Trace Edited by: Kari Trace on 19/04/2011 11:44:31 Doh! Functioned as expected. So I am able to log in, everything looks nice, Characters shows data, Daily Graph looks awesome, everything after that is loading...possibly bad db? Reloaded it. Ideas?
Side note: the server is a pretty beefy machine so that is probably not an issue, plus I let it sit for 5mins with no change...
I'd check the AJAX response form the server with Firebug or equivalent (Google Chrome's Developer Tools, IE's Developer tools etc). The other option is to provide me with access so that I can take a look myself.
|

Tes La
|
Posted - 2011.04.19 17:15:00 -
[25]
Its working!!! Perfect!
But.. how i can collect statistic from two or three corp in one DB?:)
|

Kari Trace
Caldari Nox Imperium
|
Posted - 2011.04.19 18:54:00 -
[26]
Should have checked that, plus you stated that above as well. JSON returns the array of data...ah here it is:
Fatal error: Call to a member function FetchRow() on a non-object in C:\xampp\htdocs\ni\handler.php on line 553
From my quick research it's to deal with the ADOdb binding variables... (source: http://www.webdeveloper.com/forum/showthread.php?t=179835)
I've got a few ideas, you?
|

Kari Trace
Caldari Nox Imperium
|
Posted - 2011.04.20 05:12:00 -
[27]
Ok, I think I could the issue. No error tolerance when the tables (and conversely the rows) are not present in the db. I dumped the db and reinstalled it using all 3 SQL files in order. All ran correctly. I then edited the corn.php as needed, ran is via the CLI: no errors. Annnd, all was well. Just a point for clarity: When installing run ALL the SQL files, IN ORDER, before checking the application for functionality.
Now that it all works, looks nice man. BTW, where'd you learn PHP?
|

Mikk36
Caldari
|
Posted - 2011.04.20 06:50:00 -
[28]
Originally by: Tes La Its working!!! Perfect!
But.. how i can collect statistic from two or three corp in one DB?:)
I haven't written in such functionality specifically. If you're not seeking for differentiation between corps (it doesn't store the corporation for characters in the DB), then it would propably work with multiple configuration files for seperate cron files. Just set up the config files for each cron file and modify then the cron file for each corp to include that specific corp config. Making the cron script support multiple entries would not be that hard, would just have to modify the configuration for the API credentials and then create a loop for multiple entries in the cron. Originally by: Kari Trace BTW, where'd you learn PHP?
Everything has been learnt the hard way: following the PHP documentation line by line.
|

Kari Trace
Caldari Nox Imperium
|
Posted - 2011.04.20 11:33:00 -
[29]
Originally by: Kari Trace BTW, where'd you learn PHP?
Everything has been learnt the hard way: following the PHP documentation line by line.
Thats how you do it! Props to you buddy; kep up the good work.
|

Mikk36
Caldari
|
Posted - 2011.04.20 12:27:00 -
[30]
Originally by: Mikk36
Originally by: Tes La Its working!!! Perfect!
But.. how i can collect statistic from two or three corp in one DB?:)
I haven't written in such functionality specifically. If you're not seeking for differentiation between corps (it doesn't store the corporation for characters in the DB), then it would propably work with multiple configuration files for seperate cron files. Just set up the config files for each cron file and modify then the cron file for each corp to include that specific corp config. Making the cron script support multiple entries would not be that hard, would just have to modify the configuration for the API credentials and then create a loop for multiple entries in the cron.
Agh, just remembered what was the thing from stopping me doing it that as easily and smoothly: One would need to add another column to the journal table for checking the latest refID for that particular corporation.
|
|

Mscivy
|
Posted - 2011.04.20 16:15:00 -
[31]
Hey,
great app, works like a charm ... and saves me from trying to webdesign around a hacked previous version I used myself :)
Some things though:
1) the page should refresh when changing selection dates on onblur (or w/e the event is called - losing focus. haven't used jQuery in quite a while) or perhaps when the value is changed
2) it would be great if datapoints on the graph were clickable -> changing the selection dates accordingly onclick, to get the hourly breakdown. No idea if it's possible with the plotting library you're using.
3) info in the 'total value' column in the widget breaking down data by rat type is invalid. total_value != bounty * amount_killed - this becomes an issue when more than 1 person gets the bounty for a particular rat kill. wasn't able to find any decent workaround for that.
4) it would be great to add the notable rats widget to each of the subpages - i.e. breakdown by user, system etc.
5) authorizations - it would be nice to store them in the db + add self registration through IGB (=> verify corp). that i can do myself though ;)
M.
|

Mikk36
Caldari
|
Posted - 2011.04.20 16:51:00 -
[32]
Edited by: Mikk36 on 20/04/2011 16:51:48
Originally by: Mscivy 1) the page should refresh when changing selection dates on onblur (or w/e the event is called - losing focus. haven't used jQuery in quite a while) or perhaps when the value is changed
Currently it refreshes the page when a new value is selected from the popup calendar (the onSelect event). Originally by: Mscivy 2) it would be great if datapoints on the graph were clickable -> changing the selection dates accordingly onclick, to get the hourly breakdown. No idea if it's possible with the plotting library you're using.
Just looked at the flot documentation and it seems to have that capability. Originally by: Mscivy 3) info in the 'total value' column in the widget breaking down data by rat type is invalid. total_value != bounty * amount_killed - this becomes an issue when more than 1 person gets the bounty for a particular rat kill. wasn't able to find any decent workaround for that.
Yup, I have given that thing that thought too, but as there is no better way (not possible to make sure if the rats were killed by the persons in the same fleet and grid or seperately) I just made it assume that they were killed seperately. Default sorting is set on the handler side. Originally by: Mscivy 4) it would be great to add the notable rats widget to each of the subpages - i.e. breakdown by user, system etc.
Good idea, doesn't seem to be hard to implement, just look up how other queries have those things implemented.
|

No07
|
Posted - 2011.04.24 09:17:00 -
[33]
Edited by: No07 on 24/04/2011 09:19:45
Originally by: Mscivy 3) info in the 'total value' column in the widget breaking down data by rat type is invalid. total_value != bounty * amount_killed - this becomes an issue when more than 1 person gets the bounty for a particular rat kill. wasn't able to find any decent workaround for that.
Originally by: Mikk36 Yup, I have given that thing that thought too, but as there is no better way (not possible to make sure if the rats were killed by the persons in the same fleet and grid or seperately) I just made it assume that they were killed seperately. Default sorting is set on the handler side.
Is this the reason why I get quadruple values?
What happens is this, corp has a mission event. Lets say 4 people run missions together in a fleet, the corp tax is set to 100%. After the event, 100 million isk in total was generated in bounties, but all 4 people is reported to have made 100 million.
Also, the corp is still reported to have made only the normal tax income, not the 100%.
There is nothing to do about this?
|

Mikk36
Caldari
|
Posted - 2011.04.24 21:57:00 -
[34]
Originally by: No07 Is this the reason why I get quadruple values?
What happens is this, corp has a mission event. Lets say 4 people run missions together in a fleet, the corp tax is set to 100%. After the event, 100 million isk in total was generated in bounties, but all 4 people is reported to have made 100 million.
Also, the corp is still reported to have made only the normal tax income, not the 100%.
There is nothing to do about this?
You'll get quadruple values only for the rats table. Other places are not affected by this. Be aware though that corporation sheet api has 8-hour cache timer, so that corp tax change could be delayed for up to 8 hours.
|

Takeshi Ryuu
Black Octopus Blind Octopus
|
Posted - 2011.05.02 09:12:00 -
[35]
Is it possbile to use this application for multiple corporations at once (all corpoprations in alliance, for example)?
I see that there is only a single userid/apikey/charid tuple, but may be there are some known hacks for multiple userid/apikey/charid?
|

Mikk36
Caldari
|
Posted - 2011.05.03 12:16:00 -
[36]
Originally by: Takeshi Ryuu Is it possbile to use this application for multiple corporations at once (all corpoprations in alliance, for example)?
I see that there is only a single userid/apikey/charid tuple, but may be there are some known hacks for multiple userid/apikey/charid?
I have given it some thought, will propably have to implement it. The basic layout is this: Create an additional column in the journal for the corporation identifier (either corpID or identifier in the configuration, for example, an array key of the specific api data pair (I'd prefer that myself, can also set that key to be corpID)). That is needed to properly check the latest refID in the journal table against the refID in the XML. Put the API parsing into a cycle so that all api pairs get used and modify the saving part to include the corp identifier.
I've also put up the code on Google Code: http://code.google.com/p/eve-online-carebear-statistics/
|

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.04 09:36:00 -
[37]
The install instructions could be more detailed, or a readme, i.e. took me a while to cotton on that I have to upload the static.sql files :p
It is looking pretty sweet, only issue is that when it says total isk what does it mean? Isk that is collected by taxes, or total isk made by the members?
|

Mikk36
Caldari
|
Posted - 2011.05.05 08:45:00 -
[38]
Originally by: Nutbolt Edited by: Nutbolt on 04/05/2011 11:49:04 The install instructions could be more detailed, or a readme, i.e. took me a while to cotton on that I have to upload the static.sql files :p
It is looking pretty sweet, only issue is that when it says total isk what does it mean? Isk that is collected by taxes, or total isk made by the members?
EDIT: So after it has pulled more info, I am guessing its total they have made, is that then including tax or not? and is there any way there can be a tax section, i.e. how much tax each member has paid, and how much tax has been paid in total? I don't care so much if its hidden or not, just would be useful for directors to know how much isk is coming in from tax, and also allow each member to see how much tax they are paying.
It's the amount before taxation. If your corp tax is stable (ie, same percentage all the time), you can multiply the amount shown with the tax. For example, corp tax is 15%, page shows a member having earned 120m. 120m * 0.15 = 18m. Member gained 120m at first, but paid 18m to corp, and net income is in that case 102m.
|

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.05 14:42:00 -
[39]
Originally by: Mikk36 It's the amount before taxation. If your corp tax is stable (ie, same percentage all the time), you can multiply the amount shown with the tax. For example, corp tax is 15%, page shows a member having earned 120m. 120m * 0.15 = 18m. Member gained 120m at first, but paid 18m to corp, and net income is in that case 102m.
Ah ok then, cool thanks.
How easy would it be to implement a row on the members pages (so if you click a player and get their stats page type thing) which displays the tax paid? And also maybe next to the total isk (to the right of the date) it state the total tax paid? I have had a quick look at the code but never even looked at java before lol so don't even know where to start.
|

No07
|
Posted - 2011.05.06 06:45:00 -
[40]
Is there a debug I can switch on?
I don't get any new data when I run the cron job. From april 29th and onward i have zero data in the table. No changes done and cron reports no error.
|
|

netbotix
|
Posted - 2011.05.11 22:48:00 -
[41]
Is there a way to get old values? ie from a week ago? It seems that it only grabs for the last few hours (I assume from chron) or is this a limitation on the api fetch
Great app
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.13 15:51:00 -
[42]
excuse me if i sound stupid but what is needed to be changed in the cinfiguration.php
a bit of a idiot with such things sadly
|

Mikk36
Caldari
|
Posted - 2011.05.13 20:37:00 -
[43]
Originally by: netbotix Is there a way to get old values? ie from a week ago? It seems that it only grabs for the last few hours (I assume from chron) or is this a limitation on the api fetch
Great app
On the first fetch it tries to grab as much data as the API provides. If you only get a few hours worth of data, that's what the API provided. Seems oddly low amount though. At the time I developed this, I got generally around 2 days worth of data, around 220 entries, but it seemed to be fixed some two weeks ago or so, when it was properly upped to 2560 entries. Originally by: Psyrelle excuse me if i sound stupid but what is needed to be changed in the cinfiguration.php
a bit of a idiot with such things sadly
At a minimum, you should change the following: public $Auth = array( 'username' => 'password' ); // These are the logins for the page. You can add multiple entries here, just seperate them by commas. // For example: 'user1' => 'pass1', 'user2' => 'pass2'
public $Dsn = 'mysql://username:password@host/database'; // This is the database connection setting, consisting of four parts: the username, password, server address and the database name.
public $UserID = '123'; // This is the userID of the character that has appropriate rights to the corporation wallet
public $ApiKey = 'asd'; // This is the apiKey of the character that has appropriate rights to the corporation wallet
public $CharacterID = '123'; // This is the characterID of the character that has appropriate rights to the corporation wallet
The rest of the settings are trivial, the defaults should work for you.
|

nesdaq
|
Posted - 2011.05.13 23:57:00 -
[44]
Originally by: Mikk36
Originally by: Nutbolt Edited by: Nutbolt on 04/05/2011 11:49:04 [....]
It's the amount before taxation. If your corp tax is stable (ie, same percentage all the time), you can multiply the amount shown with the tax. For example, corp tax is 15%, page shows a member having earned 120m. 120m * 0.15 = 18m. Member gained 120m at first, but paid 18m to corp, and net income is in that case 102m.
plz add this future and include manual entry and default (=current corp tax)
and able to add: * Link main chars with alts so they show up as a single entry and not more. * Able to click on a date/hour(quick select between dates/hours) witch will give u a page with info on those day(s)/hour(s) you've selected (instead entering these manualy) * Colors!! to split other corps/users in graph or so :) * Add formating dd/mm/yy mm/dd/yy and . vs , on the thousands/decimal (not a big prio :) ) bug: * change date is not auto applying when entering the date manual instead using the the calendar
|

Karina Hoeeg
|
Posted - 2011.05.14 05:19:00 -
[45]
Originally by: Mikk36
Originally by: netbotix Is there a way to get old values? ie from a week ago? It seems that it only grabs for the last few hours (I assume from chron) or is this a limitation on the api fetch
Great app
On the first fetch it tries to grab as much data as the API provides. If you only get a few hours worth of data, that's what the API provided. Seems oddly low amount though. At the time I developed this, I got generally around 2 days worth of data, around 220 entries, but it seemed to be fixed some two weeks ago or so, when it was properly upped to 2560 entries. Originally by: Psyrelle excuse me if i sound stupid but what is needed to be changed in the cinfiguration.php
a bit of a idiot with such things sadly
At a minimum, you should change the following: public $Auth = array( 'username' => 'password' ); // These are the logins for the page. You can add multiple entries here, just seperate them by commas. // For example: 'user1' => 'pass1', 'user2' => 'pass2'
public $Dsn = 'mysql://username:password@host/database'; // This is the database connection setting, consisting of four parts: the username, password, server address and the database name.
public $UserID = '123'; // This is the userID of the character that has appropriate rights to the corporation wallet
public $ApiKey = 'asd'; // This is the apiKey of the character that has appropriate rights to the corporation wallet
public $CharacterID = '123'; // This is the characterID of the character that has appropriate rights to the corporation wallet
The rest of the settings are trivial, the defaults should work for you.
Sorry. keep getting a error when trying to log in.
how should I write the things in the config.
this is how I wrote it: public $Auth = array( 'saphyron' => '123456' );
public $Dsn = 'mysql://saphyron_caerbear:826066@saphyron/saphyron_caerbear2';
and what is charID. is that the excat name of of the char or what is it?
p.s. im psyrelle
|

Mikk36
Caldari
|
Posted - 2011.05.14 11:50:00 -
[46]
Originally by: Karina Hoeeg Sorry. keep getting a error when trying to log in.
how should I write the things in the config.
this is how I wrote it: public $Auth = array( 'saphyron' => '123456' );
public $Dsn = 'mysql://saphyron_caerbear:826066@saphyron/saphyron_caerbear2';
and what is charID. is that the excat name of of the char or what is it?
p.s. im psyrelle
Can you log in with the default Auth values? Your charID is what it sounds like: the ID of your character, not name. You can find it from your image here in the forum for exameple. Look up it's image name. The DSN setting looks odd, have you just scrambled it to look odd?
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.14 23:05:00 -
[47]
sent you a ingame mail
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.15 20:49:00 -
[48]
Originally by: Mikk36
Originally by: Karina Hoeeg Sorry. keep getting a error when trying to log in.
how should I write the things in the config.
this is how I wrote it: public $Auth = array( 'saphyron' => '123456' );
public $Dsn = 'mysql://saphyron_caerbear:826066@saphyron/saphyron_caerbear2';
and what is charID. is that the excat name of of the char or what is it?
p.s. im psyrelle
Can you log in with the default Auth values? Your charID is what it sounds like: the ID of your character, not name. You can find it from your image here in the forum for exameple. Look up it's image name. The DSN setting looks odd, have you just scrambled it to look odd?
got it too work now i wrote the database wrongly and the charid.
after that i could log in.
now im just waiting for it to get info about corp and its members.
do you know how long that takes?
|

NoNah
|
Posted - 2011.05.15 21:38:00 -
[49]
Originally by: Psyrelle
Originally by: Mikk36
Originally by: Karina Hoeeg Sorry. keep getting a error when trying to log in.
how should I write the things in the config.
this is how I wrote it: public $Auth = array( 'saphyron' => '123456' );
public $Dsn = 'mysql://saphyron_caerbear:826066@saphyron/saphyron_caerbear2';
and what is charID. is that the excat name of of the char or what is it?
p.s. im psyrelle
Can you log in with the default Auth values? Your charID is what it sounds like: the ID of your character, not name. You can find it from your image here in the forum for exameple. Look up it's image name. The DSN setting looks odd, have you just scrambled it to look odd?
got it too work now i wrote the database wrongly and the charid.
after that i could log in.
now im just waiting for it to get info about corp and its members.
do you know how long that takes?[/quote
Depends on when you set your cron to cycle, worst case you can update it manually, which might be an easier way of catching errors aswell.
It should be mentioned that you need to import one of the static .sqls aswell, not just the carebear.sql. I havn't looked at the differences between 1 and 2. Parrots, commence!
Postcount: 185021
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.16 15:29:00 -
[50]
Originally by: NoNah
Originally by: Psyrelle
Originally by: Mikk36
Originally by: Karina Hoeeg Sorry. keep getting a error when trying to log in.
how should I write the things in the config.
this is how I wrote it: public $Auth = array( 'saphyron' => '123456' );
public $Dsn = 'mysql://saphyron_caerbear:826066@saphyron/saphyron_caerbear2';
and what is charID. is that the excat name of of the char or what is it?
p.s. im psyrelle
Can you log in with the default Auth values? Your charID is what it sounds like: the ID of your character, not name. You can find it from your image here in the forum for exameple. Look up it's image name. The DSN setting looks odd, have you just scrambled it to look odd?
got it too work now i wrote the database wrongly and the charid.
after that i could log in.
now im just waiting for it to get info about corp and its members.
do you know how long that takes?[/quote
Depends on when you set your cron to cycle, worst case you can update it manually, which might be an easier way of catching errors aswell.
It should be mentioned that you need to import one of the static .sqls aswell, not just the carebear.sql. I havn't looked at the differences between 1 and 2.
okay did not know that.
and how to manuelly update the file and how to i set the update interval?
|
|

Mikk36
Caldari
|
Posted - 2011.05.18 10:20:00 -
[51]
NoNah, both static files are needed, the data is just split up to make the files a bit smaller.
Originally by: Psyrelle and how to manuelly update the file and how to i set the update interval?
You can manually open the cron.php file in your browser. To automatically call it, you have to find your hosting provider's panel and find the cron tab from there. For further instructions, contact your hosting provider.
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.19 09:48:00 -
[52]
Originally by: Mikk36 NoNah, both static files are needed, the data is just split up to make the files a bit smaller.
Originally by: Psyrelle and how to manuelly update the file and how to i set the update interval?
You can manually open the cron.php file in your browser. To automatically call it, you have to find your hosting provider's panel and find the cron tab from there. For further instructions, contact your hosting provider.
I am getting this error when I open cron.php
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'saphyron' (1) in <b>/home/saphyron/public_html/test_carebear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
I think I might have wrote something wrong in the configuration.php but I am a idiot to this kind of things.
|

Tonto Auri
Vhero' Multipurpose Corp
|
Posted - 2011.05.19 10:42:00 -
[53]
Originally by: Psyrelle I am getting this error when I open cron.php
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'saphyron' (1) in <b>/home/saphyron/public_html/test_carebear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
I think I might have wrote something wrong in the configuration.php but I am a idiot to this kind of things.
Did you read the message? It's rather clear. You didn't supplied correct address of your MySQL server. -- Thanks CCP for cu |

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.19 11:20:00 -
[54]
Originally by: Psyrelle
Originally by: Mikk36 NoNah, both static files are needed, the data is just split up to make the files a bit smaller.
Originally by: Psyrelle and how to manuelly update the file and how to i set the update interval?
You can manually open the cron.php file in your browser. To automatically call it, you have to find your hosting provider's panel and find the cron tab from there. For further instructions, contact your hosting provider.
I am getting this error when I open cron.php
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'saphyron' (1) in <b>/home/saphyron/public_html/test_carebear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
I think I might have wrote something wrong in the configuration.php but I am a idiot to this kind of things.
Some more detailed install instructions wouldn't go amiss for those of us who havn't a clue about sql etc... however as the previous post states, the error message states that its your server host that is wrong. In the config file where you type in the database details your host is more than likely something like 'localhost'. But this depends on the server setup etc.....
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.19 22:23:00 -
[55]
Edited by: Psyrelle on 19/05/2011 22:24:02
Originally by: Tonto Auri
Originally by: Psyrelle I am getting this error when I open cron.php
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'saphyron' (1) in <b>/home/saphyron/public_html/test_carebear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
I think I might have wrote something wrong in the configuration.php but I am a idiot to this kind of things.
Did you read the message? It's rather clear. You didn't supplied correct address of your MySQL server.
like i wrote severel times im a total idiot setting up databases. since it aint the right one can you then help me how i should write it.
this is how i wrote it: public $Dsn = 'mysql://saphyron_caerbea:826066@saphyron/caerbear2';
database is named saphyron_caerbear2 (please look past the spelling mistake. i know i did it but too lasy to fix it) username is saphyron_caerbea password is 826066
i simple can't get it too work and i don't understand that certain part
EDIT: im using hosting24.com as a provider if that helps
|

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.19 23:39:00 -
[56]
Originally by: Psyrelle like i wrote severel times im a total idiot setting up databases. since it aint the right one can you then help me how i should write it.
this is how i wrote it: public $Dsn = 'mysql://saphyron_caerbea:826066@saphyron/caerbear2';
database is named saphyron_caerbear2 (please look past the spelling mistake. i know i did it but too lasy to fix it) username is saphyron_caerbea password is 826066
i simple can't get it too work and i don't understand that certain part
EDIT: im using hosting24.com as a provider if that helps
These are obviously not my correct details but this is essentially my setup for the database line of code:
public $Dsn = 'mysql://nutbolt_cb:password@localhost/nutbolt_cbdb';
Where nutbolt_cb is the username setup for the database. This more than likely will include the account name you use at hosting24, ie my account name is nutbolt and i created a database user cb, the database username is acutally nutbolt_cb.
password is the database password...
localhost is the database host, this is more than likely the same for you, if it still does not work and the error mentions the database host file a support ticket with hosting24 asking for the name of the database host.
nutbolt_cbdb is the name of the database you created for this. In the same way for the username you may need to add your account name to the front of it if it is not already there.
I hope this helps,
Nutbolt |

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.20 01:32:00 -
[57]
Originally by: Nutbolt
Originally by: Psyrelle like i wrote severel times im a total idiot setting up databases. since it aint the right one can you then help me how i should write it.
this is how i wrote it: public $Dsn = 'mysql://saphyron_caerbea:826066@saphyron/caerbear2';
database is named saphyron_caerbear2 (please look past the spelling mistake. i know i did it but too lasy to fix it) username is saphyron_caerbea password is 826066
i simple can't get it too work and i don't understand that certain part
EDIT: im using hosting24.com as a provider if that helps
These are obviously not my correct details but this is essentially my setup for the database line of code:
public $Dsn = 'mysql://nutbolt_cb:password@localhost/nutbolt_cbdb';
Where nutbolt_cb is the username setup for the database. This more than likely will include the account name you use at hosting24, ie my account name is nutbolt and i created a database user cb, the database username is acutally nutbolt_cb.
password is the database password...
localhost is the database host, this is more than likely the same for you, if it still does not work and the error mentions the database host file a support ticket with hosting24 asking for the name of the database host.
nutbolt_cbdb is the name of the database you created for this. In the same way for the username you may need to add your account name to the front of it if it is not already there.
I hope this helps,
Nutbolt
it makes alot more sense.
but i still get this error
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'saphyron' (1) in <b>/home/saphyron/public_html/test_carebear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
what could be the problem then
everything is default except ive changed the public dns api userid public userid and added the databases all 3 of ehm
|

Tonto Auri
Vhero' Multipurpose Corp
|
Posted - 2011.05.20 03:21:00 -
[58]
Originally by: Psyrelle like i wrote severel times im a total idiot setting up databases. since it aint the right one can you then help me how i should write it.
Then hire someone to set it up for you. It's not like there's a Big Blue Button "Make It All Work". You have to actually set up a database server, a web server, and all the other things that need to run the application.
P.S. One-time system configuration (Apache+PHP+MySQL on windows or Linux(preferred), by your choice) and short educational round over it: 1Bil. -- Thanks CCP for cu |

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.20 12:47:00 -
[59]
The error still indicates that it is your database host, like I previously mentioned, try changing it to 'localhost'. if that doesn't work ask your hosting24 what it is.
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.20 13:13:00 -
[60]
Originally by: Nutbolt The error still indicates that it is your database host, like I previously mentioned, try changing it to 'localhost'. if that doesn't work ask your hosting24 what it is.
i have changed it to localhost
and i got a reply from my provider that it is localhost. but it still dosent work. which is kind of strange.
|
|

Nutty trader
|
Posted - 2011.05.20 13:56:00 -
[61]
Edited by: Nutty trader on 20/05/2011 13:56:09 And you have refreshed the page using ctrl+f5? It is the same error message? Sure you uploaded the new file and its got the correct name? If so then copy and paste the error message and the public DSN line here, just so it can all be double checked.
EDIT: Yer nutbolt here, silly forums.
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.20 14:55:00 -
[62]
Edited by: Psyrelle on 20/05/2011 14:55:07
Originally by: Nutty trader Edited by: Nutty trader on 20/05/2011 13:56:09 And you have refreshed the page using ctrl+f5? It is the same error message? Sure you uploaded the new file and its got the correct name? If so then copy and paste the error message and the public DSN line here, just so it can all be double checked.
EDIT: Yer nutbolt here, silly forums.
error:
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Unknown MySQL server host 'saphyron' (1) in <b>/home/saphyron/public_html/test_carebear/adodb5/drivers/adodb-mysql.inc.php</b> on line <b>365</b><br /> Connection failed
dsn:
public $Dsn = 'mysql://saphyron_caerbea:826066@localhost/saphyron_caerbear2';
|

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.20 15:25:00 -
[63]
From what I can tell it still thinks the database host should be saphyron and not localhost. If you are sure you have uploaded the config file correctly etc... then only other thing I can think of is to start a new, delete the carebear_test folder off your server, upload it all again including the editted config file. If still no luck im out of ideas, sorry.
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.20 16:03:00 -
[64]
Originally by: Nutbolt From what I can tell it still thinks the database host should be saphyron and not localhost. If you are sure you have uploaded the config file correctly etc... then only other thing I can think of is to start a new, delete the carebear_test folder off your server, upload it all again including the editted config file. If still no luck im out of ideas, sorry.
well now it works sorta.
Error 200: Current security level not high enough.
this error comes... what does that mean?
|

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.20 16:50:00 -
[65]
Only thing I can think of is either the user doesn't have access to the database? or your api doesn't have access, are you a director or CEO of the corp your in and trying to pull the info from? Apart from that you need someone who actually understands the code to reply :p
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.20 17:30:00 -
[66]
Edited by: Psyrelle on 20/05/2011 17:32:47
Originally by: Nutbolt Only thing I can think of is either the user doesn't have access to the database? or your api doesn't have access, are you a director or CEO of the corp your in and trying to pull the info from? Apart from that you need someone who actually understands the code to reply :p
pulling it from the ceo. maybe i need to supply full api and not limited
though i would love to know how im gonna automatically pull every hour or so
|

Psyrelle
Caldari Saphyron Industrial Division OmniTech Initiative
|
Posted - 2011.05.20 20:18:00 -
[67]
Edited by: Psyrelle on 20/05/2011 20:18:05 i was wondering is it possible to collect from multiple corps at the same time?
|

Nutbolt
Avalon Project Shadow Rock Alliance
|
Posted - 2011.05.20 23:53:00 -
[68]
Originally by: Psyrelle pulling it from the ceo. maybe i need to supply full api and not limited
though i would love to know how im gonna automatically pull every hour or so
EDIT: it now works thank you
No worries, glad I could help. To get it to pull automatically you will need to setup a cron job which uses the cron page. That's about as much as I can say lol, the way I have cron jobs set up on my server is a little weird, so I will let someone else explain now :)
|

MrDrugs IGotMoney
|
Posted - 2011.05.21 11:04:00 -
[69]
Anychance you update it so it works with incursions ?
|

Kraken Greyoak
|
Posted - 2011.05.22 11:23:00 -
[70]
Great code! Congrats.
On the main (sum) table, is it possible to add the number of kills made per member?
|
|

Ovidia Rhianon
Caldari Licentia ex Redemptio
|
Posted - 2011.05.23 19:01:00 -
[71]
First of all - this is a terrific tool, thanks for it =)
I am having a strange error though, I have set this up on three different websites with no problems at all and my most recent project is giving me the following error when I try to run cron.php:
Quote: <br /> <b>Notice</b>: Undefined offset: 0 in <b>/home/lost/public_html/cb/cron.php</b> on line <b>178</b><br />
Any idea what the problem is?
|

Alexandr Soljenitin
Gallente ROMANIA Renegades ROMANIAN-LEGION
|
Posted - 2011.05.26 16:34:00 -
[72]
The script is registering and displaying only 2 days since it has been installed (5 days ago installed, only the first 2 days there is SOME data displayed).
I am saying SOME data because there are characters that have made NPC and they are not displayed in the script statistic results.
Any idea if this is normal or if there are maybe bugs in the implementation ? Or... some API limitation ?
|

apocryphat
|
Posted - 2011.05.27 06:04:00 -
[73]
- This tool doesn't work with incursions rats / rewards
|

Darth Imperius
Imperial Academy
|
Posted - 2011.05.30 23:32:00 -
[74]
bump.
|

Venetian Tar
United Systems Navy Wildly Inappropriate.
|
Posted - 2011.05.31 15:27:00 -
[75]
Nice tool, took a bit to get working but it's great.
Thanks. |

Alexandr Soljenitin
ROMANIA Renegades ROMANIAN-LEGION
|
Posted - 2011.05.31 15:32:00 -
[76]
Originally by: Venetian Tar Nice tool, took a bit to get working but it's great.
Thanks.
Are you experiencing any problems related with data not being pulled correctly from the API ? I can't seem to understand why but in my installation I am only having access to reports for the past 1-2 days even if the script has been installed for more then 1 week.
Let me know. Thank you! I love it when a plan comes together |

Nathan WAKE
Caldari Osiris Entreprises
|
Posted - 2011.06.05 09:20:00 -
[77]
Hello,
I installed it at the beginning of April, and it as been working since, pulling data with no problem at all for me.
I did not change anything in the database and it passed the different EvE updates without problem.
Nathan
|

Mikk36
Caldari
|
Posted - 2011.06.07 08:57:00 -
[78]
Been away from EVE for a bit.
Updated the cron file: cron.php to pull also the Incursion related data into the database, rest of the page doesn't need modifications since the data doesn't provide anything else other than the amount and sender (CONCORD in that case), no system or activity related information at all.
Alexandr Soljenitin, has the crontab been set up to execute cron.php every 30 minutes?
|

Arkon Hjallian
United Systems Navy Wildly Inappropriate.
|
Posted - 2011.06.10 10:36:00 -
[79]
I'm also interested in multiple corp pulls, but with more info on the view screens to be able to filter / segregate by corps, and have a corp summary screen which shows totals by corp.
Also happy to pay a bounty for this. Evemail me :)
A.
|

netbotix
|
Posted - 2011.06.16 22:54:00 -
[80]
I am having an issue with this where I dont think the chron is actually pulling any info. Is there a way I can debug the process? I ran chron.php and then go to the app and there is no data.
Also does
public $JournalTable = 'journal';
need to be the name of the master wallet or leave it as be?
thanks
|
|

Mikk36
Caldari
|
Posted - 2011.06.22 09:05:00 -
[81]
Originally by: netbotix Edited by: netbotix on 17/06/2011 01:05:34 I am having an issue with this where I dont think the chron is actually pulling any info. Is there a way I can debug the process? I ran chron.php and then go to the app and there is no data.
Also does
public $JournalTable = 'journal';
need to be the name of the master wallet or leave it as be?
thanks
JournalTable holds the default name for the journal table (if you imported the data from sql files, leave it be). According to the cron.log, the cron script has pulled the data. You can check the "journal" table manually with phpmysql or similar that you have available to see when these entries occured.
|

netbotix
|
Posted - 2011.07.08 13:09:00 -
[82]
Well I got it to import.. doesn't seem like a long history but I can deal with it. Now my only problem is the cron job when automatically running does not import anything. If I manually run it, it does fine, but with a cron job it seems nothing is being imported.
I have verified that the cron job is running yet nothing seems to happen. Any idea? Does the troubleshooter echo for cron need to be turned off? Although it seems doing this makes no difference. Thanks |

TheDoctorUK
Gallente BSC LEGION Split Infinity.
|
Posted - 2011.07.24 01:36:00 -
[83]
Got it installed from the google code and updated the cron.php and added the table, but only the first tab works and the 2 tab with the graph works. The rest i see a circle for the ajax call, but does not display anything.
Got it installed on a ubuntu server (11.04)
Is there some MySQL tables I'm missing like systems and rats as all I see in the tables are numbers referencing to rats but no names?
 |

Micha W
Minmatar Mining Industry Exile Foundation Avaricious Cartel
|
Posted - 2011.08.28 14:36:00 -
[84]
I have a xml error when i update the cron.php
Quote: <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: Entity: line 1: parser error : Space required after the Public Identifier in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/str in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: ^ in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: Entity: line 3: parser error : Opening and ending tag mismatch: META line 3 and HEAD in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: <META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD> in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: ^ in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: Entity: line 6: parser error : Opening and ending tag mismatch: hr line 5 and BODY in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: </BODY></HTML> in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: ^ in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: Entity: line 6: parser error : Opening and ending tag mismatch: BODY line 4 and HTML in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: </BODY></HTML> in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: ^ in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: Entity: line 7: parser error : Premature end of data in tag HEAD line 2 in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br /> <b>Warning</b>: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: in <b>/home/miefevec/public_html/test/carebear/cron.php</b> on line <b>85</b><br /> <br />
|
|
|
|
Pages: 1 2 3 :: [one page] |