EzPortal - Portal Software for Forums

EzPortal - Made to Fit Your SMF Forum - Glad You Found Us!
+- +-

UserBox

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Recent Posts

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Re: Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 02:09:24 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:55:53 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 01:47:42 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:34:07 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 12:20:17 pm

Re: Theme Select Box question? by EzPortal
March 02, 2023, 11:26:15 pm

+- HTML Menu


Sample HTML Block Usage - You May Custom Code it, as needed!

Recent Topics ezBlock

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Where is the facebook button color? by EzPortal
February 28, 2023, 06:45:09 pm

Display on Mobile - SMF 2.1.3 and EZ 5.5.2 by BugginIn
December 29, 2022, 04:07:13 pm

Blocks Help by Riggs1973
November 20, 2022, 12:59:30 pm

Surface ol lite theme release Free! by Steffen K.
November 18, 2022, 03:57:24 am

Undefined index: href by EzPortal
October 04, 2022, 08:49:59 pm

SMF-ezportal_column_5.cache): failed to open stream: No such file or directory by EzPortal
June 04, 2022, 11:40:13 am

Arcade block error: failed to open stream: No such file or directory by Shades
May 20, 2022, 02:47:13 pm

ezPortal 5.5 by EzPortal
May 20, 2022, 09:59:30 am

Author Topic: While installing EZ-portal I got this error  (Read 53739 times)

0 Members and 1 Guest are viewing this topic.

Offline silverjay57

  • Posts: 18
  • Karma: 0
While installing EZ-portal I got this error
« on: November 30, 2008, 05:51:55 am »
Table 'GOOTC_forum.smf_ezp_settings' doesn't exist
File: /home/content/s/i/l/silverjay57/html/forum/Sources/Subs-EzPortalMain.php
Line: 19

Is there a way to manually install this table?
As I was doing this inside the Admin section of the forum, is there another way to install this?

Any information you can provide would be greatly appreciated.
Thanks

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1298
  • Karma: 67
Re: While installing EZ-portal I got this error
« Reply #1 on: November 30, 2008, 08:52:40 am »
Was it being installed manually? Or did you use the package installer?
Did it create any of the other tables inside the database.

They have a prefix of smf_ezp_
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #2 on: November 30, 2008, 02:40:01 pm »
Was it being installed manually? Or did you use the package installer?
Did it create any of the other tables inside the database.

They have a prefix of smf_ezp_

I was using the package installer in SMF.
I think so. I will look in the databade and see

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #3 on: November 30, 2008, 02:41:29 pm »
It did install the ez-portalmain.php and the exportal-convert.php.
Does that help?

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1298
  • Karma: 67
Re: While installing EZ-portal I got this error
« Reply #4 on: November 30, 2008, 02:49:18 pm »
Here are the two manually queries
Code: [Select]
CREATE TABLE IF NOT EXISTS smf_ezp_settings (
  variable tinytext NOT NULL,
  value text NOT NULL,
  PRIMARY KEY (variable(30))
) TYPE=MyISAM;


INSERT IGNORE INTO smf_ezp_settings
(variable, value)
VALUES
('ezp_allowstats', '1'),
('ezp_portal_enable', '1'),
('ezp_portal_homepage_title', ''),
('ezp_shoutbox_enable','0');
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #5 on: November 30, 2008, 02:54:59 pm »
Did it create any of the other tables inside the database.

They have a prefix of smf_ezp_

OK I just looked at the tables.
No there is no tables with the smf_ezp_ prefix.

ANy ideas what to do?

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #6 on: November 30, 2008, 02:56:40 pm »
Here are the two manually queries
Code: [Select]
CREATE TABLE IF NOT EXISTS smf_ezp_settings (
  variable tinytext NOT NULL,
  value text NOT NULL,
  PRIMARY KEY (variable(30))
) TYPE=MyISAM;


INSERT IGNORE INTO smf_ezp_settings
(variable, value)
VALUES
('ezp_allowstats', '1'),
('ezp_portal_enable', '1'),
('ezp_portal_homepage_title', ''),
('ezp_shoutbox_enable','0');

ok let me see if I can put the into MySQL

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #7 on: November 30, 2008, 02:58:42 pm »
ok  it just made the ezp_setting table.

then I put the second query in

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1298
  • Karma: 67
Re: While installing EZ-portal I got this error
« Reply #8 on: November 30, 2008, 03:00:56 pm »
If there are no tables. I would try to uninstall then reinstall.
I just release EzPortal 0.2.

Check if that helps.

If not check your forum's error log and see if there are any errors and tell me what happens when the install completes for EzPortal
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #9 on: November 30, 2008, 03:02:37 pm »
If there are no tables. I would try to uninstall then reinstall.
I just release EzPortal 0.2.

Check if that helps.

If not check your forum's error log and see if there are any errors and tell me what happens when the install completes for EzPortal
ok I will try to install 0.2.
however I can't get to my admin screen...

Table 'GOOTC_forum.smf_ezp_columns' doesn't exist
File: /home/content/s/i/l/silverjay57/html/forum/Sources/EzPortal.php
Line: 1456

is the error it gives me

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1298
  • Karma: 67
Re: While installing EZ-portal I got this error
« Reply #10 on: November 30, 2008, 03:05:34 pm »
Open up your  index.php in the root directory of your forum
Find and remove
SetupEzPortal();
Then you should be able to get back to the admin area.
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #11 on: November 30, 2008, 03:13:39 pm »
Open up your  index.php in the root directory of your forum
Find and remove
SetupEzPortal();
Then you should be able to get back to the admin area.

I know this is such a newbie question,
but where do I open that up in?
MySQL?
or open that from the File Manager

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #12 on: November 30, 2008, 03:18:25 pm »
there is an EzPortal.php file should I delete that?

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #13 on: November 30, 2008, 03:21:01 pm »
here is the webpage BTW

http://www.getoutofthecold.net/forum/index.php

it has Powered by EzPortal on the bottom.

Offline silverjay57

  • Posts: 18
  • Karma: 0
Re: While installing EZ-portal I got this error
« Reply #14 on: November 30, 2008, 03:29:14 pm »
Open up your  index.php in the root directory of your forum
Find and remove
SetupEzPortal();
Then you should be able to get back to the admin area.

ok back in.
thank you

 

Related Topics

  Subject / Started by Replies Last post
2 Replies
7361 Views
Last post January 19, 2009, 03:04:20 pm
by fabteam
6 Replies
15899 Views
Last post June 23, 2011, 12:38:46 pm
by jdaw
1 Replies
5829 Views
Last post February 11, 2011, 08:33:33 am
by carolinestrik
1 Replies
5940 Views
Last post September 18, 2011, 05:32:51 pm
by EzPortal
5 Replies
7899 Views
Last post February 18, 2013, 09:40:52 am
by EzPortal

+-SMF Gallery

Quick Menu


Powered by EzPortal