Loading...
 
Architecture / Installation

Architecture / Installation


w2k install issue

posts: 11

unzipped the files in my htdocs folder, go to tiki-install.php and all I get is a blank page.

php, apache, odbc and mysql are all set up and working fine.

w2k all patched

any help appreciated.

posts: 1001 Canada
Checking your php.ini's memory_limit against adivsed 16M is the most efficient check with this problem.

posts: 2881 United Kingdom

Hi Harlequin,

As Chealer says check your memory limit. Also create a phpinfo.php file containing the phpinfo function and browse to it, just to make sure that the PHP is running good. Also this can occur if you have some kind of php cache installed.

What version of Tiki are you installing?

Damian

posts: 11

> Damian:
> Hi Harlequin,
>
> As Chealer says check your memory limit. Also create a phpinfo.php file containing the phpinfo function and browse to it, just to make sure that the PHP is running good. Also this can occur if you have some kind of php cache installed.
>
> What version of Tiki are you installing?
>
> Damian

Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.

I have upped the memory limit to 16M from 8M as well

I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.

as for php cache, unless its on or installed by default I have none.

any help appreciated.

posts: 2881 United Kingdom

> Harlequin:
> Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.
>
> I have upped the memory limit to 16M from 8M as well
>
> I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.
>
> as for php cache, unless its on or installed by default I have none.
>
> any help appreciated.
>

Ah! I did read I think in another forum post or on the InstallTikiTroubleshootingDoc about a temp folder or a tmp folder. Ive only installed once on a windows system wink

Just out of interest try creating a tmp on the root of C:

I'll try and track down someone who has more Windows experience.......

posts: 11

> Damian:
> > Harlequin:
> > Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.
> >
> > I have upped the memory limit to 16M from 8M as well
> >
> > I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.
> >
> > as for php cache, unless its on or installed by default I have none.
> >
> > any help appreciated.
> >
>
> Ah! I did read I think in another forum post or on the InstallTikiTroubleshootingDoc about a temp folder or a tmp folder. Ive only installed once on a windows system wink
>
> Just out of interest try creating a tmp on the root of C:
>
> I'll try and track down someone who has more Windows experience.......

ahh that did it. I put a tmp folder on c: root and the install script worked.

The install seemed to go well, But now im at the home page and when I use admin/admin to login it says "Invalid username or password" ?

any ideas? Thanks for your time and help.

posts: 2881 United Kingdom


> The install seemed to go well, But now im at the home page and when I use admin/admin to login it says "Invalid username or password" ?
>
> any ideas? Thanks for your time and help.
>

GREAT!

Ok, this last step Im sure was fixed in 1.7.5, move the tiki installation into a subfolder called tiki or something.

so that you have to access it by http://localhost/tiki

I'm sure that was fixed, marcuis did it in the 1.8 release. I'll have to double check wink

posts: 11

> Damian:
>
> > The install seemed to go well, But now im at the home page and when I use admin/admin to login it says "Invalid username or password" ?
> >
> > any ideas? Thanks for your time and help.
> >
>
> GREAT!
>
> Ok, this last step Im sure was fixed in 1.7.5, move the tiki installation into a subfolder called tiki or something.
>
> so that you have to access it by http://localhost/tiki
>
> I'm sure that was fixed, marcuis did it in the 1.8 release. I'll have to double check wink

erm.. your saying cut everything in my htdocs folder, make a folder called 'tiki' and then dump everything into that?

so my members have to type http://(my addy)/tiki to access my site?

I dont know if I like that...

But im still not sure what the fix is to not being able to login? heh.. sorry for sounding ignorant. I am used to myphpnuke and xoops and they were less trouble for me.

posts: 2881 United Kingdom

> Harlequin:
>
> erm.. your saying cut everything in my htdocs folder, make a folder called 'tiki' and then dump everything into that?
>
> so my members have to type http://(my addy)/tiki to access my site?
>
> I dont know if I like that...
>
> But im still not sure what the fix is to not being able to login? heh.. sorry for sounding ignorant. I am used to myphpnuke and xoops and they were less trouble for me.

Took me a while to find it.

Make this modification and it should fix it: http://sourceforge.net/mailarchive/message.php?msg_id=6653195

posts: 2881 United Kingdom

> Harlequin:
> > Damian:
> >
> > Took me a while to find it.
> >
> > Make this modification and it should fix it: http://sourceforge.net/mailarchive/message.php?msg_id=6653195
> >
>
> Thanks for the link, but there is no file called 'setup_smarty.php' in the 1.7.5 distro.. what exactly do I edit?
>

Sorry its at the top of setup.php in 1.7x family using the diff contents change the line from the one beginning with a - to the one beginning with +

posts: 11

> Damian:
> > Harlequin:
> > > Damian:
> > >
> > > Took me a while to find it.
> > >
> > > Make this modification and it should fix it: http://sourceforge.net/mailarchive/message.php?msg_id=6653195
> > >
> >
> > Thanks for the link, but there is no file called 'setup_smarty.php' in the 1.7.5 distro.. what exactly do I edit?
> >
>
> Sorry its at the top of setup.php in 1.7x family using the diff contents change the line from the one beginning with a - to the one beginning with +
>

AAGGH!!! Now sourceforge is saying the message no longer exists!

  • begins to weep in fustration*
posts: 2881 United Kingdom

> AAGGH!!! Now sourceforge is saying the message no longer exists!
>
> *begins to weep in fustration*

Ok, I'll be good to you wink

Copy to clipboard
if (isset($_SERVER["REQUEST_URI"])) { - ini_set('session.cookie_path',dirname($_SERVER["REQUEST_URI"])); + ini_set('session.cookie_path',str_replace( "\\", "/", dirname($_SERVER["REQUEST_URI"]))); } session_start();
posts: 11

> Damian:
> > AAGGH!!! Now sourceforge is saying the message no longer exists!
> >
> > *begins to weep in fustration*
>
> Ok, I'll be good to you wink
>

>
Copy to clipboard
> > if (isset($_SERVER["REQUEST_URI"])) { > - ini_set('session.cookie_path',dirname($_SERVER["REQUEST_URI"])); > + ini_set('session.cookie_path',str_replace( "\\", "/", dirname($_SERVER["REQUEST_URI"]))); > } > > session_start(); > >


I appreciate all the help, but I still get the access denied error.

Good luck with your project, but I need something thats a bit easier then this to install.

Thanks for all your time once again.

posts: 2881 United Kingdom


just to conform did you change this line:
> > - ini_set('session.cookie_path',dirname($_SERVER%22REQUEST_URI%22));

to equal this line:

> > + ini_set('session.cookie_path',str_replace( "\\", "/", dirname($_SERVER%22REQUEST_URI%22)));

or add it?

We need more Windows testers! Come on windows people. whats the answer for Harlequin?

posts: 11

> Damian:
>
> just to conform did you change this line:
> > > - ini_set('session.cookie_path',dirname($_SERVER%22REQUEST_URI%22));
>
> to equal this line:
>
> > > + ini_set('session.cookie_path',str_replace( "\\", "/", dirname($_SERVER%22REQUEST_URI%22)));
>
> or add it?
>
> We need more Windows testers! Come on windows people. whats the answer for Harlequin?

correct, I replaced not added.

posts: 11

> Damian:
> > Harlequin:
> > Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.
> >
> > I have upped the memory limit to 16M from 8M as well
> >
> > I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.
> >
> > as for php cache, unless its on or installed by default I have none.
> >
> > any help appreciated.
> >
>
> Ah! I did read I think in another forum post or on the InstallTikiTroubleshootingDoc about a temp folder or a tmp folder. Ive only installed once on a windows system wink
>
> Just out of interest try creating a tmp on the root of C:
>
> I'll try and track down someone who has more Windows experience.......

UPDATE:

I created a database on mysql called 'grimoire' and pointed the setup script to use it. It seems it was replaced by one called tiki, which is fine dont really care what its called as long as it works. but when I veiw the tables in it, its blank.

Is this how its supposed to be?

posts: 3 United States

> Harlequin:
> > Damian:
> > > Harlequin:
> > > Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.
> > >
> > > I have upped the memory limit to 16M from 8M as well
> > >
> > > I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.
> > >
> > > as for php cache, unless its on or installed by default I have none.
> > >
> > > any help appreciated.
> > >
> >
> > Ah! I did read I think in another forum post or on the InstallTikiTroubleshootingDoc about a temp folder or a tmp folder. Ive only installed once on a windows system wink
> >
> > Just out of interest try creating a tmp on the root of C:
> >
> > I'll try and track down someone who has more Windows experience.......
>
> UPDATE:
>
> I created a database on mysql called 'grimoire' and pointed the setup script to use it. It seems it was replaced by one called tiki, which is fine dont really care what its called as long as it works. but when I veiw the tables in it, its blank.
>
> Is this how its supposed to be?
>

Hello Harlequin,

RE: your problem logging in with admin/admin, I noticed you said your database was changed from grimoire to tiki but has blank tables, did you try re-running tiki-install.php (assuming this is a clean install with no content yet). Make sure you're using the correct database name, user and password of course biggrin. Keep us posted on how things are going...

posts: 11

> l1_wulf:
> Hello Harlequin,
>
> RE: your problem logging in with admin/admin, I noticed you said your database was changed from grimoire to tiki but has blank tables, did you try re-running tiki-install.php (assuming this is a clean install with no content yet). Make sure you're using the correct database name, user and password of course biggrin. Keep us posted on how things are going...

that was posted several tries ago, but thanks for the input none the less. Yes, I was selecting the database I created in mysql called 'grimoire' but to no avail. The last few tries the database was full of tables from what I recall.

I retried several times with the install patch, still nothing.

I have decided to go poke around and look at some other cms's, tho I probably will end back with xoops.

thanks again for your reply.


posts: 11

> Damian:
> Hi Harlequin,
>
> As Chealer says check your memory limit. Also create a phpinfo.php file containing the phpinfo function and browse to it, just to make sure that the PHP is running good. Also this can occur if you have some kind of php cache installed.
>
> What version of Tiki are you installing?
>
> Damian

Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.

I have upped the memory limit to 16M from 8M as well

I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.

as for php cache, unless its on or installed by default I have none.

any help appreciated.

posts: 2881 United Kingdom

> Harlequin:
> Thanks for the reply. I have just d/l your latest ver 1.7.5 and I still get a blank page.
>
> I have upped the memory limit to 16M from 8M as well
>
> I have recently had a few other cms installed and know my apache, php, mysql install is good. Tho I have removed them at this point.
>
> as for php cache, unless its on or installed by default I have none.
>
> any help appreciated.
>

Ah! I did read I think in another forum post or on the InstallTikiTroubleshootingDoc about a temp folder or a tmp folder. Ive only installed once on a windows system wink

Just out of interest try creating a tmp on the root of C:

I'll try and track down someone who has more Windows experience.......